/* ==========================================================================
   Stadium 1 BBQ & More — site styles
   Palette sampled from the logo: char ground + ember→gold heat ramp.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ground — warm-biased blacks, never pure #000 */
  --char:        #0c0908;
  --coal:        #16100d;
  --soot:        #1e1613;
  --ash:         #2e231d;

  /* Warm paper — the hospitality half of the brand */
  --cream:       #f7efe2;
  --cream-deep:  #ece0cd;
  --ink:         #1a1310;

  /* The heat ramp. Used as a gradient, not as flat accents. */
  --ember-deep:  #b3200e;
  --ember:       #ef5f0c;
  --flame:       #ff8a1f;
  --gold:        #ffc02e;
  --white-hot:   #ffe9a8;

  --smoke:       #a2938a;
  /* Light enough to clear 4.5:1 on every dark surface we use, since this
     colour carries small labels, notes and table headers. */
  --smoke-dim:   #968779;

  --ramp: linear-gradient(100deg, var(--ember-deep) 0%, var(--ember) 34%, var(--flame) 58%, var(--gold) 82%, var(--white-hot) 100%);
  --ramp-v: linear-gradient(to top, var(--ember-deep) 0%, var(--ember) 45%, var(--flame) 72%, var(--gold) 100%);
  /* Button ramp starts at ember, not the deep red — dark label text only
     reaches 2.7:1 against #b3200e but clears 5.4:1 from ember upward. */
  --ramp-btn: linear-gradient(100deg, var(--ember) 0%, var(--flame) 45%, var(--gold) 100%);

  /* Type */
  --display: "Big Shoulders Display", "Haettenschweiler", "Arial Narrow", sans-serif;
  --body:    "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ticket:  "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.4rem);
  --step-4:  clamp(2.8rem, 1.9rem + 4.4vw, 6rem);
  --step-5:  clamp(3.4rem, 2rem + 7vw, 9rem);

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --measure: 62ch;
  --shell: 1240px;

  --r-sm: 4px;
  --r:    10px;
  --r-lg: 18px;

  --ease: cubic-bezier(.22, .68, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--char);
  color: var(--cream);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

.skip-link {
  position: absolute; left: 0; top: -100px;
  background: var(--gold); color: var(--ink);
  padding: 0.75rem 1.25rem; z-index: 200;
  font-family: var(--ticket); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--wide { width: min(100% - (var(--gutter) * 2), 1480px); }

.band { padding-block: clamp(3.5rem, 9vw, 7.5rem); position: relative; }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.band--cream { background: var(--cream); color: var(--ink); }
.band--coal  { background: var(--coal); }

/* Hairline of heat between bands */
.band--cream + .band, .band + .band--cream { border-top: none; }

.rule {
  height: 3px; border: 0; margin: 0;
  background: var(--ramp);
}
.rule--thin { height: 2px; opacity: 0.7; }

/* --------------------------------------------------------------------------
   4. Typographic components
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--ticket);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--flame);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--ramp);
  flex: none;
}
.band--cream .eyebrow { color: var(--ember-deep); }

.h-xl { font-size: var(--step-5); }
.h-lg { font-size: var(--step-4); }
.h-md { font-size: var(--step-3); }
.h-sm { font-size: var(--step-2); }

.lede {
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--smoke);
  max-width: 46ch;
  font-weight: 400;
}
.band--cream .lede { color: #59493f; }

.prose { max-width: var(--measure); }
.prose p + p { margin-top: 0.4rem; }

/* Heat-filled headline word */
.hot {
  background: var(--ramp);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--ticket);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 2px solid var(--ash);
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--fire {
  border-color: transparent;
  background: var(--ramp-btn);
  background-size: 180% 100%;
  background-position: 0% 50%;
  color: #22120a;
  transition: transform .18s var(--ease), background-position .45s var(--ease);
}
.btn--fire:hover { background-position: 100% 50%; }

.btn--ghost { border-color: rgba(247,239,226,.28); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.band--cream .btn--ghost { border-color: rgba(26,19,16,.22); color: var(--ink); }
.band--cream .btn--ghost:hover { border-color: var(--ember-deep); color: var(--ember-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,9,8,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247,239,226,.09);
}
.masthead__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 8px; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-weight: 800;
  font-size: 1.32rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--cream);
}
.brand__sub {
  font-family: var(--ticket); font-size: 0.56rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--flame); margin-top: 3px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.9rem; }
.nav__link {
  font-family: var(--ticket); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.13em;
  text-decoration: none; color: var(--smoke);
  padding: 0.4rem 0; position: relative;
  transition: color .18s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--cream); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ramp);
}

