/* ==========================================================================
   HOT GIRLZ SOULFOOD — design system
   Luxury restaurant × Southern culture magazine × streetwear.
   ========================================================================== */

:root {
  /* base */
  --ink: #0A0908;
  --char: #14100E;
  --soot: #1D1815;
  --ash: #2C2521;
  --smoke: #6B6259;

  /* warm */
  --cream: #F7F1E4;
  --bone: #FFFDF7;
  --paper: #EDE4D3;

  /* heat — sampled from the truck wrap and the seasoning label, which are the
     brand's only two pieces of real applied identity. Hot Girlz is a PINK
     brand with orange flame, not the black-and-red this first read as. */
  --pink: #F0157F;
  --pink-hot: #FF3D9A;
  --pink-deep: #8E0B4C;
  --red: #F0157F;
  --red-deep: #6E0A3C;
  --ember: #FF6A13;
  --gold: #FFC24A;

  /* chrome */
  --chrome: linear-gradient(150deg, #F4F1EC 0%, #B9B3AA 22%, #FFFFFF 42%, #8E8880 62%, #E8E4DD 82%, #A5A099 100%);

  --shell: min(1360px, 100% - 2.5rem);
  --shell-tight: min(880px, 100% - 2.5rem);

  --ff-display: 'Anton', 'Haettenschweiler', 'Arial Narrow', Impact, sans-serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --step--1: clamp(.8rem, .76rem + .2vw, .9rem);
  --step-0: clamp(1rem, .95rem + .25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --h-sm: clamp(2.1rem, 1.5rem + 3vw, 3.4rem);
  --h-md: clamp(2.9rem, 1.6rem + 6vw, 6rem);
  --h-lg: clamp(3.6rem, 1.2rem + 11vw, 11rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --bar-h: 62px;
}

*, *::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(--ink);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: var(--step-0);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

/* `height: auto` is not optional next to `max-width`. Without it, any <img>
   carrying width/height attributes has its WIDTH clamped by max-width while the
   HEIGHT attribute stays at its literal value — so a 1536x1024 landscape banner
   rendered as a 255x1024 vertical smear on a phone. Rules that genuinely want a
   fixed height (.slot__img, .mhero__img) are more specific and still win. */
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, .dsp {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0;
}

::selection { background: var(--ember); color: var(--ink); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: .8rem 1.2rem; font-weight: 800;
}
.skip:focus { left: .5rem; top: .5rem; }

.shell { width: var(--shell); margin-inline: auto; }
.shell-tight { width: var(--shell-tight); margin-inline: auto; }

/* ------------------------------------------------------------------ mark */
.mark { display: inline-flex; align-items: baseline; gap: .34em; font-family: var(--ff-display); text-transform: uppercase; line-height: 1; }
.mark__hot { color: var(--cream); }
.mark__girlz { color: var(--ember); }
.mark__soul { color: var(--cream); opacity: .55; letter-spacing: .18em; font-family: var(--ff-body); font-weight: 800; }
.mark--sm { font-size: 1.32rem; }
.mark--sm .mark__soul { font-size: .52rem; }
.mark--lg { font-size: clamp(2rem, 5vw, 3.4rem); }
.mark--lg .mark__soul { font-size: .8rem; }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem;
  font-family: var(--ff-body); font-weight: 800; font-size: var(--step--1);
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; border-radius: 2px; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--ember { background: var(--ember); color: var(--ink); }
.btn--ember:hover { background: var(--gold); }
.btn--red { background: var(--red); color: var(--bone); }
.btn--red:hover { background: var(--ember); color: var(--ink); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--bone); }
.btn--ghost { background: transparent; color: var(--cream); border-color: currentColor; }
.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--lg { padding: 1.25rem 2.4rem; font-size: var(--step-0); }
.btn--block { width: 100%; }

/* ------------------------------------------------------------------ header */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(247, 241, 228, .09);
  transition: background-color .3s, border-color .3s;
}
.hdr--solid { background: var(--ink); }
.hdr__in { width: var(--shell); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.hdr__brand { text-decoration: none; flex: 0 0 auto; }
.hdr__nav { display: flex; gap: 1.9rem; margin-inline: auto; }
.hdr__nav a {
  text-decoration: none; font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: color-mix(in srgb, var(--cream) 72%, transparent);
  padding: .4rem 0; position: relative; transition: color .2s;
}
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--ember); transition: right .3s var(--ease);
}
.hdr__nav a:hover, .hdr__nav a[aria-current] { color: var(--cream); }
.hdr__nav a:hover::after, .hdr__nav a[aria-current]::after { right: 0; }
.hdr__act { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }

/* Kitchen sound toggle.
   Previously this was an unlabelled outline circle that collapsed to a bare
   40px dot below 900px — it read as a mystery control (people guessed "theme
   toggle") and gave almost no feedback when pressed. It is now an explicit
   speaker icon that swaps between waves and a cross, keeps its text label down
   to small tablets, and lights up in brand pink when active. */
.sndbtn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: none; border: 1px solid rgba(247, 241, 228, .22);
  color: color-mix(in srgb, var(--cream) 66%, transparent);
  border-radius: 100px; padding: .5rem .85rem; cursor: pointer;
  font-family: var(--ff-body); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  transition: color .2s, border-color .2s, background-color .2s;
}
.sndbtn:hover { color: var(--cream); border-color: var(--cream); }
.sndbtn__i { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.sndbtn__spk { fill: currentColor; stroke: currentColor; }
.sndbtn__on { opacity: 0; transition: opacity .2s; }
.sndbtn__off { opacity: 1; transition: opacity .2s; }

.sndbtn[aria-pressed="true"] {
  color: var(--pink-hot); border-color: var(--pink-hot);
  background: color-mix(in srgb, var(--pink) 14%, transparent);
}
.sndbtn[aria-pressed="true"] .sndbtn__on { opacity: 1; }
.sndbtn[aria-pressed="true"] .sndbtn__off { opacity: 0; }
.sndbtn[aria-pressed="true"] .sndbtn__i { animation: sndpulse 2.4s ease-in-out infinite; }
@keyframes sndpulse { 50% { transform: scale(1.09); } }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: .6rem; }
.burger span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer { position: fixed; inset: 74px 0 0; z-index: 89; background: var(--ink); overflow-y: auto; }
.drawer__nav { display: flex; flex-direction: column; gap: .2rem; padding: 2rem 1.25rem 6rem; }
.drawer__nav a {
  font-family: var(--ff-display); font-size: clamp(2rem, 9vw, 3rem); text-transform: uppercase;
  text-decoration: none; padding: .5rem 0; border-bottom: 1px solid rgba(247, 241, 228, .1);
}
.drawer__secret { color: var(--gold) !important; font-family: var(--ff-body) !important; font-size: 1rem !important; font-weight: 800; letter-spacing: .1em; }
.drawer__cta { margin-top: 1.5rem; }

