/* ============================================================================
   EMBER & ASH — yakitori & sake bar  ·  sample site by Ahead Kitchen
   "Refined dark minimal": near-black grounds, a single gold accent, huge
   negative space, gallery-forward, quiet and luxurious. ONE token system.
   Hero is type-only (centered-emblem) — no accent-word gimmick. Header is
   nav-minimal (button at all widths → full-screen overlay). Menu is
   menu-leader. Gallery is gallery-curated. Reviews are reviews-pullquote.
   Structural contracts (nav, menu-nav, menu-picker, order, gallery, reviews,
   connect, scroll-reveal, parallax) are copied verbatim from the shared skills
   and only restyled here. Contrast pairs verified with web-ui-kit/contrast.py.
   ========================================================================== */

/* ---------- design tokens (declared ONCE) ------------------------------- */
:root {
  /* grounds & ink */
  --charcoal:  #14110E;   /* page ground (near-black) */
  --void:      #0E0C0A;   /* deepest ground (footer / emblem field) */
  --panel:     #1C1815;   /* raised surface / cards / frames */
  --panel-2:   #221C18;   /* second raised surface */
  --bone:      #ECE4D6;   /* body text            (14.9:1 on charcoal) */
  --paper:     #F4EEE3;   /* headings / brightest (16.3:1) */
  --muted:     #B5A98F;   /* captions, meta       ( 8.1:1 on charcoal) */
  --ink:       var(--bone);

  /* the single accent — gold; ember is decorative glow only, never text/CTA */
  --gold:        #D7A94B; /*  8.66:1 as text on charcoal (AAA) */
  --gold-bright: #E0B85C; /* 10.0:1 — review stars / over photo */
  --gold-hover:  #C2933A;
  --gold-deep:   #8a6a2e; /* faint engraved rules */
  --ember:       #C24A30; /* radial glow ONLY — never text or a CTA fill */

  /* CTA */
  --cta:       var(--gold);
  --cta-ink:   #14110E;   /* charcoal label on gold (8.66:1) */
  --cta-hover: var(--gold-hover);
  --accent:    var(--gold);
  --on-accent: #14110E;
  --star:      var(--gold-bright);

  /* lines (hairlines carry the minimalism) */
  --line:        rgba(236,228,214,.12);
  --line-soft:   rgba(236,228,214,.06);
  --line-strong: rgba(236,228,214,.22);
  --line-gold:   rgba(215,169,75,.40);

  /* type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* fluid type ramp — declared once, referenced everywhere */
  --fs-hero:  clamp(3.4rem, 13vw, 9.5rem);   /* the emblem name, oversized */
  --fs-h2:    clamp(2.1rem, 5vw, 3.6rem);
  --fs-h3:    clamp(1.35rem, 2.6vw, 1.8rem);
  --fs-lede:  clamp(1.06rem, 1.7vw, 1.3rem);
  --fs-body:  1.06rem;
  --fs-label: .72rem;

  /* spacing rhythm — generous; negative space is the design */
  --section-y: clamp(5rem, 12vw, 11rem);
  --gap:       clamp(1rem, 3vw, 1.6rem);
  --gutter:    1.5rem;

  /* structure */
  --header-h:  74px;
  --wrap:      1180px;
  --measure:   720px;     /* reading measure for centered prose */
  --radius:    2px;       /* near-square — spare luxury restraint */
  --shadow:    0 40px 90px -44px rgba(0,0,0,.9);
  --ph-ease:   .55s cubic-bezier(.22,.61,.36,1);

  /* menu price measure (shared by menu head + rows so columns align) */
  --menu-measure: 820px;
  --price-col:    4.4rem;
}

/* ---------- reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--bone);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;            /* belt-and-braces against a stray wide child */
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  color: var(--paper);
  letter-spacing: .004em;
}

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }
.wrap--narrow { width: min(var(--measure), 100% - 3rem); margin-inline: auto; }

/* letterspaced small-caps label — the quiet "kicker" */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}
.eyebrow--center { display: block; text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--cta-ink); padding: .6rem 1rem;
  font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  min-height: 48px; line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary { background: var(--cta); color: var(--cta-ink); border-color: var(--cta); }
.btn--primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 1.1rem 2.3rem; }
.btn .icon { width: 1.1em; height: 1.1em; }

.icon { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }

/* a reusable hairline-with-diamond divider — the minimalist motif */
.flourish { display: flex; align-items: center; justify-content: center; gap: .9rem; margin: 0 auto; }
.flourish::before, .flourish::after { content: ""; height: 1px; width: clamp(34px, 9vw, 80px); background: linear-gradient(90deg, transparent, var(--line-gold)); }
.flourish::after { background: linear-gradient(270deg, transparent, var(--line-gold)); }
.flourish__dot { width: 5px; height: 5px; transform: rotate(45deg); background: var(--gold); flex: 0 0 auto; }

