/* ===== Tokens ===== */
:root {
  --black:        #0C0B09;
  --surface:      #16140F;
  --surface-2:    #1E1B15;
  --orange:       #F08B2E;
  --orange-hi:    #FFA94D;
  --orange-deep:  #C4661A;
  --cream:        #F6EFE3;
  --muted:        #B3AA9C;
  --line:         rgba(246, 239, 227, 0.12);
  --flame-grad:   linear-gradient(135deg, #FFA94D 0%, #F08B2E 45%, #C4661A 100%);
  --ro-red:       #CE1126;
  --ro-yellow:    #FCD116;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rgb-split: 0px; /* chromatic aberration offset, driven by scroll velocity — hero wordmark + ticker only */
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Animated grain: the SAME noise tile jump-cut between offset positions via
   steps() (no smooth interpolation) reads as swapping frames, not a static
   dirty screen — the difference between "dark website" and "cinematic". */
body::before {
  content: "";
  position: fixed; top: -10%; left: -10%; width: 120%; height: 120%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-flicker 1.2s steps(9) infinite;
}
@keyframes grain-flicker {
  0%   { transform: translate(0, 0); }
  11%  { transform: translate(-3%, -2%); }
  22%  { transform: translate(-5%, 3%); }
  33%  { transform: translate(3%, -5%); }
  44%  { transform: translate(-4%, 4%); }
  55%  { transform: translate(5%, 1%); }
  66%  { transform: translate(-1%, -3%); }
  77%  { transform: translate(4%, 5%); }
  88%  { transform: translate(-5%, -1%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}
html.no-grain body::before { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: 'Anton', 'Archivo Black', sans-serif; }
p { margin: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--orange); color: var(--black); padding: 12px 20px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
}
.skip-link:focus { left: 0; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography helpers ===== */
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-block;
}
.h2 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 12px 0 20px;
}
.h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 12px 0 0;
}
/* Simple page header used on every inner page (not the cinematic home hero);
   top padding clears the fixed .site-header. */
.page-hero { padding: 140px 24px 40px; max-width: 900px; }
@media (min-width: 1024px) { .page-hero { padding: 170px 24px 48px; } }
.page-hero__note {
  display: inline-block; margin-top: 20px; padding: 8px 14px;
  border: 1px dashed var(--line); border-radius: 4px;
  font-family: 'Space Mono', monospace; font-size: 12px; color: var(--orange); letter-spacing: 0.03em;
}
.c { color: var(--cream); }
.o { color: var(--orange); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: filter 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease), transform 150ms var(--ease);
  min-height: 44px; white-space: nowrap; cursor: pointer; border: none;
  position: relative;
}
/* Press feedback for touch (no :hover on touch devices, so this is the only
   feedback a tap gets) — a quick scale-down reads as "the button responded". */
.btn:active { transform: scale(0.96); }
.btn--primary { background: var(--flame-grad); color: var(--black); }
.btn--primary:active { filter: brightness(0.94); }
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { filter: brightness(1.08); }
}
/* Directional fill hover: the flame-grad radiates in from wherever the cursor
   entered (--fx/--fy set in JS on mouseenter), not a flat colour swap. */
.btn--ghost {
  background: transparent; border: 1px solid var(--line); color: var(--cream);
  isolation: isolate; overflow: hidden;
}
.btn--ghost::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: var(--flame-grad);
  clip-path: circle(0% at var(--fx, 50%) var(--fy, 50%));
  transition: clip-path 450ms var(--ease);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover::before { clip-path: circle(150% at var(--fx, 50%) var(--fy, 50%)); }
  .btn--ghost:hover { border-color: transparent; color: var(--black); }
}
/* Touch: same fill, centred (no --fx/--fy needed), triggered on tap instead of hover */
.btn--ghost:active::before { clip-path: circle(150% at 50% 50%); transition: clip-path 250ms var(--ease); }
.btn--ghost:active { border-color: transparent; color: var(--black); }

/* ===== Loader (Scene 0) ===== */
.loader {
  position: fixed; inset: 0; z-index: 500;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
}
.loader__icon { width: clamp(48px, 10vw, 72px); height: auto; }
.loader__word {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.01em;
}
.loader__line {
  width: 240px; height: 2px; background: var(--line); position: relative; overflow: hidden;
}
.loader__line span {
  position: absolute; inset: 0; width: 0%;
  background: var(--flame-grad);
}
.loader__counter {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; color: var(--muted);
  position: absolute; left: 24px; bottom: 24px;
}
.loader.is-hidden {
  transform: translateY(-100%);
  transition: transform 700ms var(--ease);
  pointer-events: none;
}

/* ===== HUD ===== */
.hud { display: none; }
@media (min-width: 1024px) {
  html.no-hud .hud { display: none !important; }
  .hud {
    display: block;
    position: fixed; inset: 0; z-index: 60; pointer-events: none;
  }
  .hud > div {
    position: fixed;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.6;
    padding: 20px;
  }
  /* top: 92px clears the fixed .site-header (brand + lang toggle) so the two
     don't overlap in the same corner. */
  .hud__tl { top: 92px; left: 0; }
  .hud__tr { top: 92px; right: 0; display: flex; align-items: center; gap: 8px; }
  .hud__bl { bottom: 0; left: 0; display: flex; align-items: center; gap: 10px; }
  .hud__br { bottom: 0; right: 0; }
  .hud__progress-line {
    display: inline-block; width: 60px; height: 1px; background: var(--line);
    position: relative;
  }
  .hud__progress-fill {
    position: absolute; left: 0; top: 0; height: 100%; width: 0%;
    background: var(--orange);
  }
  .hud-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
    display: inline-block;
    animation: hud-pulse 2.6s ease-in-out infinite;
  }
  .hud-dot.is-closed { background: var(--muted); animation: none; opacity: 0.6; }
}
@keyframes hud-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Device-agnostic version of .hud-dot (that one lives inside the desktop-only
   HUD media block) — used anywhere an open/closed indicator must work on mobile. */
