/* ============================================================================
   EMBER & OAK — wood-fire steakhouse (arsenal demo)
   Pattern: full-bleed hero scroll-scrubbed film (a ribeye searing over open
   flame), forked from the Grand Tour / CertiPro fixed-canvas engine and
   re-lit for fire. The fixed <canvas> scrubs only behind the hero; the rest of
   the page scrolls over it on solid warm-black panels.
   Modes:
     scrub  → desktop/fine-pointer: 144-frame canvas scrubbed by hero scroll
     video  → mobile/coarse/low-mem/save-data: ambient looping fire <video>
     static → prefers-reduced-motion: single poster frame, no motion
   Legibility doctrine: cream text never sits raw on bright fire — it rides a
   charcoal-glass island with a brass/ember hairline, or a local scrim.
   ============================================================================ */

/* ─────────────────────────── Tokens ─────────────────────────── */
:root {
  /* Warm near-black base — never pure black */
  --ink:      #0C0A08;   /* deepest — page base */
  --char:     #16120D;   /* charcoal espresso */
  --char-2:   #201A12;   /* elevated warm */
  /* Warm neutrals */
  --cream:    #F2E8D6;   /* primary "white" — warm cream */
  --cream-2:  #FBF4E7;   /* brightest highlight */
  --cream-dim:#CBBCA1;   /* muted body over dark */
  --smoke:    #857A69;   /* greige — captions / labels only */
  /* Fire accents */
  --ember:      #CB5A24; /* ember orange — primary accent */
  --ember-glow: #E88A45; /* softer flame */
  --ember-deep: #8E3A14; /* charred edge */
  --brass:      #B08A4E; /* aged brass — hairlines, secondary metal */
  --brass-soft: #C9A66B;

  /* Charcoal-glass surfaces (warm dark tint over the bright fire) */
  --glass:        rgba(16, 12, 9, 0.58);
  --glass-strong: rgba(10, 8, 6, 0.80);
  --glass-line:   rgba(203, 90, 36, 0.34);    /* ember hairline */
  --glass-line-2: rgba(242, 232, 214, 0.11);  /* cream hairline */

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

  /* Rhythm */
  --pad-section: clamp(5rem, 12vh, 9rem);
  --radius: 20px;
  --radius-sm: 13px;
  --maxw: 1200px;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-island: 0 34px 90px -34px rgba(0,0,0,0.82), 0 8px 24px -12px rgba(0,0,0,0.6);
  --shadow-soft:   0 18px 50px -24px rgba(0,0,0,0.7);
}

/* ─────────────────────────── Reset ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.02; letter-spacing: -0.005em; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--ember-glow); font-weight: 500; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--ember); color: var(--ink); padding: .65rem 1rem; border-radius: 10px;
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 6px; }

/* ─────────────────────────── Background stage (the fire film) ─────────────────────────── */
#stage { position: fixed; inset: 0; z-index: 0; background: var(--ink); }
#film, #ambient, #poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .8s ease;
}
body.mode-scrub  #film    { opacity: 1; }
body.mode-video  #ambient { opacity: 1; }
body.mode-static #poster  { opacity: 1; }