/* =====================  HEADER / NAV (site-nav: nav-minimal)  ============= */
/* NB: NO backdrop-filter here. A filter/blur on the header makes it the
   containing block for the position:fixed nav-minimal overlay, which then sizes
   to the header instead of the viewport. A solid-ish translucent fill reads the
   same on this near-black page without that trap. */
.site-header { position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--charcoal) 94%, transparent);
  border-bottom: 1px solid var(--line-soft); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h); }

/* anchor offset so #jumps clear the sticky header */
:where(section[id], [id].menu-section) { scroll-margin-top: calc(var(--header-h) + 14px); }

.wordmark { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--paper);
  min-height: 44px; }
.wordmark__mark {
  font-family: var(--display); font-weight: 600; font-size: 1.45rem; letter-spacing: .02em;
  color: var(--gold); transform: translateY(.05em);
}
.wordmark__name {
  font-family: var(--display); font-size: 1.32rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500; color: var(--paper);
}
.wordmark__amp { color: var(--gold); font-style: italic; padding: 0 .06em; }

/* nav links (shared resting style; nav-minimal hides them in the bar) */
.nav a { color: var(--bone); text-decoration: none; }
.nav a:not(.btn) {
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  transition: color .18s ease; position: relative;
}
.nav a:not(.btn):hover { color: var(--paper); }
.nav a.btn--primary { color: var(--cta-ink); }

.nav-toggle {
  appearance: none; background: none; border: 0; padding: 0;
  cursor: pointer; color: var(--bone); line-height: 0;
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
}
.nav-toggle__label { color: var(--muted); transition: color .18s ease; }
.nav-toggle:hover .nav-toggle__label { color: var(--paper); }
.nav-toggle .icon { width: 1.5rem; height: 1.5rem; }
.nav-toggle__close { display: none; }
.nav-close { display: none; }
.site-header[data-open] .nav-toggle__open  { display: none; }
.site-header[data-open] .nav-toggle__close { display: inline-block; }

/* suppress stray focus ring/tap-highlight on touch (controller focuses panel) */
[data-nav-panel]:focus { outline: none; }
.nav a, .nav-toggle, .nav .btn { -webkit-tap-highlight-color: transparent; }
.nav a:focus:not(:focus-visible),
.nav .btn:focus:not(:focus-visible),
.nav-toggle:focus:not(:focus-visible) { outline: none; }

html.nav-locked, html.nav-locked body { overflow: hidden; }

/* --- nav-minimal: corner logo + menu button at ALL widths → overlay ------ */
.site-header[data-nav-layout="minimal"] .header__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.site-header[data-nav-layout="minimal"].nav-enhanced .nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 .2rem;
}
/* resting links never show in the bar — they live only in the overlay.
   (Overrides the §4 desktop `.nav{display:flex}` rule via this self-contained block.)
   NB: the header carries backdrop-filter, which makes it the containing block for
   a position:fixed child — so `inset:0` would size to the header, not the
   viewport. Pin to the viewport with explicit 100vw/100dvh + top/left:0 (the
   battle-tested curtain pattern). */