/* ------------------------------------------------------------------ mobile bar */
.mbar { display: none; }
@media (max-width: 900px) {
  .mbar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: color-mix(in srgb, var(--char) 96%, transparent);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(247, 241, 228, .12);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mbar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .18rem;
    height: var(--bar-h); text-decoration: none;
    font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: color-mix(in srgb, var(--cream) 78%, transparent);
  }
  .mbar a:first-child { color: var(--ember); }
  .mbar__i { font-size: 1.05rem; line-height: 1; }
  /* +1px for the bar's own top border, or the last line of content sits under it. */
  body { padding-bottom: calc(var(--bar-h) + 1px + env(safe-area-inset-bottom)); }
}

/* ------------------------------------------------------------------ sections */
.sec { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; }
.sec--cream { background: var(--cream); color: var(--ink); }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--char { background: var(--char); }
.sec--red { background: var(--red-deep); }
.sec--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  font-size: .68rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ember); margin: 0 0 1.1rem;
}
.sec--cream .eyebrow, .sec--paper .eyebrow { color: var(--red); }

.h-lg { font-size: var(--h-lg); }
.h-md { font-size: var(--h-md); }
.h-sm { font-size: var(--h-sm); }

.lede { font-size: var(--step-1); line-height: 1.5; max-width: 46ch; color: color-mix(in srgb, var(--cream) 82%, transparent); }
.sec--cream .lede, .sec--paper .lede { color: color-mix(in srgb, var(--ink) 78%, transparent); }

.rule { width: 100%; height: 8px; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; background: var(--ink); }
.hero__bg { position: absolute; inset: 0; display: grid; place-items: center; }
.hero__bg .plate {
  width: min(148vh, 132vw); opacity: .34;
  transform: translateY(var(--py, 0)) rotate(var(--pr, 0deg)) scale(1.02);
  will-change: transform;
}
/* Three stacked scrims. The headline sits bottom-left over the brightest part
   of the plate, so that corner needs its own gradient or the cream type loses
   contrast against the mac & cheese. */
.hero__vig { position: absolute; inset: 0; background:
  linear-gradient(105deg, rgba(10,9,8,.88) 0%, rgba(10,9,8,.55) 38%, transparent 68%),
  radial-gradient(ellipse at 50% 40%, rgba(10,9,8,.15) 8%, rgba(10,9,8,.68) 54%, var(--ink) 84%),
  linear-gradient(to top, var(--ink) 6%, rgba(10,9,8,.35) 34%, transparent 56%);
}
.hero__in { position: relative; width: var(--shell); margin-inline: auto; padding: 8rem 0 clamp(3rem, 8vw, 6rem); }

/* the opening title cards */
.hero__cards { position: absolute; inset: 0; display: grid; place-items: center; z-index: 3; pointer-events: none; background: var(--ink); }
.hero__card {
  position: absolute; font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(3rem, 16vw, 12rem); color: var(--cream); opacity: 0; letter-spacing: -.02em;
}
.hero__card em { font-style: normal; color: var(--ember); }
body.is-played .hero__cards { display: none; }

.hero__kick { font-size: .72rem; font-weight: 800; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.4rem; }

/* The real brand lockup carries the hero. It is a tall illustrated badge, so
   the hero centres on it and the supporting type sits underneath. */
.hero__in--logo { text-align: center; display: grid; justify-items: center; padding: 5.5rem 0 2.5rem; }
.hero__logo { margin: 0 0 .4rem; line-height: 0; }
/* Bounded by viewport HEIGHT, not width. The lockup is a 2:3 portrait badge —
   sizing it by width alone makes it ~645px tall and pushes the calls to action
   below the fold on laptops. */
.hero__logo img {
  height: min(43svh, 510px); width: auto; max-width: 78vw;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.75)) drop-shadow(0 0 46px rgba(240,21,127,.28));
  animation: logoIn 1.1s var(--ease) both;
}
@keyframes logoIn { from { opacity: 0; transform: translateY(22px) scale(.965); } }
.hero__in--logo .hero__sub { justify-content: center; }
.hero__in--logo .hero__cta { justify-content: center; }
@media (max-width: 700px) { .hero__in--logo { padding-top: 5rem; } }
.hero__h { font-size: var(--h-lg); }
.hero__h .l2 { color: var(--ember); display: block; }
.hero__sub { display: flex; align-items: center; gap: .9rem; margin: 1.6rem 0 2.4rem; flex-wrap: wrap; }
.hero__sub span { font-size: .74rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: color-mix(in srgb, var(--cream) 62%, transparent); }
.hero__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__scroll { position: absolute; right: 0; bottom: clamp(3rem, 8vw, 6rem); writing-mode: vertical-rl; font-size: .6rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: color-mix(in srgb, var(--cream) 45%, transparent); }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* steam */
.steam__p { animation: rise 5.5s ease-in-out infinite; }
.steam__p--1 { animation-delay: 1.1s; }
.steam__p--2 { animation-delay: 2.3s; }
@keyframes rise {
  0% { opacity: 0; transform: translateY(24px) scaleY(.7); }
  22% { opacity: .34; }
  70% { opacity: .16; }
  100% { opacity: 0; transform: translateY(-64px) scaleY(1.25); }
}

/* ------------------------------------------------------------------ the plate + hotspots */
.plateblk { display: grid; grid-template-columns: 1fr minmax(300px, 420px); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 980px) { .plateblk { grid-template-columns: 1fr; } }
.plateblk__stage { position: relative; }
.plateblk__stage .plate { width: 100%; }