.status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  display: inline-block; margin-right: 6px;
  animation: hud-pulse 2.6s ease-in-out infinite;
}
.status-dot.is-closed { background: var(--muted); animation: none; opacity: 0.6; }
@media (prefers-reduced-motion: reduce) { .status-dot { animation: none; } }

/* ===== Custom cursor ===== */
.cursor { display: none; }
@media (min-width: 1024px) {
  html.has-fine-pointer body { cursor: none; }
  html.has-fine-pointer .cursor {
    display: block;
    position: fixed; top: 0; left: 0; z-index: 400; pointer-events: none;
  }
  /* mix-blend-mode: difference — the cursor inverts against whatever it's
     over instead of being a fixed orange, so it never disappears on the
     ticker, CTA buttons, active chips or anything else already orange. */
  .cursor__dot {
    position: fixed; width: 8px; height: 8px; border-radius: 50%;
    background: var(--cream); mix-blend-mode: difference; transform: translate(-50%, -50%);
    top: 0; left: 0;
  }
  .cursor__ring {
    position: fixed; width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--cream); mix-blend-mode: difference; transform: translate(-50%, -50%);
    top: 0; left: 0;
    display: flex; align-items: center; justify-content: center;
    transition: width 250ms var(--ease), height 250ms var(--ease), background 250ms var(--ease);
  }
  .cursor__ring.is-active {
    width: 90px; height: 90px; background: rgba(246,239,227,0.16);
  }
  .cursor__ring.is-button {
    width: 20px; height: 20px; background: var(--cream);
  }
  .cursor__label {
    font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.1em;
    color: var(--cream); opacity: 0; transition: opacity 200ms var(--ease);
  }
  .cursor__ring.is-active .cursor__label { opacity: 1; }

  /* Heat-map / spotlight cursor: a soft glow lags behind the pointer, blended
     screen, so whatever it passes over reads as warming up. */
  .cursor__glow {
    position: fixed; top: 0; left: 0; width: 260px; height: 260px;
    border-radius: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(240,139,46,0.5) 0%, rgba(240,139,46,0) 70%);
    mix-blend-mode: screen;
    opacity: 0.12;
    pointer-events: none;
  }
  html.no-heat-cursor .cursor__glow { display: none; }
}

/* ===== Language toggle ===== */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
}
.lang-toggle button {
  background: none; border: none; color: var(--muted); cursor: pointer;
  padding: 6px 7px; min-height: 44px; min-width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
  transition: color 200ms var(--ease);
}
.lang-toggle button.is-active { color: var(--orange); }
.lang-toggle button:active { color: var(--orange); }
.lang-toggle__sep { color: var(--line); }
@media (hover: hover) and (pointer: fine) {
  .lang-toggle button:hover { color: var(--cream); }
  .lang-toggle button.is-active:hover { color: var(--orange); }
}

/* Language swap transition: quick fade + 4px vertical slide, not an instant jump */
[data-en] { transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
.lang-fade { opacity: 0; transform: translateY(4px); }
@media (prefers-reduced-motion: reduce) {
  [data-en] { transition: none; }
}

/* ===== Site header (persistent on inner pages; home hero carries its own brand) ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 205;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 76px 16px 20px; gap: 16px; /* right padding clears the fixed .nav-burger */
  background: linear-gradient(180deg, rgba(12,11,9,0.85) 0%, rgba(12,11,9,0) 100%);
  pointer-events: none;
  transition: opacity 250ms var(--ease);
}
.site-header > * { pointer-events: auto; }
.site-header.is-near-bottom { opacity: 0; }
.site-header.is-near-bottom > * { pointer-events: none; }
.site-header__brand { font-family: 'Anton', sans-serif; font-size: 1.1rem; letter-spacing: 0.02em; }
@media (min-width: 1024px) { .site-header { padding: 24px 112px 24px 44px; } }

/* ===== Nav burger ===== */
.nav-burger {
  position: fixed; top: 20px; right: 20px; z-index: 210;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: rgba(12,11,9,0.5); border: 1px solid var(--line); border-radius: 4px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 1024px) { .nav-burger { top: 44px; right: 44px; } }
.nav-burger span { width: 20px; height: 2px; background: var(--cream); transition: transform 250ms var(--ease), opacity 250ms var(--ease); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ===== Nav overlay ===== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--black);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform 500ms var(--ease);
  visibility: hidden;
}
.nav-overlay.open { transform: translateY(0); visibility: visible; }
.nav-overlay__inner {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 100px 6vw 40px; gap: 40px;
}
.nav-overlay__links { display: flex; flex-direction: column; gap: 6px; }
.nav-overlay__links a {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  opacity: 0; transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease), color 200ms var(--ease);
}
.nav-overlay.open .nav-overlay__links a { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-overlay__links a:nth-child(1) { transition-delay: 60ms; }
.nav-overlay.open .nav-overlay__links a:nth-child(2) { transition-delay: 120ms; }
.nav-overlay.open .nav-overlay__links a:nth-child(3) { transition-delay: 180ms; }
.nav-overlay.open .nav-overlay__links a:nth-child(4) { transition-delay: 240ms; }
.nav-overlay.open .nav-overlay__links a:nth-child(5) { transition-delay: 300ms; }
.nav-overlay__links a:active { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .nav-overlay__links a:hover { color: var(--orange); }
}
.ml-ro {
  display: block; font-family: 'Space Mono', monospace; font-size: 12px;
  color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-overlay__preview {
  width: 320px; height: 400px; border-radius: 6px; overflow: hidden;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 300ms var(--ease);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 900px) { .nav-overlay__preview { display: block; } }
.nav-overlay__preview.is-visible { opacity: 1; }
.nav-overlay__footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 24px 6vw; border-top: 1px solid var(--line);
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.05em;
}
.nav-overlay__footer a:active { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .nav-overlay__footer a:hover { color: var(--orange); }
}
.nav-overlay__socials { display: flex; gap: 20px; }
.nav-overlay__status { display: flex; align-items: center; gap: 8px; color: var(--muted); text-transform: uppercase; }

/* ===== Reveal utilities ===== */
.mask { overflow: hidden; }
.mask .line { display: block; transform: translateY(110%); }
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
/* Images are "cut" into view, not faded — consistent with CARVE, applied
   through the shared reveal utility rather than per-component. */
[data-reveal] img {
  clip-path: polygon(0 0, 0 0, -10% 100%, -10% 100%);
  transition: clip-path 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].is-visible img { clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); }