/* Vignette — beds the fire top & bottom so nav/hero UI never floats un-anchored */
.stage-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(12,10,8,0.66) 0%, rgba(12,10,8,0) 24%, rgba(12,10,8,0) 60%, rgba(12,10,8,0.78) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(12,10,8,0) 46%, rgba(12,10,8,0.5) 100%);
}
/* Film grain — kills banding on the dark scrims + adds the celluloid tooth the brief asks for */
.stage-grain, .grain-global {
  position: absolute; inset: -50%; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
/* A second, page-wide grain layer fixed above everything for a consistent filmic tooth */
.grain-global { position: fixed; inset: 0; z-index: 60; opacity: .045; }

/* ─────────────────────────── Loader ─────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  background: radial-gradient(130% 130% at 50% 70%, #1c1108 0%, var(--ink) 68%);
  transition: opacity .7s ease, visibility .7s ease;
}
body:not(.is-loading) #loader { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; width: min(340px, 78vw); }
.loader-mark { font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: .28em; color: var(--cream); padding-left: .28em; }
.loader-mark__amp { color: var(--ember); font-style: italic; }
.loader-sub { font-family: var(--sans); font-size: .68rem; letter-spacing: .42em; text-transform: uppercase; color: var(--smoke); margin: .55rem 0 1.6rem; padding-left: .42em; }
.loader-track { height: 2px; background: rgba(242,232,214,.12); border-radius: 99px; overflow: hidden; }
.loader-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--ember-deep), var(--ember) 50%, var(--ember-glow)); border-radius: 99px; transition: width .25s ease; }
.loader-pct { margin-top: .9rem; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--cream-dim); letter-spacing: .04em; }
.loader-pct__sign { color: var(--ember); }
.loader-cue { margin-top: .3rem; font-size: .72rem; color: rgba(203,188,161,.6); letter-spacing: .18em; text-transform: uppercase; }

/* ─────────────────────────── Buttons ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .9rem 1.6rem; border-radius: 4px; cursor: pointer; border: 1px solid transparent;
  transition: transform .35s var(--ease-lux), background .3s, color .3s, border-color .3s, box-shadow .3s;
  will-change: transform;
}
.btn--lg { padding: 1.05rem 2rem; font-size: .84rem; }
.btn--ember { background: linear-gradient(135deg, var(--ember-glow), var(--ember) 55%, var(--ember-deep)); color: #1a0f07; box-shadow: 0 12px 34px -12px rgba(203,90,36,.6); }
.btn--ember:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(203,90,36,.75); }
.btn--ghost { background: rgba(242,232,214,.05); color: var(--cream); border-color: rgba(242,232,214,.26); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(242,232,214,.1); border-color: var(--ember); transform: translateY(-2px); }

/* ─────────────────────────── Eyebrow ─────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--ember-glow); margin: 0 0 1.2rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 4px rgba(203,90,36,.18), 0 0 10px 1px rgba(232,138,69,.7); }

/* ─────────────────────────── Nav ─────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 90; transition: background .4s, backdrop-filter .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav.is-scrolled { background: rgba(12,10,8,.74); backdrop-filter: blur(16px) saturate(1.2); border-bottom-color: var(--glass-line-2); }
.nav__brand { display: inline-flex; align-items: baseline; gap: .5rem; color: var(--cream); }
.nav__name { font-family: var(--serif); font-weight: 600; font-size: 1.34rem; letter-spacing: .14em; }
.nav__name .amp { color: var(--ember); font-style: italic; }
.nav__tag { font-family: var(--sans); font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--smoke); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); opacity: .78; position: relative; padding: .25rem 0; transition: opacity .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--ember); transition: width .3s var(--ease-lux); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 1.2rem; }
.nav__phone { font-size: .8rem; font-weight: 500; letter-spacing: .04em; color: var(--cream-dim); opacity: .85; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; background: rgba(242,232,214,.05); border: 1px solid rgba(242,232,214,.2); border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; }
.nav__burger span { width: 18px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
body.drawer-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav__burger span:nth-child(2) { opacity: 0; }
body.drawer-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); z-index: 80;
  background: var(--glass-strong); backdrop-filter: blur(22px) saturate(1.2);
  border-left: 1px solid var(--glass-line);
  transform: translateX(100%); transition: transform .45s var(--ease-lux);
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; padding: 2rem;
}
body.drawer-open .drawer { transform: translateX(0); }
.drawer__links { display: flex; flex-direction: column; gap: 1.1rem; }
.drawer__links a { font-family: var(--serif); font-size: 1.7rem; color: var(--cream); }
.drawer__links a:hover { color: var(--ember-glow); }
.drawer__cta { margin-top: 1rem; }
.drawer__meta { font-size: .8rem; color: var(--smoke); letter-spacing: .04em; }

/* ─────────────────────────── The page-body wrapper (covers the fixed fire canvas) ─────────────────────────── */
.after { position: relative; z-index: 2; background: var(--ink); }

/* ─────────────────────────── Generic section ─────────────────────────── */
.section { position: relative; padding-block: var(--pad-section); }
.section__title { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: .98; }
.section__lead { margin-top: 1.3rem; color: var(--cream-dim); font-size: clamp(1.02rem, 1.35vw, 1.2rem); max-width: 52ch; line-height: 1.65; }

/* Section media (video/image bg with parallax) + scrim */
.media-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.media-bg > video, .media-bg > img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.media-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(12,10,8,0.9) 0%, rgba(12,10,8,0.55) 46%, rgba(12,10,8,0.2) 100%),
    linear-gradient(to bottom, rgba(12,10,8,0.5), rgba(12,10,8,0.55));
}