.hot {
  position: absolute; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  border: 2px solid var(--cream); color: var(--cream);
  display: grid; place-items: center; padding: 0;
  backdrop-filter: blur(3px);
  transition: transform .3s var(--ease), background-color .3s, border-color .3s;
}
.hot::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.hot::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid var(--cream); opacity: .45; animation: ping 2.8s var(--ease) infinite;
}
.hot:hover, .hot[aria-expanded="true"] { background: var(--ember); border-color: var(--ember); color: var(--ink); transform: translate(-50%, -50%) scale(1.14); }
@keyframes ping { 0% { transform: scale(.85); opacity: .5; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }

.plateblk__panel { min-height: 260px; }
.plateblk__panel h3 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .8rem; }
.plateblk__panel p { color: color-mix(in srgb, var(--cream) 76%, transparent); max-width: 42ch; }
.plateblk__idx { display: flex; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.plateblk__idx button {
  background: none; border: 1px solid rgba(247,241,228,.24); color: color-mix(in srgb, var(--cream) 70%, transparent);
  padding: .55rem .9rem; border-radius: 2px; cursor: pointer;
  font-family: var(--ff-body); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  transition: all .25s;
}
.plateblk__idx button[aria-selected="true"] { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ------------------------------------------------------------------ Fort Pierce photo
   Real, licensed photograph. The caption is a CC BY-SA condition, not decoration —
   it carries the photographer credit, the licence link and the modification note. */
.fpshot { margin: 0; }
.fpshot img { width: 100%; height: auto; display: block; border-radius: 3px; box-shadow: 0 34px 80px rgba(0,0,0,.6); }
.fpshot figcaption { margin-top: .8rem; font-size: .66rem; line-height: 1.5; opacity: .5; }
.fpshot figcaption a { color: inherit; }
.fpshot figcaption a:hover { color: var(--pink-hot); }

/* ------------------------------------------------------------------ full-bleed banner
   The supplied artwork is the whole section: no shell, no padding, no border,
   no rounded corners, no shadow. It bleeds the full width of the page. */
.banner { position: relative; display: block; width: 100%; line-height: 0; background: var(--ink); }
.banner__img { width: 100%; height: auto; display: block; border: 0; border-radius: 0; }
.banner__hit { position: absolute; inset: 0; display: block; }

/* ------------------------------------------------------------------ closer
   Full-bleed photograph with the closing line sitting on top of it. */
.closer { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--ink); isolation: isolate; }
.closer__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 42%; z-index: -2;
}
/* Two scrims: a bottom-weighted one for the buttons, a soft centre one so the
   headline holds against the busiest part of the photograph. */
.closer__scrim {
  position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(ellipse at 50% 46%, rgba(10,9,8,.82) 0%, rgba(10,9,8,.55) 42%, rgba(10,9,8,.35) 70%),
    linear-gradient(to top, var(--ink) 2%, rgba(10,9,8,.45) 28%, transparent 60%),
    linear-gradient(to bottom, rgba(10,9,8,.7) 0%, transparent 34%);
}
.closer__in { position: relative; text-align: center; padding-block: clamp(6rem, 16vw, 12rem); }
.closer__sub { margin: 1.6rem auto 2.6rem; text-align: center; color: var(--cream); }
.closer .h-lg { text-shadow: 0 6px 40px rgba(10,9,8,.85); }

/* ------------------------------------------------------------------ marquee */
.marq { overflow: hidden; background: var(--red); padding: .9rem 0; border-block: 2px solid var(--ink); }
.marq__t { display: flex; gap: 3rem; width: max-content; animation: slide 34s linear infinite; }
.marq__t span { font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2.4rem); text-transform: uppercase; color: var(--bone); white-space: nowrap; }
.marq__t span em { font-style: normal; color: var(--ink); }
@keyframes slide { to { transform: translateX(-50%); } }
.marq:hover .marq__t { animation-play-state: paused; }

/* ------------------------------------------------------------------ split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--rev > *:first-child { order: 2; }
@media (max-width: 900px) { .split--rev > *:first-child { order: 0; } }

.slot__art { position: relative; }
.slot__img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------------ menu */
.mcat { border-top: 2px solid currentColor; padding-top: 1.6rem; margin-top: clamp(3rem, 6vw, 5rem); }
.mcat__hd { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; margin-bottom: .4rem; }
.mcat__no { font-family: var(--ff-display); font-size: 1.1rem; opacity: .4; }
.mcat__nm { font-size: clamp(2.2rem, 5vw, 4rem); }
.mcat__bl { opacity: .6; font-size: var(--step--1); font-style: italic; }
.mlist { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.mitem { display: grid; gap: .35rem; padding-bottom: 1.4rem; border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent); }
.mitem__t { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.mitem__n { font-family: var(--ff-display); font-size: 1.55rem; text-transform: uppercase; }
.mitem__p { margin-left: auto; font-weight: 800; font-variant-numeric: tabular-nums; }
.mitem__d { font-size: var(--step--1); opacity: .72; margin: 0; max-width: 44ch; }
.mitem__badges { display: flex; gap: .4rem; align-items: center; }
.tag {
  font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .24rem .5rem; border-radius: 2px; white-space: nowrap;
}
.tag--fav { background: var(--ember); color: var(--ink); }
.tag--heat { background: color-mix(in srgb, var(--red) 16%, transparent); color: var(--red); }

.noprice {
  background: color-mix(in srgb, var(--red) 8%, transparent);
  border-left: 4px solid var(--red);
  padding: 1.3rem 1.5rem; margin: 2rem 0 0; font-size: var(--step--1);
}
.noprice strong { display: block; font-size: var(--step-0); margin-bottom: .3rem; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */

/* --- cinematic photo hero --- */
.mhero { position: relative; min-height: 92svh; display: grid; align-items: end; overflow: hidden; background: var(--ink); }
/* The image is deliberately taller than the hero and offset upward, so the
   parallax translate has headroom to move into. Sizing it at 100% and relying
   on scale() leaves too little overflow and exposes a black band at the top of
   the hero as soon as the page scrolls. */
.mhero__img {
  position: absolute; left: 0; top: -9%; width: 100%; height: 118%; object-fit: cover;
  transform: translateY(var(--py, 0)); will-change: transform;
  filter: saturate(1.12) contrast(1.06);
}
.mhero__vig { position: absolute; inset: 0; background:
  linear-gradient(to top, var(--ink) 6%, rgba(10,9,8,.88) 30%, rgba(10,9,8,.55) 55%, rgba(10,9,8,.3) 76%, rgba(10,9,8,.5) 100%),
  linear-gradient(100deg, rgba(10,9,8,.82) 0%, rgba(10,9,8,.3) 46%, transparent 72%);
}
.mhero__in { position: relative; width: var(--shell); margin-inline: auto; padding: 7rem 0 clamp(2.5rem, 6vw, 4.5rem); }
.mhero__h { font-size: var(--h-lg); }
.mhero__h .l2 { display: block; color: var(--pink-hot); }
.mhero__cap {
  position: absolute; right: 0; bottom: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 210px; text-align: right; font-size: .68rem; line-height: 1.5;
  color: color-mix(in srgb, var(--cream) 58%, transparent); border-right: 2px solid var(--pink); padding-right: .8rem;
}
@media (max-width: 900px) { .mhero__cap { display: none; } }

/* the truck's own slogan, used as a badge */
.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--pink); color: #fff; padding: .55rem 1.1rem;
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  transform: rotate(-1.4deg); box-shadow: 0 10px 30px rgba(240,21,127,.35);
}
.badge::before { content: '🔥'; }

