/* =====================================================================
   Curry's & Co — girih glazed-tile world
   Ground: deep glazed night (ink teal-black). Palette: Kashan lustreware
   (turquoise glaze + copper-lustre gold) with a pomegranate-red accent.
   Type: Cinzel (inscriptional caps display) + Hanken Grotesk (body/UI).
   Shape rule: tiles/panels 14px · buttons & pills full-round · inputs 10px.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Grounds */
  --ground:        #0d1b1e;
  --ground-raised: #122b30;
  --ground-deep:   #091315;
  --panel:         #143035;

  /* Glaze + lustre */
  --teal:          #2ea19a;
  --teal-deep:     #1c6f6a;
  --teal-bright:   #46c6bd;
  --gold:          #d7a94e;
  --gold-bright:   #eec97b;
  --gold-deep:     #a97e33;
  --pom:           #c23a34;
  --pom-bright:    #e2534a;

  /* Ink on dark */
  --cream:         #f3ebdd;
  --cream-2:       #e6dbc7;
  --muted:         #a1b6b1;   /* teal-tinted secondary text, >4.5:1 on ground */
  --muted-dim:     #829894;   /* decorative / large only */

  /* Lines + shadow */
  --line:          rgba(215,169,78,.24);
  --line-soft:     rgba(243,235,221,.12);
  --shadow-1:      0 10px 30px -12px rgba(4,12,13,.7);
  --shadow-2:      0 24px 60px -20px rgba(4,12,13,.8);

  /* Girih line texture (copper-lustre stars on transparent) */
  --girih: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23d7a94e' stroke-width='1' opacity='.5'%3E%3Cpath d='M60 8 L72 30 L96 30 L84 54 L108 60 L84 66 L96 90 L72 90 L60 112 L48 90 L24 90 L36 66 L12 60 L36 54 L24 30 L48 30 Z'/%3E%3Cpath d='M60 30 L72 60 L60 90 L48 60 Z'/%3E%3Cpath d='M0 60 L12 60 M108 60 L120 60 M60 0 L60 8 M60 112 L60 120'/%3E%3C/g%3E%3C/svg%3E");

  /* Metrics */
  --container: 1180px;
  --section-pad: clamp(64px, 9vw, 132px);
  --radius: 14px;
  --radius-sm: 10px;

  --font-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(46,161,154,.10), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(194,58,52,.07), transparent 55%),
    var(--ground);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.35rem, 1.5rem + 3.4vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 1rem + 0.9vw, 1.55rem); font-weight: 500; letter-spacing: 0; }
p { max-width: 68ch; }
a { color: inherit; }

/* ---------- Layout helpers ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--ground-deep);
  padding: 10px 16px; border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

section { padding-block: var(--section-pad); }
.hero__inner, .route, .menu-preview, .takeaway__inner, .story, .visit, .contact__inner, .footer__inner, .route__head, .menu-preview__head, .visit__head {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .85em 1.5em; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #221a08; box-shadow: 0 8px 22px -12px rgba(215,169,78,.8); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--disabled { background: rgba(243,235,221,.06); color: var(--muted-dim); border-color: var(--line-soft); cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--teal-bright); outline-offset: 3px; }

.link-underline {
  display: inline-block; color: var(--gold-bright); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}
.link-underline:hover { border-color: var(--gold); }
.link-underline:focus-visible { outline: 2px solid var(--teal-bright); outline-offset: 3px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.15rem;
}
.nav[data-scrolled] {
  background: rgba(9,17,19,.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-1);
}
.nav[data-scrolled] .nav__inner { padding-block: .7rem; }

.wordmark { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--cream); }
.wordmark__mark { color: var(--gold); display: inline-flex; }
.wordmark__text { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: .02em; }

.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.7rem); }
.nav__menu > a { text-decoration: none; color: var(--cream-2); font-weight: 500; font-size: .98rem; transition: color .2s ease; }
.nav__menu > a:not(.btn):hover { color: var(--gold-bright); }
.nav__menu a:focus-visible { outline: 2px solid var(--teal-bright); outline-offset: 4px; border-radius: 4px; }

.nav__order { display: inline-flex; align-items: center; gap: .45rem; }
.soon {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ground-deep); background: var(--teal-bright);
  padding: .16em .5em; border-radius: 999px;
}
.nav__cta { padding-block: .6em; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav__toggle span + span { margin-top: 5px; }

/* ---------- Tiles (glazed placeholder frames) ---------- */
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(70,198,189,.20), transparent 55%),
    linear-gradient(160deg, var(--ground-raised), var(--ground-deep));
  border: 1px solid var(--line);
  isolation: isolate;
}
.tile::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--girih); background-size: 120px 120px;
  opacity: .28; mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 40%, transparent 92%);
          mask-image: radial-gradient(120% 100% at 50% 40%, #000 40%, transparent 92%);
}
.tile__label, .tile__flag { position: absolute; z-index: 2; }
.tile__label {
  left: 18px; bottom: 16px; right: 18px;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--cream);
  text-shadow: 0 2px 12px rgba(4,12,13,.7);
}
.tile__flag {
  top: 14px; right: 14px;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(9,17,19,.6);
  border: 1px solid var(--line); padding: .28em .6em; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(104px, 13vh, 138px); padding-bottom: clamp(56px, 8vh, 96px); overflow: hidden; }