.site-header[data-nav-layout="minimal"].nav-enhanced .nav {
  position: fixed; top: 0; left: 0; z-index: 60;
  width: 100vw; height: 100vh; height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  padding: 5rem 2rem 3rem;
  background: color-mix(in srgb, var(--void) 99%, #000);
  transform: translateY(-100%); visibility: hidden;
  transition: transform .42s cubic-bezier(.4,0,.2,1), visibility 0s linear .42s;
  overscroll-behavior: contain; overflow-y: auto;
}
/* a faint gold engraved emblem behind the overlay links — keeps it luxurious */
.site-header[data-nav-layout="minimal"] .nav::before {
  content: "炭"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-size: clamp(16rem, 50vw, 34rem); color: rgba(215,169,75,.05);
  pointer-events: none; z-index: 0; line-height: 1;
}
.site-header[data-nav-layout="minimal"][data-open] .nav {
  transform: translateY(0); visibility: visible;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.site-header[data-nav-layout="minimal"] .nav a:not(.btn) {
  position: relative; z-index: 1;
  font-family: var(--display); text-transform: none; letter-spacing: .02em;
  font-size: clamp(2rem, 7vw, 2.9rem); color: var(--paper); padding: .25rem 0;
  justify-content: center; min-height: 56px; display: flex; align-items: center;
}
.site-header[data-nav-layout="minimal"] .nav a:not(.btn):hover { color: var(--gold); }
.site-header[data-nav-layout="minimal"] .nav .btn { position: relative; z-index: 1; margin-top: 1.6rem; }
/* one X, inside the panel, pinned top-right; hide the floating toggle while open */
.site-header[data-nav-layout="minimal"][data-open] .nav-toggle { display: none; }
.site-header[data-nav-layout="minimal"] .nav-close {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 48px; height: 48px;
  align-items: center; justify-content: center; z-index: 2;
  appearance: none; background: none; border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0; cursor: pointer; color: var(--bone); line-height: 0;
}
.site-header[data-nav-layout="minimal"][data-open] .nav-close { display: inline-flex; }
.site-header[data-nav-layout="minimal"] .nav-close:hover { border-color: var(--gold); color: var(--gold); }
.site-header[data-nav-layout="minimal"] .nav-close .icon { width: 1.6rem; height: 1.6rem; }
/* a small label line above the overlay links */
.nav__rule { position: relative; z-index: 1; margin-bottom: 1.4rem; }
@media (prefers-reduced-motion: reduce) {
  .site-header[data-nav-layout="minimal"] .nav { transition: none; }
}

/* =========================  SECTIONS  ==================================== */
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section__head { max-width: 64ch; margin: 0 0 clamp(2.4rem,5vw,3.6rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: var(--fs-h2); margin: 0 0 1rem; }
.section__head p { color: var(--muted); margin: 0; font-size: var(--fs-lede); max-width: 56ch; }
.section__head--center p { margin-inline: auto; }
/* numbered section index (used in place of an OUR-COUNTER eyebrow) */
.section__index { font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .8rem; margin: 0 0 1.4rem; }
.section__index::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.section__head--center .section__index { justify-content: center; }
.section__head--center .flourish { margin: 1.6rem auto 0; }

/* =========================  HERO (centered-emblem — TYPE ONLY)  ========== */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(640px, 96vh, 1000px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--void);
}
/* a barely-there ember glow + vignette on the flat field — atmosphere, no photo */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(80% 55% at 50% 38%, rgba(194,74,48,.14), transparent 62%),
    radial-gradient(120% 90% at 50% 120%, rgba(0,0,0,.6), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; width: min(var(--wrap), 100% - 3rem);
  padding: clamp(3rem, 8vw, 6rem) 0; display: flex; flex-direction: column; align-items: center; }
.hero__emblem {
  font-family: var(--display); font-weight: 600; font-size: clamp(3.4rem, 12vw, 6.4rem);
  color: var(--gold); line-height: 1; letter-spacing: .04em; margin: 0 0 1.6rem;
  text-shadow: 0 0 60px rgba(215,169,75,.22);
}
.hero__eyebrow { color: var(--gold); letter-spacing: .42em; margin: 0 0 1.6rem; }
.hero h1 {
  font-family: var(--display); font-weight: 500; font-size: var(--fs-hero);
  color: var(--paper); margin: 0; line-height: .96;
  letter-spacing: .01em;
}
.hero h1 .amp { color: var(--gold); font-style: italic; font-weight: 400; padding: 0 .04em; }
.hero__sub { font-family: var(--display); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--bone); margin: 1.4rem 0 0; max-width: 26ch; line-height: 1.35; }
.hero__meta { margin: 2.2rem 0 0; font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1.3rem; }
.hero__meta li { list-style: none; display: inline-flex; align-items: center; gap: 1.3rem; }
.hero__meta li::before { content: ""; width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold); }
.hero__meta li:first-child::before { display: none; }
.hero__actions { margin: 2.8rem 0 0; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.hero__flourish { margin-top: 2.4rem; }
/* a quiet scroll cue at the foot of the type-only hero */
.hero__cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero__cue svg { width: 1rem; height: 1rem; color: var(--gold); animation: cue-bob 2.4s ease-in-out infinite; }
@keyframes cue-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .hero__cue svg { animation: none; } }

/* =========================  PHILOSOPHY (centered editorial prose)  ====== */
.creed { text-align: center; }
.creed__lead { font-family: var(--display); font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.34; color: var(--paper);
  margin: 0 auto; max-width: 22ch; letter-spacing: .005em; }
.creed__lead .gold { color: var(--gold); font-style: italic; }
.creed__body { margin: clamp(2rem,5vw,3rem) auto 0; max-width: 60ch; }
.creed__body p { color: var(--bone); margin: 0 0 1.3rem; }
.creed__body p:last-child { margin-bottom: 0; }
.creed__sign { margin: clamp(2rem,5vw,3rem) 0 0; font-family: var(--display); font-style: italic;
  font-size: 1.35rem; color: var(--gold); }

/* =========================  SIGNATURE INDEX (numbered list, no cards)  === */
.sig { max-width: var(--menu-measure); margin-inline: auto; border-top: 1px solid var(--line); }
.sig__row { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,3vw,2.2rem);
  align-items: baseline; padding: clamp(1.6rem,4vw,2.4rem) 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background .25s ease; position: relative; }
.sig__row::after { content: ""; position: absolute; left: -1.2rem; right: -1.2rem; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(215,169,75,.05), transparent 70%); opacity: 0;
  transition: opacity .25s ease; pointer-events: none; }
.sig__row:hover::after { opacity: 1; }
.sig__num { font-family: var(--display); font-size: clamp(1.4rem,3vw,2.1rem); color: var(--gold-deep);
  font-weight: 500; line-height: 1; font-variant-numeric: tabular-nums; transition: color .25s ease; }