/* --- sticky category rail with scrollspy --- */
.mnav { position: sticky; top: 74px; z-index: 60; background: color-mix(in srgb, var(--ink) 94%, transparent); backdrop-filter: blur(14px); border-block: 1px solid rgba(247,241,228,.1); }
.mnav__in { width: var(--shell); margin-inline: auto; display: flex; gap: .4rem; overflow-x: auto; padding: .7rem 0; scrollbar-width: none; }
.mnav__in::-webkit-scrollbar { display: none; }
.mnav a {
  flex: 0 0 auto; text-decoration: none; padding: .55rem 1rem; border-radius: 2px;
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 66%, transparent); border: 1px solid rgba(247,241,228,.18);
  transition: all .22s var(--ease); white-space: nowrap;
}
.mnav a:hover { color: var(--cream); border-color: var(--cream); }
.mnav a[aria-current="true"] { background: var(--pink); border-color: var(--pink); color: #fff; }

/* Anchor targets must clear the sticky header (74) + the sticky category
   rail (~53), or every in-page link parks its own heading behind the chrome. */
.mgrp, #plate, #flavor, #build, #order, #tees, #extras, #seasoning {
  scroll-margin-top: 140px;
}

/* --- editorial menu rows --- */
.mgrp { padding: clamp(3.5rem, 8vw, 6.5rem) 0 0; }
.mgrp__hd { display: flex; align-items: flex-end; gap: 1.4rem; flex-wrap: wrap; padding-bottom: 1.2rem; border-bottom: 3px solid currentColor; }
.mgrp__no { font-family: var(--ff-display); font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: .8; color: var(--pink); }
.mgrp__nm { font-size: clamp(2rem, 5vw, 3.6rem); }
.mgrp__bl { margin-left: auto; font-style: italic; opacity: .6; font-size: var(--step--1); max-width: 26ch; }