.hero__weave {
  position: absolute; inset: -10% -10% auto -10%; height: 130%;
  background-image: var(--girih); background-size: 150px 150px;
  color: var(--gold); opacity: .16;
  -webkit-mask-image: radial-gradient(80% 70% at 70% 30%, #000, transparent 75%);
          mask-image: radial-gradient(80% 70% at 70% 30%, #000, transparent 75%);
  animation: weave-in 1.4s ease-out both;
  will-change: transform, opacity;
}
@keyframes weave-in { from { opacity: 0; transform: scale(1.08) rotate(-1.5deg); } to { opacity: .16; transform: none; } }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__copy { max-width: 40rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero__sub { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: var(--cream-2); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__note { margin-top: 1.6rem; font-size: .92rem; color: var(--muted); }

.hero__plate { position: relative; }
.tile--hero { aspect-ratio: 4 / 5; box-shadow: var(--shadow-2); }
.tile--hero .tile__label { font-size: 1.25rem; }
.hero__plate-accent {
  position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; z-index: -1;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, rgba(215,169,78,.10) 0 2px, transparent 2px 12px);
}

@media (prefers-reduced-motion: reduce) { .hero__weave { animation: none; } }

/* ---------- Spice route ---------- */
.route { position: relative; }
.route__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.route__head h2 { margin-bottom: 1rem; }
.route__head p { color: var(--muted); max-width: 60ch; }

.route__line { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); position: relative; }
.route__line::before {
  content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep) 12%, var(--gold) 50%, var(--gold-deep) 88%, transparent);
  opacity: .6;
}
.route__stop { position: relative; padding-top: 2.4rem; }
.route__dot { position: absolute; top: 0; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--ground); border: 2px solid var(--gold); box-shadow: 0 0 0 4px rgba(215,169,78,.14); }
.route__stop h3 { color: var(--gold-bright); margin-bottom: .5rem; }
.route__stop p { color: var(--muted); font-size: .96rem; }

/* ---------- Menu preview mosaic ---------- */
.menu-preview { position: relative; }
.menu-preview__head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.menu-preview__head h2 { margin-bottom: .9rem; }
.menu-preview__head p { color: var(--muted); }

.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.tile--dish { min-height: 260px; display: flex; align-items: flex-end; }
.tile--dish.tile--wide { grid-column: span 2; min-height: 220px; }
.tile__body { position: relative; z-index: 2; padding: clamp(1.3rem, 2.5vw, 2rem); }
.tile__origin {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-bright); margin-bottom: .7rem;
}
.tile--dish h3 { color: var(--cream); margin-bottom: .55rem; }
.tile--dish p { color: var(--cream-2); font-size: .96rem; max-width: 44ch; }
.tile__price { display: inline-block; margin-top: .9rem; font-weight: 600; color: var(--gold-bright); }
.tile__price em { font-style: normal; font-size: .8rem; color: var(--muted); font-weight: 500; }