.sig__row:hover .sig__num { color: var(--gold); }
.sig__main { min-width: 0; }
.sig__kicker { display: block; font-family: var(--sans); font-size: .62rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin: 0 0 .5rem; }
.sig__name { font-family: var(--display); font-size: clamp(1.5rem,3.4vw,2.1rem); color: var(--paper);
  margin: 0 0 .5rem; line-height: 1.1; display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.sig__jp { font-family: var(--sans); font-size: .64rem; letter-spacing: .14em; color: var(--muted);
  text-transform: uppercase; font-weight: 500; }
.sig__desc { margin: 0; font-size: .96rem; color: var(--muted); max-width: 52ch; line-height: 1.6; }
.sig__arrow { align-self: center; color: var(--muted); flex: 0 0 auto; transition: transform .25s ease, color .25s ease; }
.sig__row:hover .sig__arrow { color: var(--gold); transform: translateX(4px); }
.sig__arrow svg { width: 1.2rem; height: 1.2rem; }

/* =========================  FULL-BLEED BAND (the room, parallax)  ======== */
.band {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  min-height: clamp(60vh, 78vh, 760px); overflow: hidden;
  display: grid; align-items: center; isolation: isolate;
}
.parallax-wrap { position: absolute; inset: 0; overflow: hidden; }
.band__img { position: absolute; inset: 0; width: 100%; height: 124%; top: -12%;
  object-fit: cover; object-position: center; z-index: 0; filter: saturate(.96) brightness(.82); }
.band__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(8,6,5,.86) 0%, rgba(8,6,5,.5) 45%, rgba(8,6,5,.7) 100%); }
.band__inner { position: relative; z-index: 2; width: min(var(--wrap), 100% - 3rem); margin-inline: auto;
  text-align: center; padding: clamp(3rem,8vw,5rem) 0; }
.band__eyebrow { color: var(--gold-bright); }
.band h2 { font-size: clamp(2.2rem,6vw,3.8rem); color: var(--paper); margin: 0 0 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.6); }
.band p { color: var(--bone); margin: 0 auto; max-width: 44ch; font-size: var(--fs-lede);
  text-shadow: 0 1px 14px rgba(0,0,0,.7); }
.band__flourish { margin-top: 1.8rem; }

/* =========================  GALLERY (gallery-curated, framed)  =========== */
.gx { padding: var(--section-y) 0; }
.gx .wrap { }
.curated { display: grid; gap: var(--cgap, .8rem); margin-top: clamp(2rem,5vw,3rem);
  grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr;
  grid-template-areas: "a a b d" "a a c c"; }
.curated__cell { margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--panel); box-shadow: var(--shadow); position: relative;
  border: 1px solid var(--line-soft); }
.curated__cell--a { grid-area: a; } .curated__cell--b { grid-area: b; }
.curated__cell--c { grid-area: c; } .curated__cell--d { grid-area: d; }
.curated__cell--e { display: none; }   /* shown only in the mobile layout below */
.curated .ph-btn { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.curated .ph-btn img { width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.97) brightness(.9); transition: transform var(--ph-ease), filter var(--ph-ease); }
.curated .ph-btn:hover img { transform: scale(1.045); filter: saturate(1.04) brightness(1); }
/* a hairline gold frame appears on hover — the "matted" editorial feel */
.curated__cell::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent;
  transition: border-color var(--ph-ease); pointer-events: none; }
.curated__cell:hover::after { border-color: var(--line-gold); }
/* phone: a clean 2-column areas grid; feature on top, then pairs. NEVER one col. */
@media (max-width: 700px) {
  .curated { grid-template-columns: 1fr 1fr;
    grid-template-areas: "a a" "b c" "d e"; }
  .curated__cell--e { display: block; grid-area: e; }
}

/* base marquee + lightbox CSS (photo-gallery §4) — only the lightbox is used here,
   but keep the marquee rules so gallery.js's contract is fully satisfied. */
.marquee { position: relative; overflow: hidden; }
.marquee__track { display: flex; gap: var(--gap); margin: 0; padding: 0; list-style: none; width: max-content; }
.marquee--animated .marquee__track { animation: ph-marquee var(--marquee-speed, 75s) linear infinite; }
.marquee--animated:hover .marquee__track, .marquee--animated:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; }
.ph-btn { -webkit-tap-highlight-color: transparent; }
@keyframes ph-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee--animated .marquee__track { animation: none; } }