.nav__cta { margin-left: 0.4rem; padding: 0.7rem 1.2rem; }

.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px;
  background: none; border: 1px solid rgba(247,239,226,.2);
  border-radius: var(--r-sm); cursor: pointer;
  padding: 0; place-items: center;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--cream); margin: 3.5px auto;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: grid; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--coal);
    border-bottom: 1px solid rgba(247,239,226,.1);
    padding: 0.5rem var(--gutter) 1.75rem;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link { padding: 1rem 0; border-bottom: 1px solid rgba(247,239,226,.08); font-size: 0.95rem; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__cta { margin: 1.25rem 0 0; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--char) 4%, rgba(12,9,8,.86) 32%, rgba(12,9,8,.52) 66%, rgba(12,9,8,.72) 100%),
    radial-gradient(90% 70% at 15% 82%, rgba(239,95,12,.22), transparent 62%);
}
/* Photo-free hero. Used where we have no real photograph of Shon's food
   rather than filling the space with stock. Ember glow off the bottom
   left, with charcoal grate lines rising out of it. */
.hero--type {
  background:
    radial-gradient(115% 85% at 10% 105%, rgba(239,95,12,.30), transparent 62%),
    radial-gradient(75% 60% at 88% -10%, rgba(255,192,46,.10), transparent 65%),
    var(--char);
}
.hero--type::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: repeating-linear-gradient(90deg,
    rgba(247,239,226,.055) 0 1px, transparent 1px 44px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 68%);
  mask-image: linear-gradient(to top, #000 0%, transparent 68%);
  pointer-events: none;
}

/* For high-key photographs that would otherwise fight the headline. */
.hero--bright .hero__media::after {
  background:
    linear-gradient(to right, rgba(12,9,8,.94) 0%, rgba(12,9,8,.82) 38%, rgba(12,9,8,.42) 78%, rgba(12,9,8,.55) 100%),
    linear-gradient(to top, var(--char) 3%, rgba(12,9,8,.7) 30%, rgba(12,9,8,.4) 70%, rgba(12,9,8,.65) 100%);
}
@media (max-width: 760px) {
  .hero--bright .hero__media::after {
    background: linear-gradient(to top, var(--char) 3%, rgba(12,9,8,.88) 30%, rgba(12,9,8,.78) 100%);
  }
}
.hero__inner {
  padding-block: clamp(5rem, 15vh, 9rem) clamp(3.5rem, 8vh, 6rem);
  min-height: min(86vh, 780px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero h1 {
  font-size: var(--step-5);
  max-width: 15ch;
  margin-bottom: 1.5rem;
}
.hero .lede { max-width: 44ch; color: #d6c9bd; margin-bottom: 2.2rem; }

/* Ticket strip of hard facts */
.facts {
  display: flex; flex-wrap: wrap;
  font-family: var(--ticket);
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--smoke);
  border-top: 1px solid rgba(247,239,226,.14);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.1rem;
  gap: 0.6rem 2rem;
}
.facts b { color: var(--gold); font-weight: 700; }

/* --------------------------------------------------------------------------
   8. Two-door split (catering | plates)
   -------------------------------------------------------------------------- */
.doors { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .doors { grid-template-columns: 1fr; } }

.door {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 380px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none; color: var(--cream);
  border: 1px solid rgba(247,239,226,.1);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.door:hover { transform: translateY(-5px); border-color: rgba(255,192,46,.45); }
.door img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.door:hover img { transform: scale(1.05); }
.door::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,9,8,.95) 12%, rgba(12,9,8,.55) 55%, rgba(12,9,8,.25) 100%);
}
.door h3 { font-size: var(--step-3); margin-bottom: 0.6rem; }
.door p { color: #cdbfb3; max-width: 34ch; margin-bottom: 1.2rem; font-size: 0.96rem; }
.door__go {
  font-family: var(--ticket); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem;
}
.door__go span { transition: transform .25s var(--ease); display: inline-block; }
.door:hover .door__go span { transform: translateX(5px); }

/* Photo-free door. Same grate-and-ember language as .hero--type. */
.door--type {
  background:
    radial-gradient(105% 80% at 8% 108%, rgba(239,95,12,.30), transparent 62%),
    linear-gradient(170deg, var(--soot), var(--char) 72%);
}
.door--type::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: repeating-linear-gradient(90deg,
    rgba(247,239,226,.06) 0 1px, transparent 1px 38px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 72%);
  mask-image: linear-gradient(to top, #000 0%, transparent 72%);
}
.door--type::after { display: none; }
.door--type { min-height: 300px; }

/* Second door reads warmer, so the pair doesn't look like a mistake. */
.door--type.door--gold {
  background:
    radial-gradient(105% 80% at 92% 108%, rgba(255,192,46,.24), transparent 62%),
    linear-gradient(190deg, var(--soot), var(--char) 72%);
}

/* --------------------------------------------------------------------------
   9. Section heading block
   -------------------------------------------------------------------------- */
.head {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,auto);
  gap: 1.5rem 3rem; align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
@media (max-width: 760px) { .head { grid-template-columns: 1fr; align-items: start; } }

/* --------------------------------------------------------------------------
   10. Dish grid
   -------------------------------------------------------------------------- */
.dishes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.dish {
  border-radius: var(--r); overflow: hidden;
  background: var(--soot);
  border: 1px solid rgba(247,239,226,.09);
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.dish:hover { border-color: rgba(255,138,31,.4); transform: translateY(-3px); }
.dish__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ash); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; }
.dish__body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.dish h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.dish p { color: var(--smoke); font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.9rem; }
.dish__price {
  margin-top: auto;
  font-family: var(--ticket); font-size: 0.78rem;
  color: var(--gold); letter-spacing: 0.04em;
}
.dish__tag {
  display: inline-block;
  font-family: var(--ticket); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--flame); border: 1px solid rgba(255,138,31,.4);
  padding: 0.2rem 0.5rem; border-radius: 2px; margin-bottom: 0.7rem;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   11. Story / word-of-mouth
   -------------------------------------------------------------------------- */