.menu-preview__cta { margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.8rem; }
.menu-preview__aside { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Takeaway ---------- */
.takeaway { background: linear-gradient(180deg, transparent, rgba(9,17,19,.55) 30%, rgba(9,17,19,.55) 70%, transparent); }
.takeaway__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.takeaway__copy h2 { margin-bottom: 1rem; }
.takeaway__copy > p { color: var(--muted); margin-bottom: 1.6rem; }
.takeaway__how { list-style: none; display: grid; gap: .9rem; margin-bottom: 2rem; }
.takeaway__how li { display: flex; align-items: center; gap: .9rem; color: var(--cream-2); }
.tk-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: inline-grid; place-items: center; font-weight: 700; font-size: .9rem;
  color: var(--gold-bright); border: 1px solid var(--line); background: rgba(215,169,78,.08);
}

.online-soon {
  position: relative; padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ground-raised), var(--ground-deep));
  box-shadow: var(--shadow-1);
}
.online-soon__badge {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ground-deep); background: var(--teal-bright); padding: .3em .7em; border-radius: 999px; margin-bottom: 1rem;
}
.online-soon h3 { margin-bottom: .6rem; }
.online-soon > p { color: var(--muted); font-size: .96rem; margin-bottom: 1.3rem; }
.online-soon .btn { width: 100%; }
.online-soon__hint { font-size: .84rem; color: var(--muted-dim); margin-top: 1rem; }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.8rem, 4vw, 4rem); align-items: center; }
.tile--tall { aspect-ratio: 3 / 4; }
.story__copy h2 { margin-bottom: 1.2rem; }
.story__copy p { color: var(--muted); margin-bottom: 1.1rem; }
.story__copy .link-underline { margin-top: .6rem; }

/* ---------- Visit ---------- */
.visit__head { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.visit__head h2 { margin-bottom: .8rem; }
.visit__head p { color: var(--muted); }
.visit__grid { width: min(100% - 2rem, var(--container)); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); }
.visit__facts dl { display: grid; gap: 1.4rem; }
.fact { border-top: 1px solid var(--line-soft); padding-top: 1.1rem; }
.fact dt { font-family: var(--font-display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: .5rem; }
.fact dd { color: var(--cream-2); }
.fact dd a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--line); }
.fact__todo { display: inline-block; margin-left: .5rem; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--pom-bright); vertical-align: middle; }
.visit__map {
  min-height: 320px; border-radius: var(--radius); border: 1px dashed var(--line);
  background:
    var(--girih) 0 0 / 120px 120px,
    linear-gradient(160deg, var(--ground-raised), var(--ground-deep));
  display: grid; place-items: center; text-align: center; color: var(--muted); padding: 1.5rem;
}
.visit__map-inner { display: grid; justify-items: center; gap: .8rem; }
.visit__map-pin { color: var(--gold); }
.visit__map-label { font-size: .9rem; max-width: 22ch; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, transparent, rgba(9,17,19,.5)); }
.contact__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: start; }
.contact__intro { position: sticky; top: 110px; }
.contact__intro h2 { margin-bottom: 1rem; }
.contact__intro p { color: var(--muted); }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--cream-2); }
.field__opt { font-weight: 400; color: var(--muted-dim); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--cream);
  background: rgba(9,17,19,.55); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: .8em .9em; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(215,169,78,.18); }
.field textarea { resize: vertical; min-height: 110px; }
.field__error { color: var(--pom-bright); font-size: .85rem; }
.field[data-invalid] input, .field[data-invalid] textarea { border-color: var(--pom); }
.contact__form .btn { grid-column: 1 / -1; justify-self: start; }
.contact__success {
  grid-column: 1 / -1; color: var(--teal-bright); font-weight: 600;
  background: rgba(46,161,154,.1); border: 1px solid rgba(70,198,189,.35);
  border-radius: var(--radius-sm); padding: .9em 1.1em; margin: 0;
}

/* ---------- Footer ---------- */
.footer { background: var(--ground-deep); border-top: 1px solid var(--line); margin-top: clamp(40px, 6vw, 80px); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(1.6rem, 4vw, 3rem); padding-block: clamp(48px, 7vw, 80px); }
.footer__brand p { color: var(--muted); margin-top: 1rem; font-size: .95rem; max-width: 32ch; }
.wordmark--footer { color: var(--cream); }
.footer__nav h2, .footer__contact h2 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1.1rem; font-weight: 500; }
.footer__nav { display: grid; gap: .6rem; align-content: start; }
.footer__nav a { color: var(--cream-2); text-decoration: none; font-size: .96rem; width: fit-content; }
.footer__nav a:hover { color: var(--gold-bright); }
.footer__contact p { color: var(--muted); font-size: .95rem; margin-bottom: .5rem; }
.footer__contact a { color: var(--cream-2); text-decoration: none; border-bottom: 1px solid var(--line); }
.footer__social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer__social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: var(--cream-2); transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.footer__social a:hover { color: var(--gold-bright); border-color: var(--gold); transform: translateY(-2px); }
.footer__base {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  padding-block: 1.5rem; border-top: 1px solid var(--line-soft);
  font-size: .85rem; color: var(--muted-dim);
}
.footer__base a { color: var(--muted); }
.footer__credit a { border-bottom: 1px solid var(--line); text-decoration: none; }