/* ─────────────────────────── Charcoal-glass island ─────────────────────────── */
.island {
  position: relative; z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--glass-line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-island);
  padding: clamp(1.9rem, 4vw, 3.4rem);
  overflow: hidden;
}
.island::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--ember), transparent); opacity: .6; }
.island--narrow { max-width: 620px; }

/* ─────────────────────────── HERO (fire scrub) ─────────────────────────── */
.hero { position: relative; z-index: 2; display: flex; align-items: center; min-height: 100vh; padding: 8rem 0 6rem; }
/* In scrub mode the hero grows tall to give the fire a scroll runway. */
body.mode-scrub .hero { min-height: 260vh; align-items: flex-start; }
body.mode-scrub .hero__inner { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(80% 74% at 28% 46%, rgba(12,10,8,0.72) 0%, rgba(12,10,8,0.32) 46%, transparent 76%),
    linear-gradient(to top, rgba(12,10,8,0.7) 0%, transparent 40%);
}
body.mode-scrub .hero__scrim { position: sticky; top: 0; height: 100vh; }
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.hero__copy { max-width: 820px; }
.hero__eyebrow { color: var(--ember-glow); }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(3.4rem, 12vw, 9.5rem); line-height: .92; margin: .4rem 0 1.4rem;
  letter-spacing: .02em; text-shadow: 0 2px 60px rgba(12,10,8,.6);
}
.hero__title .amp { color: var(--ember); font-style: italic; font-weight: 500; }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 2.1rem); color: var(--cream-2); margin-bottom: 2rem; letter-spacing: .01em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scrollcue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(203,188,161,.72); z-index: 3; }
body.mode-scrub .hero__scrollcue { position: fixed; }
.hero__scrollcue-line { width: 1px; height: 40px; background: linear-gradient(var(--ember), transparent); animation: cue 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* Hero title "tracks in": starts wide-tracked + faded, settles when body.is-ready */
.track-in { opacity: 0; letter-spacing: .5em; transition: opacity 1.4s var(--ease-lux), letter-spacing 1.8s var(--ease-lux); }
body.is-ready .hero__title.track-in { opacity: 1; letter-spacing: .02em; }
.rise-in { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux); }
body.is-ready .rise-in { opacity: 1; transform: none; }
body.is-ready .rise-in.d1 { transition-delay: .35s; }
body.is-ready .rise-in.d2 { transition-delay: .55s; }
body.is-ready .rise-in.d3 { transition-delay: .75s; }

/* ─────────────────────────── STORY (over the room dolly) ─────────────────────────── */
.story { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.story .container { position: relative; z-index: 2; }
.story__inner { max-width: 620px; }
.story__title { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
.story__lead { color: var(--cream-dim); margin-top: 1.4rem; font-size: clamp(1.05rem, 1.4vw, 1.24rem); max-width: 46ch; }
.story__rule { width: 64px; height: 2px; background: linear-gradient(90deg, var(--ember), transparent); margin: 2rem 0 0; }

/* ─────────────────────────── MENU ─────────────────────────── */
.menu { position: relative; }
.menu::before { /* ember glow wash */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 82% 8%, rgba(203,90,36,.12), transparent 70%);
}
.menu__head { text-align: center; max-width: 640px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); max-width: 1040px; margin-inline: auto; position: relative; z-index: 1; }
.menu__col-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 1.2rem; margin-bottom: 1.6rem; border-bottom: 1px solid var(--glass-line); }
.menu__col-title { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--cream); letter-spacing: .04em; }
.menu__col-note { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--smoke); }
.dish { display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--glass-line-2); }
.dish:last-child { border-bottom: none; }
.dish__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--cream); letter-spacing: .01em; }
.dish__price { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ember-glow); font-variant-numeric: tabular-nums; }
.dish__desc { grid-column: 1 / -1; font-size: .88rem; color: var(--cream-dim); line-height: 1.5; margin-top: .1rem; }
.menu__foot { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); font-size: .86rem; color: var(--smoke); letter-spacing: .04em; position: relative; z-index: 1; }