/* ===== Scene 1: Hero ===== */
.scene-hero { height: 200vh; position: relative; }
.scene-hero__pin {
  position: relative; height: 100svh; width: 100%;
  overflow: hidden;
  display: flex; align-items: center;
}
/* ---- Hero: hand-illustrated spit ----
   Nested wrapper-per-effect so each animated property (GSAP curtain-sync scale,
   JS-driven texture pan, JS-driven knife/carve) owns its own element or its own
   attribute — mixing two transform sources on one element makes the later one
   silently clobber the earlier one, so each concern gets a dedicated layer. */
.hero-gyro {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-gyro__position {
  position: absolute; top: 50%; left: 66%; transform: translate(-50%, -50%);
  height: 78svh; aspect-ratio: 300 / 420;
}
.hero-gyro__scroll-scale { width: 100%; height: 100%; } /* GSAP: curtain-sync scale */
.hero-spit-svg {
  width: 100%; height: 100%; display: block; overflow: hidden;
}
.meat-slice { will-change: transform; }
.hero-knife { will-change: transform; }
.hero-burner { transform-origin: 258px 350px; will-change: transform, opacity; }

.hero-burner-glow {
  position: absolute; top: 8%; bottom: 8%; right: -4px; width: 8px;
  background: var(--flame-grad);
  filter: blur(12px);
  opacity: 0.7;
  animation: burner-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes burner-pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

@media (max-width: 1023px) {
  .hero-gyro__position { left: 50%; height: 62svh; }
  .hero-burner-glow { display: none; }
}

/* ---- Hero: L2 particle canvas (shavings + embers, layered over the SVG) ---- */
.hero-embers {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%;
  pointer-events: none;
}

.scene-hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(12,11,9,0.55);
}
.scene-hero__glow {
  position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 120%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(240,139,46,0.28) 0%, rgba(240,139,46,0) 70%);
  pointer-events: none;
}
.scene-hero__content {
  position: relative; z-index: 3;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 24px;
}
.hero-h1 {
  font-size: clamp(3.5rem, 13vw, 10rem);
  line-height: 0.95; text-transform: uppercase; margin: 10px 0;
  white-space: nowrap;
}
.hero-h1__word {
  display: inline-block; will-change: transform;
  text-shadow: calc(-1 * var(--rgb-split)) 0 rgba(246,239,227,0.55), var(--rgb-split) 0 rgba(196,102,26,0.55);
}
.hero-sub {
  font-family: 'Space Mono', monospace; font-size: clamp(11px, 1.6vw, 14px);
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px; max-width: 640px;
}
.hero-lead { font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--muted); max-width: 480px; margin-bottom: 32px; }
.hero-ctas .line { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Hero delivery placeholders (Just Eat / Uber Eats) ===== */
.hero-delivery { margin-top: 20px; }
.hero-delivery__label {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.hero-delivery__row { display: flex; gap: 12px; flex-wrap: wrap; }
.delivery-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; min-height: 44px; border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
}
.delivery-btn__name { letter-spacing: 0.02em; }
.delivery-btn--pending {
  border: 1px dashed var(--line); color: var(--muted); cursor: default;
}
.delivery-btn--pending .delivery-btn__status {
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted); opacity: 0.8;
  padding: 2px 7px; border: 1px solid var(--line); border-radius: 999px;
}
/* Once a real URL is set in SITE_CONFIG.deliveryLinks, js/delivery-links.js
   swaps the placeholder <span> for a real <a class="delivery-btn is-active">,
   dropping the dashed border/"Coming Soon" pill for a solid, clickable style. */
.delivery-btn.is-active {
  border: 1px solid var(--orange); color: var(--cream); text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.delivery-btn.is-active:active { background: var(--orange); color: var(--black); }
@media (hover: hover) and (pointer: fine) {
  .delivery-btn.is-active:hover { background: var(--orange); color: var(--black); }
}

.hero-release {
  position: absolute; left: 24px; right: 24px; bottom: 14%;
  text-align: center;
  font-family: 'Space Mono', monospace; font-size: 13px; letter-spacing: 0.2em;
  color: var(--orange); opacity: 0; text-transform: uppercase;
}
.scene-hero__scroll-cue {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--muted);
  transition: opacity 400ms var(--ease);
}
.scroll-cue__line {
  width: 1px; height: 36px; background: var(--line); position: relative; overflow: hidden;
}
.scroll-cue__line::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--orange); animation: cue-pulse 2s ease-in-out infinite;
}
@keyframes cue-pulse { 0% { top: -100%; } 100% { top: 100%; } }

/* ===== Scene 2: Ticker ===== */
.ticker { background: var(--flame-grad); overflow: hidden; white-space: nowrap; padding: 14px 0; position: relative; z-index: 1; }
.ticker__track { display: inline-flex; will-change: transform; }
.ticker__track span {
  font-family: 'Anton', sans-serif; color: var(--black); font-size: 1.1rem; letter-spacing: 0.02em; text-transform: uppercase; padding-right: 8px;
  text-shadow: calc(-1 * var(--rgb-split)) 0 rgba(12,11,9,0.6), var(--rgb-split) 0 rgba(246,239,227,0.5);
}