.mrow {
  display: grid; grid-template-columns: 3.2rem 1fr auto; gap: 1.2rem; align-items: baseline;
  padding: 1.5rem 0; border-bottom: 1px solid color-mix(in srgb, currentColor 15%, transparent);
  position: relative; transition: background-color .3s var(--ease), padding-left .3s var(--ease);
}
.mrow::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--pink); transition: width .3s var(--ease);
}
.mrow:hover { padding-left: 1.1rem; background: color-mix(in srgb, var(--pink) 7%, transparent); }
.mrow:hover::before { width: 4px; }
.mrow__no { font-family: var(--ff-display); font-size: .95rem; opacity: .32; letter-spacing: .04em; }
.mrow__nm { font-family: var(--ff-display); font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1; text-transform: uppercase; }
.mrow__d { font-size: var(--step--1); opacity: .68; margin: .5rem 0 0; max-width: 52ch; }
.mrow__meta { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; margin-top: .6rem; }
.mrow__p { font-family: var(--ff-display); font-size: 1.6rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mrow__ask { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .42; white-space: nowrap; text-align: right; align-self: center; }
/* Drop the price/ask cell under the name before it gets narrow enough to wrap. */
@media (max-width: 780px) {
  .mrow { grid-template-columns: 2.2rem 1fr; }
  .mrow__p, .mrow__ask { grid-column: 2; text-align: left; margin-top: .5rem; align-self: start; }
}

/* --- the real plate, with hotspots on the actual photograph --- */
.rplate { position: relative; border-radius: 3px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.rplate img { width: 100%; display: block; }
.rplate .hot { z-index: 2; }
.rplate__tag {
  position: absolute; left: 0; bottom: 0; z-index: 3;
  background: var(--ink); color: var(--cream); padding: .6rem 1rem;
  font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}

/* --- the wait --- */
.wait { background: var(--pink); color: #fff; text-align: center; padding: clamp(4rem, 9vw, 8rem) 0; position: relative; overflow: hidden; }
.wait__q { font-family: var(--ff-display); font-size: clamp(2.2rem, 6.5vw, 5.6rem); line-height: .95; text-transform: uppercase; max-width: 18ch; margin-inline: auto; }
.wait__a { margin-top: 1.6rem; font-size: .72rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; opacity: .82; }
.wait__mark { position: absolute; font-family: var(--ff-display); font-size: clamp(14rem, 40vw, 34rem); line-height: 1; opacity: .09; top: 50%; left: 50%; transform: translate(-50%, -46%); pointer-events: none; }

/* ------------------------------------------------------------------ builder */
.bld { display: grid; grid-template-columns: 1fr minmax(290px, 380px); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 980px) { .bld { grid-template-columns: 1fr; } }
.bld__step { margin-bottom: 2.6rem; }
.bld__lbl { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1rem; }
.bld__no { font-family: var(--ff-display); font-size: .95rem; color: var(--ember); letter-spacing: .1em; }
.bld__h { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.bld__hint { font-size: .68rem; opacity: .5; margin-left: auto; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  background: none; border: 1px solid rgba(247,241,228,.22); color: var(--cream);
  padding: .7rem 1.05rem; border-radius: 2px; cursor: pointer;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 600;
  transition: all .22s var(--ease); text-align: left;
}
.chip:hover { border-color: var(--cream); transform: translateY(-2px); }
.chip__e { font-size: 1.1em; margin-right: .45em; line-height: 1; }
.chip:hover .chip__e { transform: scale(1.18); }
.chip__e { display: inline-block; transition: transform .22s var(--ease); }
.chip[aria-pressed="true"] { background: var(--cream); color: var(--ink); border-color: var(--cream); font-weight: 800; }
.chip--heat { display: grid; gap: .1rem; min-width: 128px; }
.chip--heat b { font-size: .9rem; }
.chip--heat i { font-style: normal; font-size: .62rem; opacity: .62; }
.chip[aria-pressed="true"].chip--heat { background: var(--ember); border-color: var(--ember); }

.ticket {
  background: var(--cream); color: var(--ink); padding: 1.8rem 1.6rem;
  position: sticky; top: 96px;
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 96% 100%, 92% calc(100% - 12px), 88% 100%, 84% calc(100% - 12px), 80% 100%, 76% calc(100% - 12px), 72% 100%, 68% calc(100% - 12px), 64% 100%, 60% calc(100% - 12px), 56% 100%, 52% calc(100% - 12px), 48% 100%, 44% calc(100% - 12px), 40% 100%, 36% calc(100% - 12px), 32% 100%, 28% calc(100% - 12px), 24% 100%, 20% calc(100% - 12px), 16% 100%, 12% calc(100% - 12px), 8% 100%, 4% calc(100% - 12px), 0 100%);
}
.ticket__hd { text-align: center; border-bottom: 2px dashed rgba(10,9,8,.25); padding-bottom: 1rem; margin-bottom: 1rem; }
.ticket__hd .mark { justify-content: center; }
.ticket__hd .mark__hot, .ticket__hd .mark__soul { color: var(--ink); }
.ticket__meta { font-size: .58rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; opacity: .55; margin-top: .5rem; }
.ticket__lines { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .5rem; min-height: 100px; }
.ticket__lines li { display: flex; gap: .6rem; font-size: .86rem; align-items: baseline; }
.ticket__lines li b { font-weight: 800; font-family: var(--ff-display); font-size: 1rem; letter-spacing: .02em; }
.ticket__lines .k { font-size: .56rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .5; min-width: 52px; }
.ticket__empty { opacity: .45; font-style: italic; font-size: .84rem; }
.ticket__verdict { border-top: 2px dashed rgba(10,9,8,.25); padding-top: 1rem; margin-bottom: 1.1rem; }
.ticket__verdict p { margin: 0; font-family: var(--ff-display); font-size: 1.35rem; text-transform: uppercase; line-height: 1; }
.ticket__verdict small { display: block; margin-top: .4rem; font-size: .72rem; opacity: .6; }

/* ------------------------------------------------------------------ quiz */
.quiz { max-width: 780px; margin-inline: auto; }
.quiz__bar { height: 3px; background: rgba(247,241,228,.16); margin-bottom: 2.4rem; }
.quiz__bar i { display: block; height: 100%; background: var(--ember); width: 0; transition: width .4s var(--ease); }
.quiz__q { font-size: clamp(1.7rem, 4.5vw, 3rem); margin-bottom: 2rem; }
.quiz__opts { display: grid; gap: .7rem; }
.quiz__opt {
  display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left;
  background: none; border: 1px solid rgba(247,241,228,.2); color: var(--cream);
  padding: 1.1rem 1.3rem; cursor: pointer; border-radius: 2px;
  font-family: var(--ff-body); font-size: var(--step-0);
  transition: all .22s var(--ease);
}
.quiz__opt:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: translateX(6px); }
/* Body face, not the display face — Anton's caps are too condensed to read as
   letters at this size and turn into vertical smudges. */
.quiz__opt b {
  font-family: var(--ff-body); font-weight: 800; font-size: .72rem; letter-spacing: .1em;
  opacity: .45; min-width: 1.1em; flex: 0 0 auto;
}
.quiz__opt:hover b { opacity: .7; }
.quiz__step { font-size: .64rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; opacity: .5; margin-bottom: 1rem; }

.result { text-align: center; }
.result__score { font-family: var(--ff-display); font-size: clamp(4rem, 15vw, 9rem); line-height: .85; color: var(--ember); }
.result__nm { font-size: clamp(2.2rem, 7vw, 4.4rem); margin: .4rem 0 .8rem; }
.result__picks { list-style: none; padding: 0; margin: 2rem auto; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; max-width: 640px; }
.result__picks li { border: 1px solid rgba(247,241,228,.26); padding: .5rem .9rem; font-size: .8rem; }

/* ------------------------------------------------------------------ seasoning */
.bottle { width: min(320px, 70vw); margin-inline: auto; filter: drop-shadow(0 30px 46px rgba(0,0,0,.6)); }
.bottle--hero { width: min(380px, 76vw); animation: float 7s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-14px); } }
.goes { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.goes span { border: 1px solid color-mix(in srgb, currentColor 26%, transparent); padding: .45rem .85rem; font-size: .74rem; font-weight: 600; }
.goes span:last-child { background: var(--ember); color: var(--ink); border-color: var(--ember); font-weight: 800; }
.sizes { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .8rem; }
.sizes li { display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.sizes b { font-family: var(--ff-display); font-size: 1.6rem; min-width: 92px; }
.sizes span { opacity: .68; font-size: var(--step--1); }
.sizes i { margin-left: auto; font-style: normal; font-weight: 800; opacity: .45; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

/* ------------------------------------------------------------------ cards */
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.card { background: var(--soot); border: 1px solid rgba(247,241,228,.09); padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; transition: border-color .25s, transform .25s var(--ease); }
.card:hover { border-color: rgba(247,241,228,.28); transform: translateY(-4px); }
.sec--cream .card, .sec--paper .card { background: var(--bone); border-color: rgba(10,9,8,.1); }
.card__k { font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--ember); }
.card__h { font-size: 1.5rem; }
.card__b { font-size: var(--step--1); opacity: .74; margin: 0; }
.card__art { margin: -1.6rem -1.6rem 1rem; background: var(--char); display: grid; place-items: center; padding: 1.2rem; }
.sec--cream .card__art, .sec--paper .card__art { background: var(--paper); }

/* ------------------------------------------------------------------ empty / draft states */
.empty {
  border: 2px dashed color-mix(in srgb, currentColor 26%, transparent);
  padding: clamp(2rem, 5vw, 3.4rem); text-align: center;
}
.empty h3 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .7rem; }
.empty p { opacity: .7; max-width: 52ch; margin-inline: auto; font-size: var(--step--1); }
.ribbon {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-size: .56rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: .26rem .6rem; margin-bottom: .8rem;
}

/* ------------------------------------------------------------------ passport */
.pp { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) { .pp { grid-template-columns: 1fr; } }

/* the card */
.pp__card {
  background: var(--ink); color: var(--cream); padding: 1.7rem 1.5rem;
  border-radius: 6px; position: sticky; top: 96px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  background-image: radial-gradient(ellipse at 100% 0%, rgba(240,21,127,.28), transparent 60%);
}
@media (max-width: 900px) { .pp__card { position: static; } }
.pp__cardtop { display: flex; align-items: center; gap: .8rem; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(247,241,228,.16); }
.pp__crest { font-size: 1.6rem; line-height: 1; }
.pp__issuer { margin: 0; font-size: .56rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .6; }
.pp__doc { margin: .1rem 0 0; font-family: var(--ff-display); font-size: 1.5rem; text-transform: uppercase; }
.pp__ranklbl { margin: 1.2rem 0 .2rem; font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; opacity: .55; }
.pp__rank { margin: 0; font-family: var(--ff-display); font-size: clamp(1.7rem, 4vw, 2.3rem); text-transform: uppercase; color: var(--pink-hot); }
.pp__card .passbar { margin-top: 1rem; }
.pp__meta { margin: 1.4rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid rgba(247,241,228,.14); display: grid; gap: .6rem; }
.pp__meta > div { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.pp__meta dt { font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }
.pp__meta dd { margin: 0; font-family: var(--ff-display); font-size: 1rem; letter-spacing: .04em; }
.pp__actions { display: grid; gap: .55rem; margin-top: 1.4rem; }
.pp__privacy { font-size: .64rem; line-height: 1.6; opacity: .58; margin: 1.1rem 0 0; }

/* tabs */
.pp__tabs { display: flex; gap: .4rem; margin-bottom: 1.6rem; }
.pp__tabs button {
  background: none; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); color: inherit;
  padding: .6rem 1.1rem; border-radius: 100px; cursor: pointer;
  font-family: var(--ff-body); font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  transition: all .22s var(--ease);
}
.pp__tabs button[aria-selected="true"] { background: var(--pink); border-color: var(--pink); color: #fff; }

/* stamps */
.pass { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 1.1rem; }
.stamp {
  display: grid; gap: .5rem; justify-items: center; text-align: center;
  background: none; border: 0; padding: .6rem .3rem; cursor: pointer; color: inherit;
  font-family: inherit;
}
.stamp__svg {
  width: 100%; max-width: 132px; aspect-ratio: 1; display: block;
  color: color-mix(in srgb, currentColor 26%, transparent);
  transform: rotate(0deg) scale(.94);
  transition: color .35s, transform .45s var(--ease), filter .35s;
}
.stamp:hover .stamp__svg { transform: rotate(calc(var(--tilt) * .4)) scale(1); }
.stamp--on .stamp__svg {
  color: var(--pink);
  transform: rotate(var(--tilt)) scale(1);
  filter: drop-shadow(0 3px 10px color-mix(in srgb, var(--pink) 40%, transparent));
  animation: stampIn .5s cubic-bezier(.2,1.5,.4,1) both;
}
@keyframes stampIn {
  0% { transform: rotate(var(--tilt)) scale(1.9); opacity: 0; }
  55% { transform: rotate(var(--tilt)) scale(.92); opacity: 1; }
  100% { transform: rotate(var(--tilt)) scale(1); }
}
.stamp__cap { display: grid; gap: .18rem; }
.stamp__n { font-family: var(--ff-display); font-size: .95rem; line-height: 1.05; text-transform: uppercase; }
.stamp--on .stamp__n { color: var(--pink-deep); }
.stamp__h { font-size: .6rem; opacity: .62; line-height: 1.35; }
.stamp__on { font-size: .55rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); min-height: .8em; }

.passbar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.passbar__track { flex: 1 1 140px; height: 6px; border-radius: 3px; background: color-mix(in srgb, currentColor 16%, transparent); overflow: hidden; }
.passbar__track i { display: block; height: 100%; background: linear-gradient(90deg, var(--pink), var(--gold)); transition: width .6s var(--ease); }

/* plate log */
.pp__logform { display: grid; grid-template-columns: 1fr auto; gap: .7rem; align-items: end; margin-bottom: 1.4rem; }
@media (max-width: 560px) { .pp__logform { grid-template-columns: 1fr; } }
.pp__log { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; counter-reset: p; }
.pp__log li {
  display: flex; align-items: baseline; gap: .9rem; padding: .8rem 1rem;
  background: color-mix(in srgb, currentColor 5%, transparent);
  border-left: 3px solid var(--pink);
}
.pp__logwhen { font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .55; white-space: nowrap; }
.pp__logwhat { font-weight: 600; flex: 1; }
.pp__logdel { background: none; border: 0; color: inherit; opacity: .4; cursor: pointer; font-size: 1.2rem; line-height: 1; padding: 0 .2rem; }
.pp__logdel:hover { opacity: 1; color: var(--red); }
.pp__logempty { border-left-color: transparent !important; opacity: .5; font-style: italic; }

/* transfer dialog */
.pp__dlg { border: 0; border-radius: 6px; padding: clamp(1.5rem, 4vw, 2.2rem); max-width: 520px; width: calc(100% - 2rem); background: var(--ink); color: var(--cream); }
.pp__dlg::backdrop { background: rgba(10,9,8,.82); backdrop-filter: blur(4px); }
.pp__dlg h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.pp__dlg p { font-size: var(--step--1); opacity: .78; }
.pp__dlg textarea {
  width: 100%; margin-top: .6rem; background: rgba(247,241,228,.07); color: var(--cream);
  border: 1px solid rgba(247,241,228,.22); border-radius: 3px; padding: .7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; resize: vertical;
}
.pp__dlgrow { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .7rem; }
.pp__dlg hr { border: 0; border-top: 1px solid rgba(247,241,228,.14); margin: 1.4rem 0; }

/* ------------------------------------------------------------------ forms */
.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .72; }
.field input, .field textarea, .field select {
  background: color-mix(in srgb, currentColor 6%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  color: inherit; font-family: var(--ff-body); font-size: var(--step-0);
  padding: .9rem 1rem; border-radius: 2px; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ember); }