.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}
.split__media img { border-radius: var(--r-lg); width: 100%; }

.stat {
  border-left: 3px solid transparent;
  border-image: var(--ramp-v) 1;
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.stat__num {
  font-family: var(--display); font-weight: 800;
  font-size: var(--step-4); line-height: 0.9;
  background: var(--ramp); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  font-family: var(--ticket); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--smoke-dim); margin-top: 0.5rem;
}
.band--cream .stat__label { color: #6b5a4e; }

/* --------------------------------------------------------------------------
   12. Steps
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); counter-reset: step; }
.step {
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(247,239,226,.1);
  border-radius: var(--r);
  background: var(--soot);
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--ticket); font-size: 0.75rem; font-weight: 700;
  color: var(--ember); letter-spacing: 0.1em;
  display: block; margin-bottom: 0.9rem;
}
/* Numbers belong on a real sequence. Lists of qualities or facts get a
   heat mark instead, so the order doesn't imply a ranking. */
.steps--plain .step::before {
  content: "";
  width: 24px; height: 3px;
  background: var(--ramp);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: var(--smoke); font-size: 0.9rem; line-height: 1.5; }
.band--cream .step { background: #fff; border-color: rgba(26,19,16,.1); }
.band--cream .step p { color: #6b5a4e; }

/* --------------------------------------------------------------------------
   13. THE COOKOUT BUILDER  (signature)
   -------------------------------------------------------------------------- */
.builder {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
/* Grid and flex children default to min-width:auto, which lets long
   content push the layout wider than the viewport. */
.builder > *, .split > *, .head > *, .footer__grid > * { min-width: 0; }
@media (max-width: 940px) { .builder { grid-template-columns: 1fr; } }

.panel {
  background: var(--soot);
  border: 1px solid rgba(247,239,226,.11);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.field + .field { margin-top: 2.1rem; }

.field__label {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 0.9rem;
}
.field__label h3 { font-size: 1.28rem; }
.field__hint {
  font-family: var(--ticket); font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--smoke-dim);
}

/* Guest slider */
.guests { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.guests__count {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.8rem); line-height: 0.85;
  background: var(--ramp); -webkit-background-clip: text; background-clip: text; color: transparent;
  min-width: 3.4ch;
  font-variant-numeric: tabular-nums;
}
.guests__unit {
  font-family: var(--ticket); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--smoke-dim);
}

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 30px; background: none; cursor: pointer; margin: 0;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 8px; border-radius: 99px;
  background: linear-gradient(to right, var(--ember-deep), var(--flame) var(--fill, 40%), rgba(247,239,226,.13) var(--fill, 40%));
}
input[type="range"]::-moz-range-track {
  height: 8px; border-radius: 99px; background: rgba(247,239,226,.13);
}
input[type="range"]::-moz-range-progress {
  height: 8px; border-radius: 99px; background: linear-gradient(to right, var(--ember-deep), var(--flame));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; margin-top: -9px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--char);
  box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(255,192,46,.55);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--char);
  box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(255,192,46,.55);
}