/* ===== Sections generic ===== */
.section { padding: 88px 0; position: relative; }
.section--surface { background: var(--surface); }

/* ===== Scene 3: Dish Theatre ===== */
.scene-theatre { height: 450vh; position: relative; }
.theatre-stage {
  position: relative; height: 100svh; width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.theatre-stage__eyebrow { position: absolute; top: 110px; left: 24px; z-index: 3; }
.theatre-counter {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%); z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: var(--muted);
}
/* Rolling odometer: a mechanical counter roll instead of an instant text swap.
   The column holds every possible digit stacked vertically; only 1em of it is
   visible, and translating the list scrolls the right digit into view. */
.theatre-counter__num { display: inline-flex; align-items: baseline; }
.odo-col { display: inline-block; height: 1em; overflow: hidden; vertical-align: baseline; }
.odo-col__list { display: flex; flex-direction: column; }
.odo-col__list span { height: 1em; line-height: 1; display: block; }
.theatre-counter__bar { width: 2px; height: 90px; background: var(--line); position: relative; }
.theatre-counter__bar span {
  position: absolute; left: 0; top: 0; width: 100%; height: 25%;
  background: var(--orange); transition: height 400ms var(--ease);
}
.theatre-panels { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; height: 70vh; padding: 0 24px 0 90px; }
.theatre-panel {
  position: absolute; inset: 0 24px 0 90px;
  display: grid; grid-template-columns: 1fr;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}
.theatre-panel[data-panel="1"] { opacity: 1; pointer-events: auto; }
@media (min-width: 860px) {
  .theatre-panel { grid-template-columns: 1fr 55%; gap: 40px; }
}
/* "Plate reveal" (SERVE): a circular mask expands from centre — the dish is
   served, not faded in — while an illustrated rim self-draws around the edge
   via stroke-dashoffset. */
.theatre-panel__media {
  order: 2;
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  will-change: opacity;
}
.theatre-panel__media img {
  aspect-ratio: 1/1; object-fit: cover; width: 100%; height: auto;
  border-radius: 50%; /* fallback shape if clip-path is ever unsupported */
  filter: brightness(0.9) drop-shadow(0 20px 40px rgba(0,0,0,.5));
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
  cursor: pointer;
}
.plate-rim { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.plate-rim__circle {
  fill: none; stroke: var(--cream); stroke-width: 1; opacity: 0.6;
  stroke-dasharray: 296; stroke-dashoffset: 296;
  will-change: stroke-dashoffset;
}
.theatre-panel__text { order: 1; will-change: transform, opacity; }
.theatre-panel__title .letter { display: inline-block; will-change: transform, opacity; }
.theatre-panel__ro {
  font-family: 'Space Mono', monospace; color: var(--orange); font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.theatre-panel__title {
  font-size: clamp(3rem, 7vw, 6rem); line-height: 0.9; text-transform: uppercase; margin-bottom: 20px;
}
.theatre-panel__desc { color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 420px; }

.menu-note { margin-top: 32px; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== The Shaormania Way (home) ===== */
.way-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin: 40px 0 44px; }
@media (min-width: 700px) { .way-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.way-item__num {
  display: block; font-family: 'Anton', sans-serif; font-size: 2rem;
  color: var(--orange); opacity: 0.4; margin-bottom: 8px;
}
.way-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; margin-bottom: 8px; }
.way-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* Bigger dish photos — one set only (the old menu-teaser carousel + theatre-exit
   grid duplicated these same 4 dishes right next to each other; this replaces both). */
.way-photos { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 12px 0 44px; }
@media (min-width: 700px) { .way-photos { grid-template-columns: 1fr 1fr; gap: 24px; } }
.way-photo { position: relative; display: block; border-radius: 8px; overflow: hidden; }
.way-photo img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
  filter: brightness(0.82); transition: filter 250ms var(--ease), transform 400ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .way-photo:hover img { filter: brightness(0.92); transform: scale(1.03); }
}
.way-photo__info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 18px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  background: linear-gradient(0deg, rgba(12,11,9,0.85) 0%, rgba(12,11,9,0) 100%);
}
.way-photo__name { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; color: var(--cream); }
.way-photo__price { font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--orange); white-space: nowrap; }