.field textarea { min-height: 130px; resize: vertical; }
.field--err input, .field--err textarea { border-color: var(--red); }
.field__err { font-size: .72rem; color: var(--red); font-weight: 600; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.formnote { font-size: .72rem; opacity: .6; }

.ftr__sub { margin-top: 1.2rem; }
.ftr__sub label { display: block; font-size: .68rem; font-weight: 700; opacity: .72; margin-bottom: .5rem; }
.ftr__subrow { display: flex; gap: .4rem; }
.ftr__subrow input { flex: 1; background: rgba(247,241,228,.07); border: 1px solid rgba(247,241,228,.2); color: var(--cream); padding: .8rem .9rem; border-radius: 2px; font-family: var(--ff-body); min-width: 0; }
.ftr__note { font-size: .68rem; opacity: .68; margin: .5rem 0 0; min-height: 1.1em; }

/* ------------------------------------------------------------------ footer */
.ftr { background: var(--char); border-top: 1px solid rgba(247,241,228,.1); padding-top: clamp(4rem, 8vw, 7rem); }
.ftr__hero { width: var(--shell); margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.ftr__logo { width: min(230px, 52vw); height: auto; margin: 0 auto 1.8rem; filter: drop-shadow(0 16px 40px rgba(0,0,0,.6)); }
.ftr__eyebrow { font-size: .68rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--ember); margin: 0 0 1rem; }
.ftr__h { font-size: var(--h-md); }
.ftr__grid { width: var(--shell); margin-inline: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2.6rem; padding-bottom: 3.5rem; }
.ftr__col h3 { font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 1.1rem; color: var(--cream); }
.ftr__col address { font-style: normal; line-height: 1.6; margin-bottom: 1.1rem; opacity: .82; }
.ftr__ph { margin: 1.1rem 0 .2rem; font-family: var(--ff-display); font-size: 1.6rem; }
.ftr__ph a, .ftr__em a { text-decoration: none; }
.ftr__ph a:hover { color: var(--ember); }
.ftr__em { font-size: .8rem; opacity: .62; margin: 0; word-break: break-word; }
.ftr__soft { font-size: var(--step--1); opacity: .68; margin: 0 0 1.1rem; }
.ftr__hours { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.ftr__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .84rem; border-bottom: 1px solid rgba(247,241,228,.08); padding-bottom: .5rem; }
.ftr__links, .ftr__soc { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.ftr__links a, .ftr__soc a { text-decoration: none; font-size: .86rem; opacity: .78; }
.ftr__links a:hover, .ftr__soc a:hover { opacity: 1; color: var(--ember); }
.ftr__base {
  border-top: 1px solid rgba(247,241,228,.1); padding: 1.6rem 0; width: var(--shell); margin-inline: auto;
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; font-size: .74rem; opacity: .6;
}
.ftr__base p { margin: 0; }
.ftr__mark { text-decoration: none; }
.ftr__know { margin-left: auto !important; font-family: var(--ff-display); font-size: 1rem; color: var(--ember); opacity: 1; }

/* ==========================================================================
   THE JOURNAL
   ========================================================================== */

.feat {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; text-decoration: none;
  background: var(--soot); border: 1px solid rgba(247,241,228,.1); overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease);
}
.feat:hover { border-color: var(--pink); transform: translateY(-4px); }
/* The scenes are 1200x750 and fill via preserveAspectRatio="slice", so the
   containers set the crop. Without an explicit ratio the grid cell collapses
   and the artwork letterboxes into an empty band. */
.feat__art { overflow: hidden; min-height: 320px; }
.feat__art svg { width: 100%; height: 100%; min-height: 320px; display: block; transition: transform .8s var(--ease); }
@media (max-width: 880px) { .feat__art, .feat__art svg { min-height: 0; aspect-ratio: 16/9; } }
.feat:hover .feat__art svg { transform: scale(1.05); }
.feat__body { padding: clamp(1.8rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; gap: .9rem; }
.feat__k { font-size: .64rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--pink-hot); margin: 0; }
.feat__h { font-size: clamp(1.9rem, 4vw, 3.2rem); }
.feat__d { margin: 0; opacity: .74; font-size: var(--step-0); max-width: 44ch; }
.feat__go { font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: .4rem; }
@media (max-width: 880px) { .feat { grid-template-columns: 1fr; } }

.jgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.jcard {
  display: flex; flex-direction: column; text-decoration: none; min-width: 0;
  background: var(--soot); border: 1px solid rgba(247,241,228,.1); overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease);
}
.jcard:hover { border-color: var(--pink); transform: translateY(-5px); }
.jcard__art { overflow: hidden; aspect-ratio: 16/10; }
.jcard__art svg { width: 100%; height: 100%; display: block; transition: transform .7s var(--ease); }
.jcard:hover .jcard__art svg { transform: scale(1.06); }
.jcard__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.jcard__k { font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--pink-hot); margin: 0; }
.jcard__h { font-size: 1.55rem; }
.jcard__d { margin: 0; font-size: var(--step--1); opacity: .72; }
.jcard__go { margin-top: auto; padding-top: .8rem; font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* --- the article --- */
.art__art { position: relative; max-height: 68svh; overflow: hidden; }
.art__art svg { width: 100%; display: block; }
.art__art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink) 3%, rgba(10,9,8,.6) 32%, transparent 66%);
}
.art__head { width: var(--shell-tight); margin: -7rem auto 0; position: relative; z-index: 2; }
@media (max-width: 700px) { .art__head { margin-top: -3rem; } }
.art__kicker { font-size: .66rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--pink-hot); margin: 0 0 1rem; }
.art__title { font-size: clamp(2.4rem, 6.5vw, 5rem); }
.art__dek { margin: 1.2rem 0 0; font-size: var(--step-1); line-height: 1.5; opacity: .8; max-width: 44ch; }