/* Choice chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: block;
  padding: 0.62rem 1.05rem;
  border: 1px solid rgba(247,239,226,.2);
  border-radius: 99px;
  font-size: 0.87rem;
  color: var(--smoke);
  cursor: pointer;
  transition: border-color .18s var(--ease), color .18s var(--ease), background-color .18s var(--ease);
  user-select: none;
}
.chip span:hover { border-color: rgba(255,192,46,.5); color: var(--cream); }
.chip input:checked + span {
  background: rgba(239,95,12,.16);
  border-color: var(--flame);
  color: var(--white-hot);
}
.chip input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 3px; }
.chip input:disabled + span { opacity: 0.35; cursor: not-allowed; }

/* ---- The pan build (the signature moment) ---- */
.ticket {
  position: sticky; top: 96px;
  background: var(--coal);
  border: 1px solid rgba(255,138,31,.28);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 940px) { .ticket { position: static; } }

.ticket__top {
  padding: 1.3rem clamp(1.2rem, 3vw, 1.75rem);
  border-bottom: 1px dashed rgba(247,239,226,.2);
}
.ticket__title {
  font-family: var(--ticket); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--smoke-dim); margin-bottom: 0.9rem;
}
.ticket__range {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3rem); line-height: 0.9;
  background: var(--ramp); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.ticket__per {
  font-family: var(--ticket); font-size: 0.72rem;
  color: var(--smoke); margin-top: 0.6rem; letter-spacing: 0.04em;
}
.ticket__note {
  font-family: var(--body); font-size: 0.8rem; line-height: 1.45;
  color: var(--smoke-dim); margin-top: 0.8rem;
}

.ticket__body { padding: 1.3rem clamp(1.2rem, 3vw, 1.75rem); }

.pans { display: flex; flex-direction: column; gap: 0.85rem; margin: 0; padding: 0; list-style: none; }

.pan { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1rem; align-items: center; }
.pan__name {
  font-family: var(--ticket); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cream);
}
.pan__price {
  font-family: var(--ticket); font-size: 0.76rem;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.pan__vis {
  grid-column: 1 / -1;
  display: flex; gap: 4px 6px; align-items: center; flex-wrap: wrap;
  min-width: 0;
}
/* Each unit is a drawn steam-table pan, sized to its real fraction */
.pan__unit {
  height: 15px;
  border-radius: 2px 2px 4px 4px;
  background: var(--ramp);
  position: relative;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.3);
}
.pan__unit--full  { flex: 3; }
.pan__unit--half  { flex: 1.5; }
.pan__unit--third { flex: 1; }
.pan__unit--lb    { flex: 1.2; }
.pan__unit--pc    { flex: 1.2; }
.pan__spacer { flex: 1 1 12px; min-width: 0; }
.pan__qty {
  font-family: var(--ticket); font-size: 0.62rem;
  color: var(--smoke-dim); letter-spacing: 0.08em;
  margin-left: auto; text-align: right;
}
@media (max-width: 520px) {
  .pan__spacer { display: none; }
  .pan__qty { flex: 1 0 100%; margin-left: 0; text-align: left; margin-top: 2px; }
}

.ticket__empty {
  color: var(--smoke-dim); font-size: 0.88rem; line-height: 1.5;
  padding: 0.5rem 0 0.2rem;
}

.ticket__foot {
  padding: 1.2rem clamp(1.2rem, 3vw, 1.75rem) 1.5rem;
  border-top: 1px dashed rgba(247,239,226,.2);
}
.ticket__foot .btn { width: 100%; }
.ticket__legal {
  font-family: var(--ticket); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--smoke-dim); text-align: center; margin-top: 0.9rem; line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. Menu tables
   -------------------------------------------------------------------------- */
/* Keeping the price list narrower stops the prices drifting miles away
   from the dish names on a wide screen. */
.menu-group { max-width: 880px; }
.menu-group + .menu-group { margin-top: clamp(2.75rem, 6vw, 4.5rem); }

.menu-group__head {
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 2px solid rgba(247,239,226,.15);
  padding-bottom: 0.85rem; margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.menu-group__head h2 { font-size: var(--step-2); }
.menu-group__head p {
  font-family: var(--ticket); font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--smoke-dim); margin: 0 0 0 auto;
}