/* ===== Visit strip (home) ===== */
.visit-strip__inner { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
@media (min-width: 860px) { .visit-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.visit-strip__address { margin-top: 12px; font-size: 1.05rem; }
.visit-strip__hours { color: var(--muted); margin-top: 4px; }
.visit-strip__ctas { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== Trust: "SPOTLESS." ===== */
.trust-section { background: var(--surface); }
.knife-wipe { position: relative; overflow: hidden; }
.knife-wipe__flash {
  position: absolute; top: 0; bottom: 0; left: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, #F6EFE3, transparent);
  opacity: 0; pointer-events: none; z-index: 5;
}
.trust-quote {
  position: relative;
  max-width: 760px;
  margin: 48px 0 32px;
  padding: 0;
}
.trust-quote::before {
  content: "\201C";
  position: absolute; top: -40px; left: -20px;
  font-family: 'Anton', sans-serif;
  font-size: 12rem;
  color: var(--orange);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.trust-quote__text {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--cream);
}
/* Reuses the generic [data-reveal] IntersectionObserver — when main.js adds
   .is-visible to .trust-quote, this resolves the mask-hidden line beneath it. */
.trust-quote.is-visible .mask .line { transform: translateY(0); transition: transform 700ms var(--ease); }
.trust-quote cite {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.trust-quote__stars { color: var(--orange); font-size: 1rem; letter-spacing: 0.05em; }
.trust-quote cite a { transition: color 200ms var(--ease); }
.trust-quote cite a:hover, .trust-quote cite a:active { color: var(--orange); }
.trust-quote cite a:focus-visible { outline: 1px solid var(--orange); outline-offset: 3px; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-chip {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
}

.fsa-badge[hidden] { display: none; }
.fsa-badge {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px;
}
.fsa-badge img { width: 72px; height: 72px; object-fit: contain; }
.fsa-badge p { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); }

/* ===== Scene 4: Story (horizontal drift) ===== */
.scene-story { height: 300vh; position: relative; }
.story-track { position: relative; height: 100svh; overflow: hidden; }
.story-track__eyebrow { position: absolute; top: 40px; left: 24px; z-index: 3; }

/* depth plane 1 (0.4x) — background flame glow, behind everything */
.story-track__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; will-change: transform; }
.story-track__blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
}
.story-track__blob--1 { width: 340px; height: 340px; top: 10%; left: 8%; }
.story-track__blob--2 { width: 260px; height: 260px; top: 55%; left: 55%; background: radial-gradient(circle, var(--orange-hi) 0%, transparent 70%); }
.story-track__blob--3 { width: 300px; height: 300px; top: 20%; left: 85%; }

/* depth plane 2 (1x) — the photos + copy */
.story-panels {
  position: relative; z-index: 1;
  display: flex; height: 100%; width: 300%;
  will-change: transform;
}

/* depth plane 4 (1.3x) — foreground embers, in front of everything */
.story-track__fg { position: absolute; inset: 0; z-index: 4; pointer-events: none; will-change: transform; }
.story-track__fg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 30%, var(--orange) 50%, transparent 51%),
    radial-gradient(2px 2px at 28% 70%, var(--orange-hi) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 45% 20%, var(--orange) 50%, transparent 51%),
    radial-gradient(2px 2px at 62% 60%, var(--orange-hi) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 78% 35%, var(--orange) 50%, transparent 51%),
    radial-gradient(2px 2px at 90% 75%, var(--orange-hi) 50%, transparent 51%);
  opacity: 0.5;
}
.story-panel {
  position: relative; width: 100vw; height: 100%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 6vw;
  overflow: hidden;
}
.story-panel img {
  max-width: 640px; width: 90%; height: auto; border-radius: 6px; object-fit: cover;
  aspect-ratio: 6/5; filter: brightness(0.8);
}
.story-panel__copy { position: absolute; left: 6vw; bottom: 10%; max-width: 480px; }
.story-panel__copy p { color: var(--muted); font-size: 1.02rem; line-height: 1.65; margin-bottom: 16px; }
/* depth plane 3 (0.6x) — oversized outline words, flame visible through the letters */
.story-panel--word .story-panel__outline {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Anton', sans-serif; font-size: clamp(6rem, 22vw, 16rem);
  white-space: nowrap; pointer-events: none; will-change: transform;
  color: rgba(246,239,227,0.14); /* fallback fill where background-clip:text is unsupported */
  -webkit-text-stroke: 1.5px rgba(246,239,227,0.25);
  background: var(--flame-grad);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flame-flicker 6s ease-in-out infinite;
}
@keyframes flame-flicker { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.stat-row {
  margin: 40px auto 88px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream);
}
.stat-row .dot { color: var(--orange); font-size: 8px; }