/* Placeholder marker (dev/QA visibility of unconfirmed content) */
[data-placeholder] { border-bottom: 1px dotted rgba(226,83,74,.4); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__plate { max-width: 520px; width: 100%; }
  .tile--hero { aspect-ratio: 16 / 11; }
  .hero__sub { max-width: 46ch; }
  .route__line { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .route__line::before { display: none; }
  .route__stop { padding-top: 2rem; }
  .takeaway__inner, .story, .visit__grid, .contact__inner { grid-template-columns: 1fr; }
  .story__art { max-width: 420px; }
  .contact__intro { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   Menu page
   ===================================================================== */
.page-menu { padding-top: 0; }
.menu-page { padding-top: clamp(90px, 12vh, 120px); }
.menu-hero { padding-bottom: clamp(30px, 5vw, 50px); }
.menu-hero__inner { width: min(100% - 2rem, var(--container)); margin-inline: auto; max-width: 52rem; }
.menu-hero h1 { margin-bottom: 1.1rem; }
.menu-hero > .menu-hero__inner > p { color: var(--muted); font-size: 1.1rem; }
.menu-draft {
  margin-top: 1.6rem; color: var(--cream-2); font-size: .95rem;
  background: rgba(194,58,52,.10); border: 1px solid rgba(226,83,74,.32);
  border-radius: var(--radius-sm); padding: .9em 1.1em; max-width: none;
}
.menu-draft strong { color: var(--pom-bright); }

.menu-body {
  width: min(100% - 2rem, var(--container)); margin-inline: auto;
  padding-bottom: var(--section-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem) clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.menu-group { padding-block: clamp(28px, 4vw, 40px) 0; }
.menu-group__title {
  font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); color: var(--gold-bright);
  padding-bottom: .8rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.menu-list { list-style: none; display: grid; gap: 1.5rem; }
.menu-list--tight { gap: 1rem; }
.menu-item__row { display: flex; align-items: baseline; gap: .8rem; }
.menu-item__row h3 { color: var(--cream); font-weight: 500; }
.menu-item__row::after {
  content: ""; flex: 1 1 auto; height: 1px; align-self: center;
  background: repeating-linear-gradient(90deg, var(--line) 0 3px, transparent 3px 7px);
  opacity: .7;
}
.menu-item__price { flex: none; font-weight: 600; color: var(--gold); font-variant-numeric: tabular-nums; }
.menu-item > p { color: var(--muted); font-size: .95rem; margin-top: .35rem; max-width: 52ch; }
.tags { display: inline-flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--teal-bright); border: 1px solid rgba(70,198,189,.3);
  padding: .18em .55em; border-radius: 999px;
}

.menu-allergen {
  grid-column: 1 / -1; margin-top: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ground-raised), var(--ground-deep));
}
.menu-allergen h2 { font-size: 1.3rem; color: var(--gold-bright); margin-bottom: .9rem; }
.menu-allergen p { color: var(--muted); max-width: 68ch; }
.menu-allergen .tag { color: var(--teal-bright); }
.menu-allergen__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

@media (max-width: 760px) {
  .menu-body { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: rgba(9,17,19,.97); backdrop-filter: blur(14px);
    padding: 2rem; transform: translateX(105%); transition: transform .32s cubic-bezier(.16,1,.3,1);
    border-left: 1px solid var(--line);
  }
  .nav__menu[data-open] { transform: none; }
  .nav__menu > a { font-size: 1.1rem; }
  .nav__cta { margin-top: .4rem; }
  .nav[data-menu-open] .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav[data-menu-open] .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav[data-menu-open] .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mosaic { grid-template-columns: 1fr; }
  .tile--dish.tile--wide { grid-column: span 1; }
  .contact__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 auto; }
}