.menu-table { width: 100%; border-collapse: collapse; }
.menu-table caption { text-align: left; }
.menu-table th {
  font-family: var(--ticket); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--smoke-dim); text-align: right; font-weight: 400;
  padding: 0.9rem 0.5rem 0.7rem;
  border-bottom: 1px solid rgba(247,239,226,.1);
}
.menu-table th:first-child { text-align: left; }
.menu-table td {
  padding: 0.95rem 0.5rem;
  border-bottom: 1px solid rgba(247,239,226,.08);
  text-align: right;
  font-family: var(--ticket); font-size: 0.85rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-table td:first-child {
  text-align: left; font-family: var(--body); font-size: 1rem;
  color: var(--cream); white-space: normal;
}
.menu-table tr:hover td { background: rgba(255,138,31,.05); }
.menu-item__note { display: block; font-size: 0.8rem; color: var(--smoke-dim); margin-top: 0.15rem; }

/* The same price list on a cream band. Without these the dish names are
   cream on cream and disappear. */
.band--cream .menu-group__head { border-bottom-color: rgba(26,19,16,.22); }
.band--cream .menu-group__head p { color: #6b5a4e; }
.band--cream .menu-table th { color: #6b5a4e; border-bottom-color: rgba(26,19,16,.16); }
.band--cream .menu-table td { color: #a8330b; border-bottom-color: rgba(26,19,16,.12); }
.band--cream .menu-table td:first-child { color: var(--ink); }
.band--cream .menu-table tr:hover td { background: rgba(179,32,14,.05); }
.band--cream .menu-item__note { color: #6b5a4e; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------------------------
   15. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.form label {
  display: block;
  font-family: var(--ticket); font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--smoke); margin-bottom: 0.5rem;
}
.form .req { color: var(--flame); }

.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--char);
  border: 1px solid rgba(247,239,226,.18);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: var(--body); font-size: 1rem;
  transition: border-color .18s var(--ease);
}
.form input:hover, .form select:hover, .form textarea:hover { border-color: rgba(247,239,226,.32); }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--flame); outline: none; box-shadow: 0 0 0 3px rgba(239,95,12,.2); }
.form textarea { resize: vertical; min-height: 128px; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--smoke) 50%), linear-gradient(135deg, var(--smoke) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form ::placeholder { color: var(--smoke-dim); opacity: 1; }

.form__note {
  font-size: 0.84rem; color: var(--smoke-dim); line-height: 1.5;
}

.notice {
  border: 1px solid rgba(255,192,46,.35);
  background: rgba(255,192,46,.07);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  font-size: 0.88rem; line-height: 1.55;
  color: var(--white-hot);
}
.notice strong { color: var(--gold); }

/* --------------------------------------------------------------------------
   16. Contact cards
   -------------------------------------------------------------------------- */
.contacts { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.contact-card {
  border: 1px solid rgba(247,239,226,.12);
  border-radius: var(--r);
  padding: 1.35rem 1.4rem;
  background: var(--soot);
  text-decoration: none;
  display: block;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-card:hover { border-color: var(--flame); transform: translateY(-3px); }
.contact-card__k {
  font-family: var(--ticket); font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--smoke-dim); margin-bottom: 0.55rem;
}
.contact-card__v { font-size: 1.05rem; color: var(--cream); font-weight: 500; word-break: break-word; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--coal); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: 3rem;
}
.footer h3 {
  font-family: var(--ticket); font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--flame); margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.footer a { color: var(--smoke); text-decoration: none; font-size: 0.92rem; transition: color .18s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer__blurb { color: var(--smoke); font-size: 0.92rem; max-width: 34ch; }
.footer__bottom {
  border-top: 1px solid rgba(247,239,226,.1);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; align-items: center;
  font-family: var(--ticket); font-size: 0.64rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke-dim);
}
.footer__bottom p { margin: 0; }

/* Studio credit sits to the right of the copyright line, and wraps
   underneath it rather than crowding on narrow screens. */
/* Scoped to beat `.footer__bottom p { margin: 0 }`, which is more
   specific than a bare `.footer__credit` and would cancel the auto margin. */
.footer__bottom .footer__credit { margin-left: auto; }
.footer__credit a {
  color: var(--smoke);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,138,31,.45);
  padding-bottom: 1px;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.footer__credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }

@media (max-width: 620px) {
  .footer__bottom .footer__credit { margin-left: 0; width: 100%; }
}

/* --------------------------------------------------------------------------
   18. Motion
   -------------------------------------------------------------------------- */
/* Only hide content when JavaScript is running to bring it back.
   Without the .js class the page renders fully visible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .masthead, .footer, .btn, .hero__media { display: none; }
  body { background: #fff; color: #000; }
  .band { padding-block: 1rem; }
}