/* ===== Scene 5: Reviews ===== */
.reviews-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 32px; }
.reviews-grid[hidden] { display: none; }
@media (min-width: 860px) { .reviews-grid { grid-template-columns: 280px 1fr; } }
.reviews-score { text-align: left; }
.reviews-score__num { font-family: 'Anton', sans-serif; font-size: clamp(4rem, 10vw, 6rem); line-height: 1; }
.reviews-score__stars { font-size: 1.4rem; margin: 8px 0; }
.reviews-score__stars .star { position: relative; display: inline-block; width: 1em; }
.star__outline {
  color: transparent; -webkit-text-stroke: 1px rgba(246,239,227,0.4);
}
.star__fill {
  position: absolute; inset: 0;
  color: var(--orange); /* fallback where background-clip:text is unsupported */
  background: var(--flame-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(100% 0 0 0); /* fills bottom-up as ignite() animates this */
}
.star-burst {
  position: absolute; top: 50%; left: 50%; width: 6px; height: 6px;
  margin: -3px 0 0 -3px; border-radius: 50%;
  background: radial-gradient(circle, #FFA94D 0%, transparent 70%);
  pointer-events: none;
}
.reviews-score__count { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.reviews-quotes { display: flex; flex-direction: column; gap: 24px; }
.quote-card { position: relative; background: var(--surface); border-radius: 6px; padding: 28px 28px 22px; margin: 0; }
.quote-card::before {
  content: "\201C"; position: absolute; top: 4px; left: 20px;
  font-family: 'Anton', sans-serif; font-size: 4rem; color: var(--orange); opacity: 0.1; line-height: 1;
}
.quote-card p { font-size: 1.1rem; line-height: 1.5; position: relative; }
.quote-card cite { display: block; margin-top: 14px; font-style: normal; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); }
.quote-card cite a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.quote-card cite a:active { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .quote-card cite a:hover { color: var(--orange); }
}

/* ===== Reviews: loading skeleton + fallback (js/reviews.js) ===== */
.reviews-skeleton { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
.reviews-skeleton[hidden] { display: none; }
@media (min-width: 860px) { .reviews-skeleton { grid-template-columns: 280px 1fr; } }
.reviews-skeleton__score { height: 120px; border-radius: 6px; background: var(--surface); overflow: hidden; position: relative; }
.reviews-skeleton__quotes { display: flex; flex-direction: column; gap: 24px; }
.reviews-skeleton__quote { height: 88px; border-radius: 6px; background: var(--surface); overflow: hidden; position: relative; }
.reviews-skeleton__score::after, .reviews-skeleton__quote::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(246,239,227,0.06), transparent);
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
@keyframes skeleton-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-skeleton__score::after, .reviews-skeleton__quote::after { animation: none; }
}
.reviews-fallback { color: var(--muted); margin-bottom: 24px; }

/* ===== Scene 6: Visit ===== */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 860px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-info__address { font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px; }
.visit-info__truva { font-family: 'Anton', sans-serif; font-size: 1.3rem; letter-spacing: 0.02em; }
.visit-info__phone { display: block; font-family: 'Anton', sans-serif; font-size: clamp(2rem, 5vw, 3rem); color: var(--orange); margin-bottom: 16px; }
.visit-info__hours { color: var(--muted); margin-bottom: 28px; }
.visit-info__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Find-us: open status + hours table ===== */
.open-status {
  display: inline-flex; align-items: center; margin-bottom: 24px;
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.hours-table { margin-top: 32px; border-collapse: collapse; width: 100%; max-width: 360px; }
.hours-table th, .hours-table td {
  text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; font-weight: 400;
}
.hours-table th { color: var(--muted); }
.hours-table td { font-family: 'Space Mono', monospace; text-align: right; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--orange); }

/* ===== Legal pages ===== */
.legal-hero { max-width: 700px; }
.legal-updated { color: var(--muted); font-family: 'Space Mono', monospace; font-size: 12px; margin-top: 12px; }
.legal-content .container { max-width: 720px; }
.legal-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--cream); opacity: 0.9; line-height: 1.7; }
.legal-content ul { margin: 8px 0 8px 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-content em { color: var(--orange); font-style: normal; }
.visit-map { border-top: 2px solid var(--orange); border-radius: 6px; overflow: hidden; min-height: 320px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ===== Good to know (FAQ) ===== */
.faq-section__container { max-width: 760px; }
.faq-list { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--cream);
  transition: color 150ms var(--ease);
}
.faq-item summary:active { color: var(--orange); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 250ms var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__answer {
  padding: 0 40px 22px 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer { padding: 64px 0 96px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.nav__brand { font-family: 'Anton', 'Archivo Black', sans-serif; font-size: 1.4rem; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 8px; }
.brand-icon { height: 1.6em; width: auto; display: block; }
.footer__tagline { color: var(--muted); font-size: 0.95rem; }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), transform 150ms var(--ease);
}
.footer__socials a:active { border-color: var(--orange); color: var(--orange); transform: scale(0.92); }
.footer__nap { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__legal a {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--muted);
  text-decoration: underline; text-underline-offset: 3px;
  display: inline-flex; align-items: center; min-height: 44px;
}
.footer__legal a:active { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .footer__socials a:hover { border-color: var(--orange); color: var(--orange); }
  .footer__legal a:hover { color: var(--orange); }
}
.footer__small { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--muted); opacity: 0.7; }
.footer__small a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer__small a:active { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .footer__small a:hover { color: var(--orange); }
}

/* ===== Menu page ===== */
.menu-intro { color: var(--muted); margin-top: 16px; max-width: 60ch; }

.menu-sticky-bar {
  position: sticky; top: 60px; z-index: 40;
  background: rgba(12,11,9,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  transition: opacity 250ms var(--ease);
}
.menu-sticky-bar.is-near-bottom { opacity: 0; pointer-events: none; }
@media (min-width: 1024px) { .menu-sticky-bar { top: 78px; } }
.menu-sticky-bar__inner { display: flex; flex-direction: column; gap: 10px; }
.menu-sectionnav { display: flex; gap: 18px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
.menu-sectionnav::-webkit-scrollbar { display: none; }
.menu-sectionnav a {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; border-bottom: 2px solid transparent;
  display: inline-flex; align-items: center; min-height: 44px; scroll-snap-align: start;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.menu-sectionnav a.is-active { color: var(--orange); border-color: var(--orange); }
.menu-sectionnav a:active { color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .menu-sectionnav a:hover { color: var(--orange); border-color: var(--orange); }
}

.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 12px; min-height: 44px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); background: transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease), transform 150ms var(--ease);
}
.chip.is-active { color: var(--black); background: var(--orange); border-color: var(--orange); }
.chip:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) {
  .chip:hover { color: var(--black); background: var(--orange); border-color: var(--orange); }
}

.menu-section { padding: 48px 0 16px; }
.menu-section.is-empty { display: none; }
.menu-section__head { position: relative; display: flex; align-items: baseline; gap: 10px; padding-bottom: 16px; }
.menu-section__head::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--ro-red), var(--ro-yellow));
}
.menu-section__num { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--ro-red); letter-spacing: 0.05em; }
.menu-section__list { margin-top: 4px; }

.menu-item {
  display: grid; grid-template-rows: 1fr;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  transition: grid-template-rows 300ms var(--ease), opacity 250ms var(--ease), padding 300ms var(--ease), border-color 300ms var(--ease), background 200ms var(--ease);
}
.menu-item__inner { overflow: hidden; min-height: 0; }
.menu-item__inner:has(.menu-item__photo) { display: flex; align-items: center; gap: 16px; }
.menu-item__photo { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0; cursor: pointer; transition: transform 250ms var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .menu-item__photo:hover { transform: scale(1.08); }
}
.menu-item__body { flex: 1; min-width: 0; }
.menu-item.is-filtered-out {
  grid-template-rows: 0fr; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .menu-item:hover { background: rgba(246,239,227,0.03); }
}
.menu-item__row { display: flex; align-items: baseline; gap: 10px; }
.menu-item__name { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1rem, 2.2vw, 1.15rem); }
.menu-item__leader { flex: 1; border-bottom: 1px dotted var(--line); min-width: 24px; transform: translateY(-4px); }
.menu-item__price { font-family: 'Anton', sans-serif; font-size: 1.15rem; color: var(--orange); white-space: nowrap; }
.menu-item__desc { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }
.menu-item__badge {
  display: inline-block; margin-top: 8px; font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.06em; padding: 3px 8px; border-radius: 3px;
}
.menu-item__badge--mealdeal { background: rgba(206,17,38,0.15); color: #FF8A94; }
.menu-item__badge--freedrink { background: rgba(252,209,22,0.14); color: var(--ro-yellow); }

/* ===== Platter builder ===== */
.platter-builder { background: var(--surface); }
.platter-builder__grid { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 12px; }
.platter-builder__selector { display: flex; gap: 10px; }
.platter-size {
  font-family: 'Anton', sans-serif; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 12px 18px; min-height: 44px; border: 1px solid var(--line); border-radius: 6px;
  color: var(--muted); background: transparent;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease), transform 150ms var(--ease);
}
.platter-size span { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.04em; margin-left: 4px; }
.platter-size.is-active { color: var(--black); background: var(--orange); border-color: var(--orange); }
.platter-size:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) {
  .platter-size:hover { color: var(--black); background: var(--orange); border-color: var(--orange); }
}