.art__body { width: var(--shell-tight); margin: clamp(2.5rem, 6vw, 4rem) auto 0; padding-bottom: clamp(3rem, 6vw, 5rem); }
.art__body > p { font-size: 1.14rem; line-height: 1.75; margin: 0 0 1.5rem; color: color-mix(in srgb, var(--cream) 88%, transparent); }
.art__body > p strong { color: var(--cream); }
.art__body > p em { color: var(--gold); font-style: italic; }
.art__h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin: 3rem 0 1.2rem; color: var(--cream); }
.art__ul { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .7rem; }
.art__ul li { position: relative; padding-left: 1.7rem; font-size: 1.05rem; line-height: 1.6; opacity: .86; }
.art__ul li::before { content: ''; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; background: var(--pink); }
.art__q { margin: 2.4rem 0; padding: 1.4rem 0 1.4rem 1.8rem; border-left: 4px solid var(--pink); }
.art__q p { margin: 0; font-family: var(--ff-display); font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: 1.15; text-transform: uppercase; color: var(--gold); }
.art__note, .art__gate {
  background: color-mix(in srgb, var(--gold) 9%, transparent);
  border-left: 4px solid var(--gold); padding: 1.4rem 1.6rem; margin: 0 0 2.4rem;
  font-size: var(--step--1); line-height: 1.65;
}
.art__gate p { margin: 0; opacity: .86; }
.art__end { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(247,241,228,.14); text-align: center; }
.art__endmark { font-family: var(--ff-display); font-size: clamp(1.6rem, 4vw, 2.4rem); text-transform: uppercase; color: var(--pink-hot); margin: 0 0 1.6rem; }

.art__next { width: var(--shell-tight); margin: 0 auto; padding-bottom: clamp(3rem, 7vw, 5rem); display: grid; gap: 1rem; }
.art__next > a:first-child {
  display: grid; gap: .5rem; text-decoration: none; padding: 1.8rem;
  background: var(--soot); border: 1px solid rgba(247,241,228,.12);
  transition: border-color .3s, transform .3s var(--ease);
}
.art__next > a:first-child:hover { border-color: var(--pink); transform: translateY(-3px); }
.art__nextk { font-size: .62rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--pink-hot); }
.art__nexth { font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2rem); text-transform: uppercase; }
.art__back { justify-self: start; text-decoration: none; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.art__back:hover { opacity: 1; color: var(--pink-hot); }

/* ------------------------------------------------------------------ reveal
   Scoped to .js on purpose. If the script fails to parse, 404s, or is blocked,
   the `.js` class is never set and every .rv element renders normally — a
   broken script must never leave a restaurant with a blank page. */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .rv--in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hdr__nav { display: none; }
  .burger { display: block; }
  .hdr__order { display: none; }
  .ticket { position: static; }
}
/* Keep the sound label until there is genuinely no room for it — an icon-only
   control here is what made it unreadable in the first place. */