/* ─────────────────────────── PRIVATE (over the cellar still) ─────────────────────────── */
.private { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.private .media-scrim { background: linear-gradient(to left, rgba(12,10,8,0.9) 0%, rgba(12,10,8,0.5) 48%, rgba(12,10,8,0.25) 100%), linear-gradient(rgba(12,10,8,.45), rgba(12,10,8,.5)); }
.private .container { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.private__inner { max-width: 560px; }

/* ─────────────────────────── VISIT (hours · map · reserve) ─────────────────────────── */
.visit { position: relative; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.visit__info { display: flex; flex-direction: column; gap: 2.2rem; }
.hours-row { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.4rem; }
.hours-row dt { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); font-weight: 600; }
.hours-row dd { margin: 0; text-align: right; color: var(--cream-dim); font-size: .95rem; font-variant-numeric: tabular-nums; }
.hours-row dt.is-closed, .hours-row dt.is-closed + dd { color: var(--smoke); }
.info-block h3 { font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ember-glow); font-weight: 600; margin-bottom: 1rem; }
.address { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); line-height: 1.3; }
.address span { display: block; }
.info-link { display: inline-block; margin-top: .8rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-glow); border-bottom: 1px solid var(--glass-line); padding-bottom: 3px; }
.info-link:hover { color: var(--cream); border-color: var(--ember); }

/* Stylized map card (no external calls — controlled dark aesthetic) */
.mapcard { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-line-2); box-shadow: var(--shadow-soft); min-height: 220px; }
.mapcard svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapcard__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); z-index: 2; }
.mapcard__pin-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 6px rgba(203,90,36,.22), 0 0 18px 3px rgba(232,138,69,.8); }
.mapcard__pin::after { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 2px; height: 16px; background: linear-gradient(var(--ember), transparent); }
.mapcard__label { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; background: var(--glass-strong); border: 1px solid var(--glass-line-2); border-radius: 10px; padding: .6rem .9rem; font-size: .78rem; letter-spacing: .04em; color: var(--cream-dim); }

/* Reservation form (stubbed) */
.reserve { position: relative; z-index: 2; }
.reserve__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--smoke); font-weight: 600; }
.field input, .field select {
  font-family: var(--sans); font-size: .96rem; color: var(--cream);
  background: rgba(242,232,214,.04); border: 1px solid var(--glass-line-2); border-radius: 8px;
  padding: .8rem .9rem; transition: border-color .25s, background .25s; width: 100%;
  color-scheme: dark;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--ember); background: rgba(242,232,214,.07); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A66B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem; }
.reserve__submit { grid-column: 1 / -1; margin-top: .4rem; }
.reserve__note { grid-column: 1 / -1; font-size: .78rem; color: var(--smoke); letter-spacing: .02em; margin-top: .2rem; }
.reserve__confirm { grid-column: 1 / -1; display: none; align-items: flex-start; gap: .7rem; padding: 1rem 1.1rem; border: 1px solid var(--glass-line); border-radius: 10px; background: rgba(203,90,36,.1); color: var(--cream); font-size: .92rem; line-height: 1.5; }
.reserve__confirm.is-shown { display: flex; }
.reserve__confirm strong { color: var(--ember-glow); }

/* ─────────────────────────── FOOTER ─────────────────────────── */
.footer { position: relative; z-index: 2; background: var(--char); border-top: 1px solid var(--glass-line-2); padding-top: 4rem; }
.footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; align-items: start; }
.footer__brand .nav__name { font-size: 1.6rem; }
.footer__brand .nav__tag { display: block; margin-top: .3rem; }
.footer__brand p { margin-top: 1rem; color: var(--cream-dim); font-size: .92rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ember-glow); margin-bottom: 1.1rem; }
.footer__col a, .footer__col p { display: block; color: var(--cream-dim); font-size: .92rem; margin-bottom: .6rem; transition: color .25s; }
.footer__col a:hover { color: var(--ember-glow); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--glass-line-2); font-size: .8rem; color: rgba(203,188,161,.5); flex-wrap: wrap; }
.footer__demo-note { color: rgba(203,90,36,.6); }

/* ─────────────────────────── Reveal states (JS adds .is-in) ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.reveal.is-in { opacity: 1; transform: none; }
.dish.reveal { transition-delay: calc(var(--i, 0) * 60ms); }

/* ─────────────────────────── Responsive ─────────────────────────── */
@media (max-width: 960px) {
  .menu__grid { grid-template-columns: 1fr; gap: 3rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .private .container { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}
@media (max-width: 600px) {
  .reserve__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .footer__base { justify-content: flex-start; }
}

/* ─────────────────────────── Reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .rise-in { opacity: 1 !important; transform: none !important; }
  .track-in { opacity: 1 !important; letter-spacing: .02em !important; }
  .hero__scrollcue-line { animation: none; }
}