.platter-builder__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.platter-builder__currency { font-family: 'Anton', sans-serif; font-size: clamp(2rem, 6vw, 3rem); color: var(--orange); }
.platter-builder__odo { display: inline-flex; font-family: 'Anton', sans-serif; font-size: clamp(2rem, 6vw, 3rem); color: var(--orange); }
.platter-builder__odo .odo-col { height: 1em; }
.platter-builder__odo .odo-col__list { transition: transform 400ms var(--ease); }
.platter-builder__perperson { margin-left: 16px; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }

.platter-builder__contents { display: flex; flex-direction: column; gap: 6px; }
.platter-builder__contents li {
  font-size: 0.95rem; color: var(--cream); opacity: 0; transform: translateX(-8px);
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}
.platter-builder__contents li.is-revealed { opacity: 1; transform: translateX(0); }
.platter-builder__contents li::before { content: '\2014\00A0'; color: var(--orange); }

@media (min-width: 860px) {
  .menu-sticky-bar__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .platter-builder__grid { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto auto; column-gap: 48px; row-gap: 16px; }
  .platter-builder__selector { grid-column: 1; grid-row: 1; }
  .platter-builder__price { grid-column: 1; grid-row: 2; }
  .platter-builder__cta { grid-column: 1; grid-row: 3; }
  .platter-builder__contents { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12,11,9,0.94); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 250ms var(--ease);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__stage { max-width: min(90vw, 1100px); max-height: 82vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox__stage img { max-width: 100%; max-height: 74vh; width: auto; border-radius: 4px; }
.lightbox__caption { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.03em; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: fixed; background: rgba(12,11,9,0.6); border: 1px solid var(--line); border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1.4rem; line-height: 1;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), transform 150ms var(--ease);
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:active { transform: scale(0.9); border-color: var(--orange); color: var(--orange); }
.lightbox__nav--prev:active { transform: translateY(-50%) scale(0.9); border-color: var(--orange); color: var(--orange); }
.lightbox__nav--next:active { transform: translateY(-50%) scale(0.9); border-color: var(--orange); color: var(--orange); }
@media (hover: hover) and (pointer: fine) {
  .lightbox__close:hover, .lightbox__nav:hover { border-color: var(--orange); color: var(--orange); }
}

/* ===== Sticky mobile action bar (Menu / Call / Directions) ===== */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
  background: rgba(12,11,9,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 300ms var(--ease);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: 44px; min-width: 0; padding: 4px 2px;
  border-radius: 4px; border: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: 0.01em;
  color: var(--cream); background: transparent;
}
.mobile-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta__btn span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.mobile-cta__btn--primary { background: var(--flame-grad); color: var(--black); }
.mobile-cta__btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
@media (min-width: 1024px) { .mobile-cta { display: none; } }

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 88px; z-index: 120;
  max-width: 480px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px;
  padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin: 0 0 16px; }
.cookie-banner a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-banner__reject {
  background: none; border: 1px solid var(--line); color: var(--cream);
  font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700;
  padding: 10px 16px; border-radius: 4px; min-height: 44px; cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .cookie-banner__reject:hover { border-color: var(--orange); color: var(--orange); }
}
@media (min-width: 1024px) { .cookie-banner { left: 24px; right: auto; bottom: 24px; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: opacity 200ms linear; transform: none; } }

/* Keeps scrolled-to-bottom footer/legal content clear of the fixed bar above it */
@media (max-width: 1023px) {
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* ===== Mobile (<1024px) simplifications ===== */
@media (max-width: 1023px) {
  .hero-h1 { white-space: normal; }
  .hero-h1__word { display: block; }
  .theatre-panels { padding: 0 20px; }
  .theatre-panel { inset: 0 20px; grid-template-columns: 1fr; }
  .theatre-counter { display: none; }

  /* Story horizontal pin becomes a normal stacked vertical layout */
  .scene-story { height: auto; }
  .story-track { height: auto; overflow: visible; padding-top: 60px; }
  .story-track__eyebrow { position: static; margin-bottom: 24px; padding: 0 24px; }
  .story-panels { width: 100%; flex-direction: column; height: auto; transform: none !important; }
  .story-panel {
    width: 100%; height: auto; padding: 40px 24px; flex-direction: column;
    position: relative; align-items: flex-start;
  }
  .story-panel img { width: 100%; max-width: none; }
  .story-panel__copy { position: static; margin-top: 20px; max-width: none; }
  .story-panel__outline { font-size: clamp(4rem, 24vw, 8rem); }
  .story-track__bg, .story-track__fg { display: none; } /* ambient parallax planes, desktop-only */
}

/* ===== Reduced motion: fully static stacked layout ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hud, .cursor, .nav-burger ~ .cursor { display: none !important; }
  .loader { display: none !important; }
  .mask .line { transform: translateY(0) !important; }
  [data-reveal] { transition: opacity 200ms linear !important; transform: none !important; opacity: 1 !important; }
  .hero-h1__word { transform: none !important; }
  .hero-release { opacity: 1 !important; position: static; margin-top: 24px; }
  .scroll-cue__line::after { animation: none; }
  .btn--ghost::before { transition: none !important; }
  [data-reveal] img { transition: none !important; }

  /* Static illustration, mid-carve, at rest — no pan, no knife, no embers */
  .hero-gyro__scroll-scale { transform: none !important; }
  .meat-slice { transform: none !important; }
  .hero-knife { display: none !important; }
  .hero-embers { display: none !important; }
  .hero-burner-glow { animation: none !important; opacity: 0.85; }
  .scene-hero__overlay { background: rgba(12,11,9,0.4) !important; }

  .scene-hero { height: auto; }
  .scene-hero__pin { height: auto; min-height: 100svh; padding: 140px 0 80px; }

  .scene-theatre { height: auto; }
  .theatre-stage { height: auto; display: block; padding: 60px 0; }
  .theatre-stage__eyebrow { position: static; display: block; margin-bottom: 24px; padding: 0 24px; }
  .theatre-counter { display: none; }
  .theatre-panels { position: static; height: auto; padding: 40px 24px 0; display: flex; flex-direction: column; gap: 60px; }
  .theatre-panel { position: static; opacity: 1 !important; pointer-events: auto; transform: none !important; margin-bottom: 0; }
  .theatre-panel__media, .theatre-panel__text { transform: none !important; opacity: 1 !important; }
  .theatre-panel__media img { clip-path: circle(47% at 50% 50%) !important; }
  .plate-rim__circle { stroke-dashoffset: 0 !important; }
  .theatre-panel__title .letter { transform: none !important; opacity: 1 !important; }

  .scene-story { height: auto; }
  .story-track { height: auto; overflow: visible; }
  .story-track__eyebrow { position: static; display: block; margin-bottom: 24px; padding: 0 24px; }
  .story-panels { width: 100%; flex-direction: column; height: auto; transform: none !important; }
  .story-panel { width: 100%; height: auto; padding: 60px 24px; flex-direction: column; position: relative; }
  .story-panel__copy { position: static; margin-top: 24px; }
  .story-panel__outline { display: none; }
  .story-track__bg, .story-track__fg { display: none; }
  .knife-wipe { clip-path: none !important; }
  .knife-wipe__flash { display: none; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
}

/* ===== Our Story page ===== */
.story-hero { padding: 140px 24px 0; }
@media (min-width: 1024px) { .story-hero { padding: 170px 24px 0; } }
.story-hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; align-items: center; padding-bottom: 60px; }
@media (min-width: 900px) { .story-hero__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.story-hero__lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin: 20px 0 28px; max-width: 52ch; }
.story-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.story-hero__media { border-radius: 8px; overflow: hidden; }
.story-hero__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: brightness(0.9); }

