/* ==========================================================================
   THAI TO WALK — Menu page styles v2 (loaded after style.css)
   Typographic "fine-dining sheet × hawker docket" menu. No photo-card grid.
   ========================================================================== */

/* ---------- Menu hero ---------- */
.menu-hero {
  background: var(--charcoal);
  color: var(--bone);
  padding: clamp(150px, 22vh, 220px) 0 clamp(56px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 50% 0%, rgba(245, 130, 32, .12), transparent 62%);
}
.menu-hero .menu-thai {
  position: absolute; top: clamp(60px, 10vh, 110px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--thai);
  font-size: clamp(5rem, 20vw, 15rem); line-height: 1;
  color: rgba(246, 240, 230, .045);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.menu-hero .wrap { position: relative; }
.menu-hero .eyebrow { justify-content: center; }
.menu-hero h1 {
  font-size: var(--step-display);
  margin-top: 20px;
}
.menu-hero h1 em { color: var(--orange); font-weight: 500; }
.menu-hero p {
  color: var(--cream-muted); margin-top: 18px;
  font-size: var(--step-0); max-width: 46ch; margin-inline: auto;
}

/* Heat legend — docket style */
.heat-legend {
  display: inline-flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center;
  margin-top: 34px; padding: 14px 26px;
  border: 1px dashed rgba(246, 240, 230, .25); border-radius: 999px;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .08em;
  color: var(--cream-muted);
}
.heat-legend span { display: inline-flex; align-items: center; gap: 7px; }
.heat-legend svg { width: 13px; height: 13px; color: var(--ember); }
.tag-pill {
  display: inline-block; font-family: var(--mono); font-weight: 700;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(245, 130, 32, .16); color: var(--orange);
}

/* ---------- Menu body — bone typographic sheet ---------- */
.menu-body {
  background: var(--bone); color: var(--ink);
  padding: clamp(56px, 8vw, 100px) 0 var(--sec-pad);
}
.menu-sheet { max-width: 880px; margin-inline: auto; }

/* Builder docket — order-ticket card */
.builder-note {
  border: 1px dashed rgba(28, 25, 22, .35);
  border-radius: var(--radius);
  background: var(--bone-2);
  padding: clamp(26px, 4vw, 44px);
  margin-bottom: clamp(48px, 8vh, 80px);
}
.builder-note > .eyebrow { color: var(--ember); }
.builder-note h2 { font-size: var(--step-2); margin-top: 12px; }
.bn-steps { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bn-step { display: flex; gap: 14px; align-items: flex-start; }
.bn-step .bn-num {
  font-family: var(--thai); font-size: 1.9rem; line-height: 1.1;
  color: var(--orange); flex: none;
}
.bn-step b { font-weight: 600; display: block; font-size: .95rem; }
.bn-step span { font-size: .82rem; color: var(--ink-muted); line-height: 1.5; display: block; margin-top: 2px; }

/* Category */
.menu-cat { margin-bottom: clamp(52px, 8vh, 88px); }
.menu-cat:last-of-type { margin-bottom: 0; }
.menu-cat-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  margin-bottom: clamp(10px, 2vh, 18px);
}
.menu-cat-head h2 { font-size: var(--step-2); font-weight: 560; }
.menu-cat-head .cat-num {
  font-family: var(--thai); font-size: var(--step-2); line-height: 1;
  color: rgba(245, 130, 32, .35);
}

/* Dish rows — typographic, hairline-ruled */
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 28px;
  padding: clamp(18px, 3vh, 26px) 0;
  border-top: 1px solid var(--hairline-on-light);
  transition: padding-left var(--d-fast) var(--ease-out);
}
.dish:last-child { border-bottom: 1px solid var(--hairline-on-light); }
.dish:hover { padding-left: 12px; }
.dish .top { display: flex; align-items: center; gap: 12px; }
.dish h3 { font-size: var(--step-1); font-weight: 560; }
.dish .price {
  font-family: var(--mono); font-size: .95rem; color: var(--ember);
  align-self: center; white-space: nowrap;
}
.dish p {
  grid-column: 1; grid-row: 2;
  color: var(--ink-muted); font-size: .93rem; max-width: 52ch;
  font-style: italic;
}
.dish-heat { display: inline-flex; gap: 3px; flex: none; }
.dish-heat svg { width: 14px; height: 14px; color: var(--ember); }
.dish .dish-tags { grid-column: 1; grid-row: 3; display: flex; gap: 6px; margin-top: 8px; }
.menu-body .tag-pill { background: rgba(194, 65, 12, .1); color: var(--ember); }

/* Featured dish (Pad Thai) — the one editorial photo moment */
.dish-featured {
  display: grid; grid-template-columns: minmax(180px, 260px) 1fr auto;
  gap: 6px clamp(20px, 3vw, 36px);
  align-items: center;
  padding: clamp(20px, 3vh, 30px) 0;
  border-top: 1px solid var(--hairline-on-light);
}
.dish-featured:hover { padding-left: 0; }
.dish-featured .photo {
  grid-row: 1 / span 3; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1 / 1;
}
.dish-featured .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--d-slow) var(--ease-out); }
.dish-featured:hover .photo img { transform: scale(1.05); }
.dish-featured .top { grid-column: 2; }
.dish-featured .price { grid-column: 3; grid-row: 1; }
.dish-featured p { grid-column: 2 / span 2; grid-row: 2; }
.dish-featured .dish-tags { grid-column: 2; grid-row: 3; }

/* Footer CTA of menu sheet */
.menu-foot {
  margin-top: clamp(48px, 8vh, 80px);
  text-align: center;
}
.menu-foot .note {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .08em;
  color: var(--ink-muted); margin-bottom: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .bn-steps { grid-template-columns: 1fr; gap: 16px; }
  .dish-featured { grid-template-columns: 1fr auto; }
  .dish-featured .photo { grid-row: 1; grid-column: 1 / -1; max-width: 320px; }
  .dish-featured .top { grid-column: 1; }
  .dish-featured .price { grid-column: 2; grid-row: 2; }
  .dish-featured p { grid-column: 1 / span 2; grid-row: 3; }
  .dish-featured .dish-tags { grid-column: 1; grid-row: 4; }
  .dish-featured .top, .dish-featured .price { grid-row: 2; }
}