html.ph-lock, html.ph-lock body { overflow: hidden; }
.ph-lightbox[aria-hidden="true"] { display: none; }
.ph-lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.ph-lightbox__backdrop { position: absolute; inset: 0; background: rgba(6,5,4,.95); }
.ph-lightbox__dialog { position: relative; display: flex; align-items: center; justify-content: center; gap: .5rem; max-width: min(94vw, 1100px); }
.ph-lightbox__figure { margin: 0; }
.ph-lightbox__prev, .ph-lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.ph-lightbox__prev { left: .5rem; }
.ph-lightbox__next { right: .5rem; }
.ph-lightbox__img { max-width: 84vw; max-height: 80vh; width: auto; height: auto; border-radius: var(--radius); display: block; }
.ph-lightbox__cap { color: var(--bone); font-family: var(--sans); font-size: .86rem; text-align: center; margin-top: .8rem; opacity: .92; letter-spacing: .03em; }
.ph-lightbox__btn { background: rgba(236,228,214,.1); color: var(--paper); border: 0; cursor: pointer; width: 48px; height: 48px;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.ph-lightbox__btn:hover { background: rgba(215,169,75,.3); }
.ph-lightbox__btn svg { width: 1.4rem; height: 1.4rem; }
.ph-lightbox__close { position: absolute; top: -3.4rem; right: 0; }
@media (max-width: 600px) { .ph-lightbox__close { top: -2.9rem; } .ph-lightbox__img { max-width: 92vw; } }

/* =========================  ORDER / RESERVE (ordering-options sheet)  === */
:root { --order-radius: 4px; }
html.order-locked { overflow: hidden; }
.order-sheet { position: fixed; inset: 0; z-index: 80; display: flex; align-items: flex-end; justify-content: center; visibility: hidden; }
.order-sheet[data-open] { visibility: visible; }
.order-sheet__scrim { position: absolute; inset: 0; background: rgba(6,5,4,.7); opacity: 0; transition: opacity .22s ease; }
.order-sheet[data-open] .order-sheet__scrim { opacity: 1; }
.order-sheet__panel { position: relative; width: min(34rem, 100%); max-height: 86vh; display: flex; flex-direction: column; overflow: hidden;
  background: var(--panel); color: var(--bone); border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--order-radius) var(--order-radius) 0 0;
  transform: translateY(100%); transition: transform .24s cubic-bezier(.4,0,.2,1); }