.story-num {
  display: block; font-family: 'Space Mono', monospace; font-size: 12px;
  color: var(--ro-red); letter-spacing: 0.05em; margin-bottom: 10px;
}

.story-editorial { max-width: 720px; }
.story-editorial p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-top: 20px; }

.story-statements {
  margin-top: 40px; display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) { .story-statements { grid-template-columns: repeat(3, 1fr); } }
.story-statement {
  padding: 28px 24px; border-bottom: 1px solid var(--line);
  font-family: 'Anton', sans-serif; font-size: clamp(1.2rem, 2.6vw, 1.6rem); text-transform: uppercase;
}
@media (min-width: 700px) {
  .story-statement { border-left: 1px solid var(--line); }
  .story-statement:first-child { border-left: none; }
}

/* ===== Our Story: copy + two staggered photos =====
   Layout: text beside the photos (same convention as .story-hero__grid /
   .story-address-grid — text column, media column). The second photo sits
   ~60px lower on desktop so the pair reads as an editorial stack, not two
   boxes in a row; collapses to a plain stack on mobile. */
.story-duo-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .story-duo-layout { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.story-duo-text p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-top: 20px; max-width: 52ch; }
.story-duo-text__cta { color: var(--cream) !important; font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.3rem; }

.story-duo-photos { display: flex; flex-direction: column; gap: 24px; }

.story-duo__pair { margin: 0; position: relative; }
.story-duo__media { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.story-duo__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.86) drop-shadow(0 10px 24px rgba(0,0,0,.35));
}
/* Entrance: bottom-inset clip-path wipe + scale, riding the shared
   [data-reveal] utility — sitewide default is a diagonal "cut" (see
   "Reveal utilities" above); this component wipes up from the bottom
   instead, per spec, staggered 150ms apart between the two photos. */
.story-duo__pair[data-reveal] img {
  clip-path: inset(100% 0 0 0);
  transform: scale(0.96);
  transition: clip-path 700ms var(--ease), transform 700ms var(--ease);
}
.story-duo__pair[data-reveal].is-visible img { clip-path: inset(0 0 0 0); transform: scale(1); }
.story-duo__caption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 32px 16px 14px;
  border-radius: 0 0 8px 8px; overflow: hidden;
  background: linear-gradient(0deg, rgba(12,11,9,0.85) 0%, rgba(12,11,9,0) 100%);
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cream);
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .story-duo__pair:hover .story-duo__media img {
    transform: scale(1.03);
    filter: brightness(0.95) drop-shadow(0 18px 36px rgba(0,0,0,.5));
    transition: transform 600ms var(--ease), filter 600ms var(--ease);
  }
  .story-duo__pair:hover .story-duo__caption { opacity: 1; transform: translateY(0); }
}

.story-address-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .story-address-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.story-address__block address { font-style: normal; margin-top: 16px; font-size: 1.05rem; line-height: 1.6; }
.story-address__hours { color: var(--muted); margin-top: 10px; }
.story-address__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.story-address__media { border-radius: 8px; overflow: hidden; }
.story-address__media img { width: 100%; aspect-ratio: 1600/1067; object-fit: cover; display: block; filter: brightness(0.88); }

.story-final__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