@media (max-width: 560px) {
  .sndbtn__t { display: none; }
  .sndbtn { padding: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .marq__t { animation: none; }
  .bottle--hero { animation: none; }
  .hero__cards { display: none; }
}

/* ==========================================================================
   BOOK PEBBLES
   Built to the supplied flyer: black ground, gold headline, hot-pink name.
   Live type rather than a flat image export, so it stays sharp at any width
   and the phone number is a real tap-to-call link instead of pixels.
   ========================================================================== */
.peb {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.6rem, 9vw, 7rem) 0;
  background:
    radial-gradient(120% 90% at 50% 0%, #241a10 0%, transparent 60%),
    linear-gradient(180deg, #0A0806 0%, #14100B 45%, #0A0806 100%);
  text-align: center;
}
.peb--page { padding-top: clamp(5rem, 12vw, 9rem); }

/* The warm city-light bloom behind the type. */
.peb__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 22% 40%, rgba(255, 106, 19, .22) 0%, transparent 70%),
    radial-gradient(46% 55% at 78% 30%, rgba(240, 21, 127, .18) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.peb__in { position: relative; }

/* The heading is carried by the artwork visually, so it is present for screen
   readers and search engines rather than painted twice. */
.peb__sr {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* The banner artwork. */
.peb__frame {
  display: block;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 2px solid rgba(255, 194, 74, .5);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 60px rgba(240, 21, 127, .12);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.peb__art { display: block; width: 100%; height: auto; }

/* Only the homepage instance is a link — on the booking page you're already there. */
.peb__frame--link:hover,
.peb__frame--link:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .68), 0 0 80px rgba(240, 21, 127, .22);
}
@media (prefers-reduced-motion: reduce) {
  .peb__frame { transition: none; }
  .peb__frame--link:hover, .peb__frame--link:focus-visible { transform: none; }
}

.peb__ico { width: clamp(28px, 6vw, 44px); height: auto; color: var(--gold); }

/* The phones-only readable restatement of what the flyer says in type. */
.peb__say { display: none; }
@media (max-width: 719px) {
  .peb__say { display: block; margin-top: 1.4rem; }
  /* Edge-to-edge on a phone: every pixel of width is legibility. */
  .peb__frame { width: 100vw; margin-inline: calc(50% - 50vw); border-left: 0; border-right: 0; border-radius: 0; }
}
.peb__saytag {
  margin: 0 auto;
  max-width: 30ch;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
}
.peb__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem .8rem;
  width: min(420px, 100%);
  margin: 1.5rem auto 0;
  padding: 0;
  list-style: none;
}
.peb__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(247, 241, 228, .92);
}
.peb__cardico { display: inline-flex; color: var(--pink-hot); }
.peb__cardico .peb__ico { width: 52px; }

/* The number as selectable, tappable text — deliberately quiet, because the
   artwork above already shouts it. */
.peb__direct {
  margin: 1.1rem 0 0;
  font-size: clamp(.72rem, .64rem + .4vw, .88rem);
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(247, 241, 228, .75);
}
.peb__direct strong { color: var(--cream); }
.peb__direct em { font-style: italic; opacity: .7; }

/* ---------------------------------------------------------------- tour board
   Type is deliberately larger than a normal list: these rows now sit beside
   full event flyers, and small text next to a poster reads as a caption rather
   than as the booking information it actually is. */
.tour { list-style: none; margin: 0; padding: 0; width: min(1000px, 100%); margin-inline: auto; }
.tour__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem .4rem;
  border-bottom: 1px solid rgba(10, 9, 8, .14);
}
.tour__row:first-child { border-top: 1px solid rgba(10, 9, 8, .14); }
/* Rows carrying a flyer put it alongside on wider screens. */
.tour__row--art { grid-template-columns: minmax(160px, 220px) 1fr; }

.tour__flyer {
  display: block;
  border: 2px solid rgba(10, 9, 8, .18);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tour__flyer img { width: 100%; height: auto; display: block; }
.tour__flyer:hover, .tour__flyer:focus-visible {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .36);
}
@media (prefers-reduced-motion: reduce) {
  .tour__flyer { transition: none; }
  .tour__flyer:hover, .tour__flyer:focus-visible { transform: none; }
}

.tour__main { display: flex; flex-direction: column; gap: .3rem; }
.tour__when {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, .95rem + .9vw, 1.7rem);
  letter-spacing: .02em;
  color: var(--red);
}
.tour__city {
  font-size: clamp(1.3rem, 1rem + 1.3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.tour__venue {
  font-size: clamp(.95rem, .88rem + .35vw, 1.15rem);
  font-weight: 600;
  opacity: .88;
}
.tour__meta { font-size: clamp(.86rem, .8rem + .3vw, 1rem); opacity: .66; }
.tour__meta--bill { font-style: italic; }

.tour__acts { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; margin-top: .7rem; }
.tour__tix {
  font-size: clamp(.72rem, .66rem + .25vw, .84rem);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: .5rem .95rem;
  background: var(--gold);
  border-radius: 2px;
  white-space: nowrap;
}
.tour__tix:hover, .tour__tix:focus-visible { background: #FFD880; }
.tour__cta {
  font-size: clamp(.72rem, .66rem + .25vw, .82rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.tour__cta:hover, .tour__cta:focus-visible { border-bottom-color: var(--red); }

/* An unfinished date must LOOK unfinished, not just say so in a footnote. */
.tour__row--tbc { opacity: .72; }
.tour__tbc {
  font-size: clamp(.66rem, .6rem + .25vw, .76rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: .38rem .7rem;
  border: 1px dashed rgba(10, 9, 8, .4);
  border-radius: 2px;
}

@media (max-width: 700px) {
  /* Stack, and cap the flyer so a portrait poster can't eat the whole screen. */
  .tour__row, .tour__row--art { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem .2rem; }
  .tour__flyer { max-width: 300px; margin-inline: auto; width: 100%; }
}

/* ----------------------------------------------------------------- services */
.svc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem 2rem;
  width: min(1000px, 100%);
  margin-inline: auto;
}
.svc__col { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; align-content: start; }
.svc__col li {
  padding: .62rem .9rem;
  border: 1px solid rgba(247, 241, 228, .16);
  border-radius: 2px;
  background: rgba(247, 241, 228, .04);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.svc__more {
  margin: 1.6rem 0 0;
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, .9rem + 1.6vw, 2rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ------------------------------------------------------------------ contact */
.peb--contact { padding-block: clamp(3rem, 7vw, 5rem); }
.peb__agentbig {
  margin: .4rem 0 0;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 1rem + 3vw, 3.2rem);
  letter-spacing: .02em;
  color: var(--cream);
}
.peb__agentbig em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: .42em;
  letter-spacing: 0;
  color: var(--gold);
  vertical-align: .35em;
  margin-left: .3em;
}
.peb__role {
  margin: .1rem 0 0;
  font-size: clamp(.64rem, .54rem + .4vw, .8rem);
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247, 241, 228, .68);
}
.peb__lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 2rem;
  margin-top: 1.4rem;
}
.peb__line {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, .8rem + 1.4vw, 1.9rem);
  letter-spacing: .02em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease);
  word-break: break-word;
}
.peb__line:hover, .peb__line:focus-visible { border-bottom-color: var(--gold); }
.peb__direct a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 194, 74, .45);
  transition: border-color .2s var(--ease);
}
.peb__direct a:hover, .peb__direct a:focus-visible { border-bottom-color: var(--gold); }

.peb__closer {
  margin: clamp(1.4rem, 3vw, 2rem) 0 0;
  font-size: clamp(.62rem, .5rem + .5vw, .82rem);
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(247, 241, 228, .72);
}


@media print {
  .hdr, .mbar, .drawer, .hero__cards, .sndbtn { display: none !important; }
  body { background: #fff; color: #000; }
}