.order-sheet[data-open] .order-sheet__panel { transform: translateY(0); }
@media (min-width: 640px) {
  .order-sheet { align-items: center; }
  .order-sheet__panel { border-radius: var(--order-radius);
    transform: translateY(12px) scale(.98); transition: transform .2s ease, opacity .2s ease; opacity: 0; }
  .order-sheet[data-open] .order-sheet__panel { transform: none; opacity: 1; }
}
.order-sheet__head { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(1.2rem,4vw,1.7rem) clamp(1.2rem,4vw,1.7rem) .8rem; }
.order-sheet__title { font-family: var(--display); font-size: 1.6rem; margin: 0; color: var(--paper); }
.order-sheet__close { width: 44px; height: 44px; border: 0; border-radius: 999px; background: transparent; color: var(--bone);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.order-sheet__close:hover { background: var(--line-soft); }
.order-toggle { flex: 0 0 auto; display: flex; gap: .25rem; padding: .25rem; margin: 0 clamp(1.2rem,4vw,1.7rem) .9rem;
  background: var(--charcoal); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.order-toggle__tab { flex: 1; padding: .6rem 1rem; border: 0; border-radius: var(--radius); cursor: pointer; background: transparent;
  color: var(--muted); font: inherit; font-weight: 600; min-height: 44px; letter-spacing: .04em; }
.order-toggle__tab[aria-selected="true"] { background: var(--gold); color: var(--cta-ink); }
.order-list { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; list-style: none; margin: 0;
  padding: .25rem clamp(1.2rem,4vw,1.7rem) calc(1.5rem + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: .55rem; }
.order-row__link { display: flex; align-items: center; gap: .85rem; padding: .85rem .9rem; min-height: 56px;
  border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: inherit; transition: border-color .15s ease, background .15s ease; }
.order-row__link:hover { border-color: var(--gold); background: var(--panel-2); }
.order-row__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--radius); background: var(--charcoal); color: var(--gold);
  border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; }
.order-row__icon svg { width: 1.4rem; height: 1.4rem; }
.order-row__body { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.order-row__name { font-weight: 600; color: var(--paper); }
.order-row__meta { font-size: .84rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .order-sheet__panel, .order-sheet__scrim { transition: none; } }

/* delivery strip (home page "also on…") */
.order-strip { display: flex; align-items: center; gap: clamp(1rem,4vw,2.5rem); flex-wrap: wrap; justify-content: center; }
.order-strip__label { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.order-strip__apps { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.order-chip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.1rem; min-height: 44px;
  border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--bone); font-weight: 500; font-size: .86rem;
  letter-spacing: .02em; transition: border-color .15s ease, color .15s ease; }
.order-chip:hover { border-color: var(--gold); color: var(--gold); }
.order-chip .icon { width: 1.05rem; height: 1.05rem; color: var(--gold); }

/* reserve hub layout */
.reserve { text-align: center; }
.reserve__cta { display: flex; justify-content: center; margin: clamp(2rem,5vw,3rem) 0 clamp(2.4rem,5vw,3.4rem); }

/* =========================  REVIEWS (reviews-pullquote)  ================= */
.reviews-pullquote { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: center;
  grid-template-columns: 1.55fr 1fr; max-width: var(--wrap); margin-inline: auto; }
.rev-pull__hero { margin: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.rev-pull__stars { color: var(--star); display: inline-flex; gap: .18em; font-size: 1.3rem; }
.rev-pull__stars svg { width: 1.05em; height: 1.05em; }
.rev-pull__q { font-family: var(--display); font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.2; margin: 0; letter-spacing: -.01em;
  color: var(--paper); text-wrap: balance; }
.rev-pull__q::before { content: "\201C"; color: var(--gold); }
.rev-pull__q::after  { content: "\201D"; color: var(--gold); }
.rev-pull__cite { display: flex; flex-wrap: wrap; gap: .6rem; align-items: baseline; font-size: .9rem; color: var(--muted); }
.rev-pull__author { font-weight: 700; color: var(--bone); letter-spacing: .03em; }
.rev-pull__src { letter-spacing: .04em; }
.rev-pull__rail { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem;
  border-left: 1px solid var(--line-gold); padding-left: clamp(1.2rem, 2.5vw, 1.8rem); }
.rev-pull__mini-stars { color: var(--star); display: inline-flex; gap: .12em; }
.rev-pull__mini-stars svg { width: .85em; height: .85em; }
.rev-pull__mini-q { font-family: var(--display); font-size: 1.16rem; line-height: 1.45; margin: .4rem 0 .4rem; color: var(--bone); font-style: italic; }
.rev-pull__mini-by { font-size: .78rem; color: var(--muted); margin: 0; letter-spacing: .02em; }
.rev-pull__mini-author { font-weight: 700; color: var(--bone); }
@media (max-width: 780px) {
  .reviews-pullquote { grid-template-columns: 1fr; }
  .rev-pull__rail { border-left: 0; border-top: 1px solid var(--line-gold);
    padding-left: 0; padding-top: 1.6rem; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.8rem; }
}
@media (max-width: 480px) { .rev-pull__rail { grid-template-columns: 1fr; } }

/* =========================  CONNECT (connect contract)  ================= */
.connect { background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.connect__inner { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem); align-items: center; justify-content: space-between; }
.connect__copy { max-width: 38rem; }
.connect__copy .eyebrow { color: var(--gold); }
.connect__copy h2 { font-family: var(--display); font-size: clamp(1.9rem, 5vw, 2.8rem); margin: .2rem 0 .7rem; }
.connect__copy p { color: var(--muted); margin: 0; max-width: 46ch; }
.connect__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.connect__btn { display: inline-flex; align-items: center; gap: .55rem; padding: .85rem 1.3rem; min-height: 48px;
  border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--charcoal); color: var(--bone);
  font: inherit; font-weight: 500; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: border-color .15s ease, color .15s ease; -webkit-tap-highlight-color: transparent; }
.connect__btn:hover { border-color: var(--gold); color: var(--gold); }
.connect__btn .icon { width: 1.2em; height: 1.2em; }
.connect__done { font-size: .76rem; color: var(--muted); text-transform: none; letter-spacing: .02em; }
.connect__handle { font-size: .8rem; color: var(--muted); margin-top: 1rem; letter-spacing: .02em; }

/* =========================  VISIT / HOURS / CONTACT  ==================== */
.visit { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
.visit > * { min-width: 0; }
.visit__media { position: relative; margin: 0; }
.visit__media img { width: 100%; aspect-ratio: 3/4; height: auto; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
  filter: saturate(.97) brightness(.9); }
.visit__media figcaption { margin: .8rem 0 0; font-size: .8rem; color: var(--muted); letter-spacing: .02em;
  display: flex; align-items: center; gap: .5rem; }
.visit__media figcaption::before { content: ""; width: 22px; height: 1px; background: var(--gold); flex: 0 0 auto; }
.hours-table { width: 100%; border-collapse: collapse; margin: 0 0 2rem; }
.hours-table caption { text-align: left; font-family: var(--sans); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.hours-table th, .hours-table td { text-align: left; padding: .68rem 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours-table th { font-family: var(--sans); font-weight: 500; color: var(--bone); letter-spacing: .02em; }
.hours-table td { font-family: var(--sans); color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr[data-today] th { color: var(--gold); font-weight: 600; }
.hours-table tr[data-today] td { color: var(--gold-bright); }
.hours-table tr[data-today] { background: linear-gradient(90deg, rgba(215,169,75,.08), transparent); }
.contact-block { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-block li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-block .icon { color: var(--gold); flex: 0 0 auto; margin-top: .15rem; }
.contact-block a { color: var(--bone); text-decoration: none; overflow-wrap: anywhere;
  display: inline-flex; align-items: center; min-height: 44px; }
.contact-block a:hover { color: var(--gold); }
.contact-block .label { display: block; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.visit__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* =========================  MENU PAGE (menu-leader)  ===================== */
.page-head { padding: calc(var(--header-h) + clamp(3rem,7vw,5rem)) 0 clamp(1.6rem,4vw,2.4rem); text-align: center; position: relative; }
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 0%, rgba(194,74,48,.1), transparent 60%);
}
.page-head > * { position: relative; z-index: 1; }
.page-head .eyebrow { color: var(--gold); }
.page-head h1 { font-size: clamp(2.8rem, 8vw, 5.2rem); margin: .3rem 0 1rem; }
.page-head p { color: var(--muted); max-width: 54ch; margin: 0 auto; font-size: var(--fs-lede); }
.page-head .flourish { margin-top: 1.6rem; }

/* menu-picker tabs (sticky) */
.menu-tabs { position: sticky; top: var(--header-h); z-index: 30; display: flex; gap: .4rem;
  padding: .7rem var(--gutter); overflow-x: auto; scrollbar-width: none;
  background: color-mix(in srgb, var(--charcoal) 90%, transparent); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line); justify-content: center; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs a { flex: 0 0 auto; white-space: nowrap; padding: .55rem 1.2rem; border-radius: var(--radius); min-height: 44px;
  display: inline-flex; align-items: center; text-decoration: none; color: var(--muted); font-weight: 500; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; border: 1px solid transparent; transition: color .15s ease, border-color .15s ease; }
.menu-tabs a:hover { color: var(--bone); }
.menu-tabs a[aria-current="page"] { color: var(--cta-ink); background: var(--gold); border-color: var(--gold); }

/* menu category chip-nav */
.menu-nav { position: sticky; top: calc(var(--header-h) + 58px); z-index: 28;
  background: color-mix(in srgb, var(--charcoal) 90%, transparent); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: .6rem 0; }
.menu-nav .wrap { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; justify-content: flex-start; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a { flex: 0 0 auto; white-space: nowrap; padding: .4em 1.05em; border-radius: var(--radius); min-height: 44px;
  display: inline-flex; align-items: center; text-decoration: none; font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: background .15s, color .15s; }
.menu-nav a:hover { background: var(--panel-2); color: var(--bone); }
.menu-nav a.is-active { background: var(--gold); color: var(--cta-ink); }
.menu-nav__arrow { flex: 0 0 auto; width: 44px; height: 44px; display: none; align-items: center; justify-content: center; align-self: center;
  margin: 0 .35rem; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); color: var(--gold); cursor: pointer; -webkit-tap-highlight-color: transparent; }
.menu-nav--scrollable { display: flex; align-items: stretch; }
.menu-nav--scrollable .wrap { flex: 1 1 auto; min-width: 0; order: 0; }
.menu-nav--scrollable .menu-nav__arrow { display: inline-flex; }
.menu-nav__arrow--prev { order: -1; }
.menu-nav__arrow--next { order: 1; }
.menu-nav__arrow svg { width: 20px; height: 20px; }
.menu-nav__arrow:hover:not(:disabled) { background: var(--panel-2); }
.menu-nav__arrow:disabled { opacity: .3; cursor: default; }
@media (prefers-reduced-motion: reduce) { .menu-nav .wrap { scroll-behavior: auto; } }

.menu-body { padding: clamp(2.8rem,6vw,4.4rem) 0 var(--section-y); }
.menu-section { margin-bottom: clamp(3rem,7vw,4.8rem); scroll-margin-top: calc(var(--header-h) + 58px + 60px); max-width: var(--menu-measure); margin-inline: auto; }
.menu-section__head { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 1.8rem; }
.menu-section__head h2 { font-size: var(--fs-h2); color: var(--gold); white-space: nowrap; margin: 0; min-width: 0; }
.menu-section__head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-section__note { margin: -1rem 0 1.6rem; font-size: .86rem; color: var(--muted); font-style: italic; }

/* menu-leader: one centered column, dotted leaders */
.menu-list { display: grid; grid-template-columns: 1fr; gap: .1rem; }
.menu-list--single { } /* alias kept for markup parity */
.menu-row { padding: .95rem 0; border-bottom: 1px dotted var(--line); }
.menu-row__top { display: flex; align-items: baseline; gap: .7rem; }
.menu-row__name { font-family: var(--display); font-weight: 600; font-size: 1.32rem; color: var(--paper); }
.menu-row__name .jp { font-family: var(--sans); font-size: .66rem; letter-spacing: .12em; color: var(--muted); display: block; font-weight: 400; margin-top: .15rem; text-transform: none; }
.menu-row__dots { flex: 1; border-bottom: 1px dotted var(--muted); transform: translateY(-3px); opacity: .35; }
.menu-row__price { font-family: var(--sans); font-weight: 600; color: var(--gold); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-row__prices { display: inline-grid; gap: 0 .8rem; text-align: right; font-variant-numeric: tabular-nums; align-items: baseline; }
.menu-row__prices--2 { grid-template-columns: repeat(2, var(--price-col)); }
.menu-cols { font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.menu-row__desc { margin: .3rem 0 0; font-size: .92rem; color: var(--muted); max-width: 60ch; line-height: 1.6; }
.tag { display: inline-block; font-family: var(--sans); font-size: .54rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  vertical-align: middle; padding: .2em .5em; border-radius: 2px; margin-left: .5em; border: 1px solid var(--line-strong); color: var(--muted); }
.tag-veg { color: #9FCB8E; border-color: rgba(159,203,142,.4); }
.tag-spicy { color: #E0805C; border-color: rgba(224,128,92,.42); }
.tag-gf { color: var(--gold-bright); border-color: rgba(224,184,92,.4); }
.tag-chef { color: var(--gold-bright); border-color: rgba(224,184,92,.5); }

/* menu intro / footer note */
.menu-intro { max-width: var(--menu-measure); margin: 0 auto clamp(2.4rem,5vw,3.4rem); text-align: center; }
.menu-intro p { color: var(--muted); margin: 0; font-style: italic; font-family: var(--display); font-size: 1.2rem; }
.menu-foot-note { max-width: 70ch; margin: clamp(2.6rem,5vw,3.8rem) auto 0; padding-top: 1.8rem; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--muted); line-height: 1.7; text-align: center; }

/* menu landing CTA cluster (reach both menus + order) */
.menu-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: clamp(2.4rem,5vw,3.4rem); justify-content: center; max-width: var(--menu-measure); margin-inline: auto; }

/* =========================  FOOTER  ===================================== */
.site-footer { background: var(--void); border-top: 1px solid var(--line-soft); padding: clamp(3.5rem,7vw,5rem) 0 2.4rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.8rem,4vw,3rem); }
.footer__grid > * { min-width: 0; }
.footer__brand .wordmark__name { font-size: 1.2rem; }
.footer__tag { color: var(--muted); margin: 1.1rem 0 0; max-width: 32ch; font-size: .92rem; }
.footer__col h3 { font-family: var(--sans); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .2rem; }
.footer__col li { display: flex; }
.footer__col a, .footer__col li { color: var(--bone); text-decoration: none; font-size: .92rem; }
.footer__col a { display: inline-flex; align-items: center; min-height: 44px; }
.footer__col li:not(:has(a)) { min-height: 44px; align-items: center; }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer__social a { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--bone); transition: border-color .15s, color .15s; }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social .icon { width: 1.25rem; height: 1.25rem; }
.footer__bottom { margin-top: clamp(2.6rem,5vw,3.6rem); padding-top: 1.8rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__copy { color: var(--muted); font-size: .82rem; }
.footer__sample { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line-strong); padding: .35rem .8rem; border-radius: 999px; }

/* sample-site banner (clearly mark this is a portfolio piece) */
.sample-banner { background: var(--gold); color: var(--cta-ink); text-align: center; font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; padding: .5rem 1rem; }
.sample-banner a { color: var(--cta-ink); text-decoration: underline; text-underline-offset: 2px; }

/* =========================  MOTION (scroll-reveal degrade-safe)  ======== */
/* Contract from motion.md §scroll-reveal. DEFAULT = revealed/visible — the
   element looks like this with no JS, under reduced motion, and after reveal.
   Author markup is just [data-reveal]; JS alone adds .reveal-armed (hidden). */
:root { --reveal-rise: 26px; --reveal-dur: .8s; --reveal-ease: cubic-bezier(.16,1,.3,1); --reveal-stagger: .1s; }
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].reveal-armed { opacity: 0; transform: translateY(var(--reveal-rise)); }
[data-reveal].is-revealed { opacity: 1; transform: none;
  transition: opacity var(--reveal-dur) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease); }
[data-reveal-stagger] [data-reveal].is-revealed { transition-delay: calc(var(--reveal-i, 0) * var(--reveal-stagger)); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].reveal-armed, [data-reveal].is-revealed {
    opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* §parallax — transform-only depth; degrades to static (motion.md). */
.parallax-active { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .band__img { transform: none !important; } }

/* =========================  RESPONSIVE  ================================= */
@media (max-width: 860px) {            /* stack */
  .visit { grid-template-columns: 1fr; }
  .visit__media { order: -1; }
  .visit__media img { aspect-ratio: 16/10; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .menu-section__head h2 { font-size: clamp(1.5rem, 6vw, 2rem); white-space: normal; }
  .menu-section__head { gap: .8rem; }
  .order-strip { flex-direction: column; gap: 1rem; }
  /* signature index: drop the trailing arrow, keep the 2-col num+content */
  .sig__row { grid-template-columns: auto 1fr; gap: 1rem 1.2rem; }
  .sig__arrow { display: none; }
}
