:root {
  --black: #090909;
  --black-2: #111111;
  --surface: #151515;
  --surface-2: #1d1d1d;
  --cream: #f3eedf;
  --cream-2: #e7dec8;
  --red: #d6252e;
  --red-bright: #ff4d55;
  --green: #169447;
  --gold: #d3a31f;
  --muted: rgba(243, 238, 223, .62);
  --muted-dark: rgba(9, 9, 9, .58);
  --line: rgba(243, 238, 223, .13);
  --max: 1280px;
  --radius: 22px;
  --display: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.section-dark { background: var(--black); color: var(--cream); }
.section-cream { background: var(--cream); color: var(--black); }
.section-pad { padding: 120px 0; }
.page-main { min-height: 75vh; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-red { color: var(--red-bright); }
.eyebrow-green { color: #35c16c; }
.eyebrow-gold { color: var(--gold); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .88;
  text-transform: uppercase;
}
h3 { line-height: 1.1; }


.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .20s ease, border-color .20s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(9,9,9,.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(calc(100% - 48px), 1380px);
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,.15); }
.brand-wordmark { font-weight: 950; letter-spacing: .055em; font-size: 14px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-weight: 800; font-size: 14px; }
.desktop-nav a { color: rgba(243,238,223,.74); position: relative; padding: 30px 0; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--red); transition: right .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--cream); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.desktop-cta { justify-self: end; }
.mobile-menu-button { display: none; }
.mobile-menu { display: none; }


.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-red { background: var(--red); color: white; }
.button-red:hover { background: #f02a35; }
.button-green { background: var(--green); color: white; }
.button-gold { background: var(--gold); color: var(--black); }
.button-cream { background: var(--cream); color: var(--black); }
.button-dark { background: var(--black); color: var(--cream); }
.button-outline { background: transparent; color: var(--cream); border-color: rgba(243,238,223,.28); }
.button-outline:hover { border-color: var(--cream); }
.button-outline-dark { background: transparent; color: var(--black); border-color: rgba(9,9,9,.25); }
.text-link { font-weight: 900; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.micro-link { display: inline-block; margin-top: 18px; color: var(--muted); font-size: 13px; }


.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 125px 0 80px;
  background:
    radial-gradient(circle at 75% 36%, rgba(22,148,71,.12), transparent 28%),
    radial-gradient(circle at 87% 57%, rgba(214,37,46,.16), transparent 29%),
    var(--black);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 34px; }
.hero-copy { position: relative; z-index: 4; max-width: 730px; }
.hero h1 { font-size: clamp(82px, 8.3vw, 132px); }
.hero h1 span { color: var(--red-bright); }
.hero-lede { max-width: 610px; color: var(--muted); font-size: clamp(18px,1.5vw,22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-art { position: relative; height: 690px; }
.hero-photo-wrap { position: absolute; width: min(540px, 85%); aspect-ratio: 1 / 1.08; right: -1%; top: 7%; transform: rotate(4deg); border-radius: 44px; overflow: hidden; box-shadow: 0 35px 100px rgba(0,0,0,.65); }
.hero-photo { height: 100%; object-fit: cover; }
.hero-ring { position: absolute; border-radius: 50%; border: 2px solid; pointer-events: none; }
.ring-one { width: 490px; height: 490px; right: 6%; top: 14%; border-color: rgba(22,148,71,.55); }
.ring-two { width: 560px; height: 560px; right: 0; top: 9%; border-color: rgba(214,37,46,.48); }
.hero-badge { position: absolute; left: 6%; bottom: 14%; width: 154px; height: 154px; background: var(--gold); color: var(--black); border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; transform: rotate(-10deg); border: 8px solid var(--black); z-index: 5; }
.hero-badge span { font-size: 12px; letter-spacing: .14em; font-weight: 900; }
.hero-badge strong { font-family: var(--display); font-size: 25px; line-height: .9; }
.mini-logo { position: absolute; right: 2%; bottom: 2%; width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 5px solid var(--black); z-index: 5; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); font-size: 10px; letter-spacing: .2em; color: rgba(243,238,223,.45); }


.page-hero {
  padding: 160px 0 84px;
  min-height: 520px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 40%, rgba(214,37,46,.16), transparent 32%), radial-gradient(circle at 68% 20%, rgba(22,148,71,.10), transparent 27%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.page-hero h1 { font-size: clamp(78px, 9vw, 145px); margin-bottom: 0; }
.page-hero h1 span { color: var(--red-bright); }
.page-hero-copy { color: var(--muted); font-size: 19px; max-width: 560px; justify-self: end; }
.page-hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-image { position: absolute; right: 3vw; top: 80px; width: min(420px, 34vw); opacity: .14; transform: rotate(9deg); filter: saturate(.8); }


.ticker { overflow: hidden; background: var(--cream); color: var(--black); border-top: 1px solid rgba(0,0,0,.1); border-bottom: 1px solid rgba(0,0,0,.1); }
.ticker-track { width: max-content; display: flex; animation: ticker 28s linear infinite; }
.ticker-track span { white-space: nowrap; padding: 16px 0; font-family: var(--display); font-size: 24px; letter-spacing: .035em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }


.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { font-size: clamp(62px, 6.6vw, 104px); margin: 0; }
.section-intro { margin: 0; max-width: 570px; color: var(--muted); font-size: 17px; justify-self: end; }
.dark-heading .section-intro { color: var(--muted-dark); }


.schedule-section { padding: 120px 0; }
.tonight-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 32px 34px;
  margin-bottom: 24px;
  border: 1px solid rgba(53,193,108,.38);
  background: linear-gradient(135deg, rgba(22,148,71,.20), rgba(9,9,9,.92));
  border-radius: 26px;
}
.tonight-kicker { margin: 0 0 6px; font-size: 11px; letter-spacing: .18em; color: #53df89; font-weight: 950; }
.tonight-card h3 { margin: 0 0 4px; font-size: clamp(25px,2.5vw,38px); }
.tonight-card p { margin-bottom: 0; color: var(--muted); }
.tonight-extra { margin-top: 8px !important; font-size: 13px; }
.tonight-time { font-family: var(--display); font-size: 30px; color: var(--cream); white-space: nowrap; }
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.schedule-card { min-height: 235px; padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; }
.schedule-card.today { border-color: rgba(53,193,108,.55); box-shadow: inset 0 0 0 1px rgba(53,193,108,.18); }
.schedule-card .day { color: var(--gold); font-size: 10px; font-weight: 950; letter-spacing: .16em; margin-bottom: 20px; }
.schedule-card.today .day { color: #53df89; }
.schedule-card h3 { font-size: 23px; margin: 0 0 8px; }
.schedule-card .city { color: var(--cream); margin: 0 0 3px; font-weight: 800; }
.schedule-card .address { color: var(--muted); font-size: 12px; margin: 0; }
.schedule-bottom { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.schedule-card .time { font-family: var(--display); font-size: 20px; }
.directions { color: var(--cream); font-size: 12px; font-weight: 900; }
.schedule-note { margin: 20px 0 0; color: rgba(243,238,223,.40); font-size: 11px; }


.menu-section { padding: 120px 0; }
.food-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: start; }
.food-card { background: #e7dfcc; border-radius: 24px; overflow: hidden; }
.food-card-offset { margin-top: 46px; }
.food-image { aspect-ratio: 1 / .92; overflow: hidden; }
.food-image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.food-card:hover img { transform: scale(1.035); }
.food-copy { padding: 24px; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; }
.food-copy span { grid-row: span 2; font-weight: 950; color: var(--red); }
.food-copy h3 { margin: 0 0 6px; font-family: var(--display); font-size: 28px; }
.food-copy p { margin: 0; color: var(--muted-dark); }

.menu-status { background: #18120a; border: 1px solid rgba(211,163,31,.28); border-radius: 20px; padding: 24px; color: var(--cream); margin-bottom: 44px; }
.menu-status strong { color: var(--gold); }
.menu-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.menu-gallery-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.menu-gallery img { height: 100%; object-fit: cover; border-radius: 24px; min-height: 280px; }
.menu-gallery > img { min-height: 580px; }
.menu-next-actions { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.action-panel { border: 1px solid rgba(9,9,9,.18); border-radius: 24px; padding: 32px; }
.action-panel h3 { font-family: var(--display); font-size: 42px; margin-bottom: 12px; }
.action-panel p { color: var(--muted-dark); }


.brand-break { min-height: 680px; position: relative; overflow: hidden; display: flex; align-items: center; }
.brand-break-image { position: absolute; inset: 0; background: none; }
.brand-break-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.95) 0%, rgba(9,9,9,.68) 48%, rgba(9,9,9,.16) 100%); }
.brand-break-copy { position: relative; z-index: 2; }
.brand-break-copy p { font-size: 11px; letter-spacing: .18em; font-weight: 900; color: var(--gold); }
.brand-break-copy h2 { font-size: clamp(88px,9vw,145px); margin: 0; }
.brand-break-copy h2 span { color: var(--red-bright); }


.story-section { padding: 120px 0; }
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 82px; align-items: center; }
.story-visual { position: relative; min-height: 630px; }
.story-main { width: 82%; height: 560px; object-fit: cover; border-radius: 30px; }
.story-mini { position: absolute; width: 48%; height: 300px; object-fit: cover; right: 0; bottom: 0; border: 10px solid var(--black); border-radius: 24px; }
.story-copy h2 { font-size: clamp(68px,6.5vw,106px); }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; max-width: 600px; }
.story-copy .muted-copy { font-size: 13px !important; color: rgba(243,238,223,.38) !important; }

.story-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 50px; }
.story-fact { padding: 26px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.story-fact span { color: var(--gold); font-size: 11px; font-weight: 950; letter-spacing: .13em; }
.story-fact h3 { margin: 12px 0 0; font-size: 22px; }
.city-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.city-pill { padding: 10px 15px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-weight: 800; }


.catering-section { padding: 120px 0; background: #0d090a; }
.catering-shell { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border-radius: 34px; background: linear-gradient(135deg,#260d10 0%, #100b0b 60%); border: 1px solid rgba(214,37,46,.32); }
.catering-copy { padding: 76px 30px 76px 72px; align-self: center; }
.catering-copy h2 { font-size: clamp(64px,5.8vw,96px); }
.catering-copy h2 span { color: #ff5a61; }
.catering-copy > p:not(.eyebrow) { color: rgba(243,238,223,.65); font-size: 18px; max-width: 570px; }
.catering-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.catering-visual { position: relative; overflow: hidden; min-height: 600px; }
.catering-visual::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg,#100b0b 0%, transparent 40%); pointer-events:none; }
.catering-visual img { height: 100%; object-fit: cover; }
.catering-stamp { position: absolute; z-index:2; right: 42px; top: 46px; width: 126px; height: 126px; border-radius: 50%; background: var(--gold); color: var(--black); display:flex; align-items:center; justify-content:center; text-align:center; font-family: var(--display); font-size:23px; line-height:.9; transform: rotate(9deg); border: 6px solid #180a0b; }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.process-card { border: 1px solid var(--line); background: var(--surface); border-radius: 22px; padding: 28px; }
.process-card span { display: block; color: var(--gold); font-family: var(--display); font-size: 42px; margin-bottom: 18px; }
.process-card h3 { font-size: 24px; margin-bottom: 10px; }
.process-card p { color: var(--muted); margin-bottom: 0; }
.form-section { padding: 120px 0; background: var(--cream); color: var(--black); }
.form-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: start; }
.form-copy h2 { font-size: clamp(68px,6vw,100px); }
.form-copy p { color: var(--muted-dark); font-size: 18px; }
.form-card { padding: 34px; border-radius: 28px; background: white; box-shadow: 0 30px 80px rgba(0,0,0,.09); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid rgba(9,9,9,.16); background: #faf8f2; border-radius: 12px; padding: 14px 15px; outline: none; color: var(--black); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,148,71,.10); }
.form-note { font-size: 11px; color: rgba(9,9,9,.45); margin-top: 12px; }


.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.venue-card { min-height: 190px; display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 28px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); }
.venue-card .venue-number { font-family: var(--display); font-size: 34px; color: var(--red-bright); }
.venue-card h3 { margin-bottom: 8px; font-size: 25px; }
.venue-card p { color: var(--muted); margin-bottom: 22px; }
.venue-card .text-link { grid-column: 2; justify-self: start; }


.gallery-section { padding: 120px 0; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .85fr 1fr; grid-template-rows: 290px 290px; gap: 14px; }
.gallery-grid img { height: 100%; object-fit: cover; border-radius: 18px; }
.gallery-a { grid-row: 1 / 3; }
.gallery-b { grid-column: 2; grid-row: 1; }
.gallery-c { grid-column: 3; grid-row: 1; }
.gallery-d { grid-column: 2; grid-row: 2; }
.gallery-e { grid-column: 3; grid-row: 2; }


.rewards-section { padding: 110px 0; background: #11100e; }
.rewards-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.rewards-art img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; border-radius: 22px; transform: rotate(-2deg); box-shadow: 0 26px 70px rgba(0,0,0,.45); }
.rewards-copy h2 { font-size: clamp(66px,6vw,100px); }
.rewards-copy p { max-width: 560px; color: var(--muted); font-size: 18px; }
.rewards-rule { display: inline-flex; margin-top: 12px; padding: 10px 14px; border-radius: 999px; background: rgba(211,163,31,.12); color: var(--gold); border: 1px solid rgba(211,163,31,.24); font-weight: 900; font-size: 12px; }


.final-cta { padding: 130px 0; text-align: center; }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { font-size: clamp(86px,9vw,150px); }
.final-cta h2 span { color: var(--red); }
.final-cta p:not(.eyebrow) { font-size: 18px; color: rgba(9,9,9,.58); }
.center-actions { justify-content: center; margin-top: 20px; }


.content-section { padding: 110px 0; }
.content-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: start; }
.content-grid h2 { font-size: clamp(64px,6vw,96px); }
.content-grid p { color: var(--muted); font-size: 18px; }
.callout { padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: var(--surface); }
.callout p { margin-bottom: 0; }
.photo-duo { display: grid; grid-template-columns: 1fr .75fr; gap: 16px; align-items: end; }
.photo-duo img { object-fit: cover; border-radius: 26px; }
.photo-duo img:first-child { height: 560px; }
.photo-duo img:last-child { height: 400px; }


.site-footer { padding: 78px 0 28px; background: var(--black); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr 1fr; gap: 50px; }
.footer-brand img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); }
.site-footer h3 { margin: 0 0 18px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.site-footer a { display: block; margin: 0 0 11px; color: rgba(243,238,223,.68); }
.site-footer a:hover { color: var(--cream); }
.footer-tagline p { margin: 0; font-family: var(--display); font-size: 35px; line-height: .9; text-align: right; }
.footer-tagline span { color: var(--red); }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--line); display:flex; justify-content:space-between; gap: 20px; color:rgba(243,238,223,.35); font-size:11px; text-transform: uppercase; letter-spacing:.08em; }


.mobile-sticky-bar { display: none; }


.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }


.center-page { min-height: 100vh; display: grid; place-items: center; padding: 120px 20px 60px; text-align: center; }
.center-card { width: min(760px,100%); }
.center-card img { width: 110px; height: 110px; margin: 0 auto 28px; border-radius: 50%; object-fit: cover; }
.center-card h1 { font-size: clamp(72px,10vw,130px); }
.center-card p { color: var(--muted); font-size: 18px; max-width: 600px; margin: 0 auto 30px; }

@media (max-width: 1050px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; width: calc(100% - 36px); height: 74px; }
  .desktop-cta { display: none; }
  .mobile-menu-button { display:block; justify-self:end; background:none; color:var(--cream); border:0; font-size:28px; cursor:pointer; }
  .mobile-menu { position:absolute; top:74px; left:0; right:0; padding:16px 22px 24px; background:rgba(9,9,9,.98); border-bottom:1px solid var(--line); }
  .mobile-menu.open { display:grid; gap:8px; }
  .mobile-menu a { padding:12px 0; font-size:18px; font-weight:900; color: var(--cream); }
  .mobile-menu a.active { color: #53df89; }

  .hero { min-height: auto; height: auto; padding: 125px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(66px,12vw,110px); }
  .hero-art { height: 560px; margin-top: 5px; }
  .hero-photo-wrap { width: 380px; max-width:75%; right:15%; }
  .hero-ring { right: 18%; }
  .ring-one { width: 400px; height: 400px; }
  .ring-two { width: 470px; height: 470px; }

  .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-copy { justify-self: start; }
  .page-hero-image { opacity: .08; width: 48vw; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-intro { justify-self: start; }
  .schedule-grid { grid-template-columns: repeat(2,1fr); }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .food-card:nth-child(3) { grid-column: 1 / -1; width: 50%; }
  .story-grid, .rewards-grid, .content-grid, .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .catering-shell { grid-template-columns: 1fr; }
  .catering-copy { padding: 60px; }
  .catering-visual { min-height: 520px; }
  .process-grid { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .menu-gallery { grid-template-columns: 1fr; }
  .menu-gallery > img { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-tagline p { text-align: left; }
}

@media (max-width: 720px) {
  body { padding-bottom: 66px; }
  .container { width: calc(100% - 32px); }
  .section-pad, .schedule-section, .menu-section, .story-section, .gallery-section, .content-section, .form-section, .catering-section, .rewards-section { padding: 78px 0; }
  .brand-wordmark { display: none; }
  .brand img { width: 44px; height: 44px; }

  .hero { padding-top: 106px; }
  .hero h1 { font-size: clamp(59px,18vw,82px); }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-art { height: 420px; }
  .hero-photo-wrap { width: 310px; right: 5%; top: 8%; }
  .hero-ring { display: none; }
  .hero-badge { width: 120px; height: 120px; left: 1%; bottom: 12%; border-width: 6px; }
  .hero-badge strong { font-size: 20px; }
  .mini-logo { width: 74px; height: 74px; right: 0; }
  .scroll-cue { display: none; }

  .page-hero { min-height: 430px; padding: 126px 0 58px; }
  .page-hero h1 { font-size: clamp(60px,18vw,88px); }
  .page-hero-copy { font-size: 16px; }
  .page-hero-actions .button { width: 100%; }

  .ticker-track span { font-size: 20px; padding: 13px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .story-copy h2, .rewards-copy h2, .content-grid h2, .form-copy h2 { font-size: clamp(54px,16vw,78px); }
  .section-intro { font-size: 15px; }

  .tonight-card { grid-template-columns: 1fr; padding: 26px; }
  .tonight-time { font-size: 28px; }
  .tonight-card .button { width: 100%; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-card { min-height: 220px; }

  .food-grid { grid-template-columns: 1fr; gap: 14px; }
  .food-card-offset { margin-top: 0; }
  .food-card:nth-child(3) { grid-column: auto; width: auto; }
  .menu-gallery-stack { grid-template-columns: 1fr; }
  .menu-gallery > img, .menu-gallery img { min-height: 340px; }
  .menu-next-actions { grid-template-columns: 1fr; }

  .brand-break { min-height: 520px; }
  .brand-break-copy h2 { font-size: clamp(70px,20vw,95px); }
  .brand-break-overlay { background: linear-gradient(90deg, rgba(9,9,9,.92), rgba(9,9,9,.45)); }

  .story-visual { min-height: 480px; }
  .story-main { height: 430px; width: 92%; }
  .story-mini { height: 210px; border-width: 7px; }
  .story-facts { grid-template-columns: 1fr; }

  .catering-copy { padding: 42px 24px; }
  .catering-copy h2 { font-size: clamp(58px,17vw,82px); }
  .catering-actions .button { width: 100%; }
  .catering-visual { min-height: 390px; }
  .catering-stamp { width: 100px; height: 100px; font-size: 18px; top: 25px; right: 25px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 24px; }
  .form-card .button { width: 100%; }

  .venue-card { grid-template-columns: auto 1fr; min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 200px 220px; }
  .gallery-a { grid-column: 1 / -1; grid-row: 1; }
  .gallery-b { grid-column: 1; grid-row: 2; }
  .gallery-c { grid-column: 2; grid-row: 2; }
  .gallery-d { grid-column: 1; grid-row: 3; }
  .gallery-e { grid-column: 2; grid-row: 3; }

  .rewards-grid { gap: 32px; }
  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: clamp(74px,21vw,104px); }
  .center-actions { width: 100%; }
  .center-actions .button { width: 100%; }

  .photo-duo { grid-template-columns: 1fr; }
  .photo-duo img:first-child, .photo-duo img:last-child { height: 360px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-bar { position: fixed; display: grid; grid-template-columns: repeat(3,1fr); left: 0; right: 0; bottom: 0; z-index: 1100; height: 66px; background: rgba(9,9,9,.97); border-top: 1px solid var(--line); }
  .mobile-sticky-bar a { display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; border-right: 1px solid var(--line); }
  .mobile-sticky-bar a:last-child { border-right: 0; }
  .mobile-sticky-bar a:nth-child(2) { color: #54da87; }
}

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


:root {
  --focus: #62e596;
  --shadow-card: 0 24px 65px rgba(0,0,0,.28);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 900;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.button:focus-visible, .directions:focus-visible, .text-link:focus-visible { border-radius: 10px; }

body.menu-open { overflow: hidden; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.button { position: relative; overflow: hidden; }
.button::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.14) 49%, transparent 60%); transform: translateX(-140%); transition: transform .48s ease; }
.button:hover::after { transform: translateX(140%); }


.tonight-card {
  grid-template-columns: .72fr 1.28fr;
  align-items: stretch;
  gap: 34px;
  padding: 30px;
}
.today-route-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4px;
}
.today-route-head h3 { font-size: clamp(34px, 3.2vw, 50px); margin-bottom: 8px; text-transform: uppercase; }
.today-date { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.today-stops { display: grid; gap: 10px; }
.today-stop {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 14px 18px;
  background: rgba(5,8,6,.52);
  border: 1px solid rgba(243,238,223,.12);
  border-radius: 16px;
}
.today-stop-number { font-family: var(--display); font-size: 30px; color: #53df89; }
.today-stop-copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.today-stop-copy strong { font-size: 18px; line-height: 1.15; }
.today-stop-copy span { color: var(--muted); font-size: 13px; }
.today-stop .button { white-space: nowrap; }

.schedule-card { transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.schedule-card:hover { transform: translateY(-4px); border-color: rgba(243,238,223,.27); background: #191919; }
.schedule-card.today { background: linear-gradient(150deg, rgba(22,148,71,.18), var(--surface) 55%); }
.schedule-card .directions { min-height: 34px; display:inline-flex; align-items:center; }
.schedule-note { max-width: 720px; line-height: 1.55; }


.menu-status {
  display: flex;
  gap: 8px;
  align-items: baseline;
  background: #20180c;
  box-shadow: inset 4px 0 0 var(--gold);
}
.menu-status strong { flex: 0 0 auto; }
.final-cta-dark { color: var(--cream); }
.final-cta-dark p:not(.eyebrow) { color: var(--muted); }
.final-cta-compact { font-size: clamp(70px,8vw,125px) !important; }


.honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.form-card { position: relative; border: 1px solid rgba(9,9,9,.06); }
.form-field input, .form-field textarea, .form-field select { min-height: 50px; }
.form-field textarea { min-height: 145px; }
.form-field input:hover, .form-field textarea:hover, .form-field select:hover { border-color: rgba(9,9,9,.30); }
.form-note { max-width: 620px; line-height: 1.55; }


.page-hero-copy p { text-wrap: balance; }
.page-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(211,163,31,.35), transparent); }
.venue-card { transition: transform .2s ease, border-color .2s ease; }
.venue-card:hover { transform: translateY(-3px); border-color: rgba(243,238,223,.24); }
.story-fact, .process-card, .action-panel { transition: transform .2s ease, border-color .2s ease; }
.story-fact:hover, .process-card:hover, .action-panel:hover { transform: translateY(-3px); border-color: rgba(243,238,223,.24); }
.gallery-grid img, .menu-gallery img, .photo-duo img { transition: transform .5s ease, filter .5s ease; }
.gallery-grid img:hover, .menu-gallery img:hover, .photo-duo img:hover { transform: scale(1.012); filter: saturate(1.06); }

.mobile-sticky-bar a.active { background: rgba(255,255,255,.055); }

@media (max-width: 1050px) {
  .tonight-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mobile-menu.open { max-height: calc(100vh - 74px - 66px); overflow-y: auto; }
  .tonight-card { padding: 22px; gap: 20px; }
  .today-route-head h3 { font-size: 36px; }
  .today-stop { grid-template-columns: auto 1fr; align-items: start; }
  .today-stop .button { grid-column: 1 / -1; width: 100%; }
  .menu-status { display: block; line-height: 1.55; }
  .menu-status strong { display: block; margin-bottom: 5px; }
  .button { min-height: 52px; }
  .mobile-sticky-bar a { min-width: 0; }
}



.social-nav-link { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--cream); flex: 0 0 auto; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.social-nav-link:hover { border-color: var(--red); background: rgba(214,37,46,.10); transform: translateY(-1px); }
.social-nav-link svg, .instagram-update-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mobile-instagram-link { color: var(--red-bright) !important; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 20px !important; }
.social-subcopy { margin: 18px 0 0; max-width: 620px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.social-heading-actions { display:flex; flex-direction:column; align-items:flex-end; gap:14px; }
.social-live-pill { display:inline-flex; align-items:center; gap:8px; border:1px solid var(--line); border-radius:999px; padding:8px 12px; color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.social-live-pill span { width:7px; height:7px; border-radius:50%; background:var(--red); box-shadow:0 0 0 4px rgba(214,37,46,.12); }
.gallery-grid .social-photo { position:relative; min-width:0; overflow:hidden; border-radius:18px; display:block; color:var(--cream); }
.gallery-grid .social-photo img { width:100%; height:100%; object-fit:cover; border-radius:0; transition: transform .5s ease, filter .5s ease; }
.gallery-grid .social-gallery-video { width:100%; height:100%; object-fit:cover; border-radius:0; display:block; background:#090909; pointer-events:none; transition:transform .5s ease, filter .5s ease; }
.gallery-grid .social-photo span { position:absolute; left:14px; bottom:14px; padding:8px 10px; border-radius:999px; background:rgba(9,9,9,.76); backdrop-filter:blur(8px); border:1px solid rgba(243,238,223,.16); font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; opacity:0; transform:translateY(5px); transition:.25s ease; }
.gallery-grid .social-photo:hover img, .gallery-grid .social-photo:hover .social-gallery-video { transform:scale(1.025); filter:saturate(1.08); }
.gallery-grid .social-photo:hover span, .gallery-grid .social-photo:focus-visible span { opacity:1; transform:none; }
.schedule-note a { color:rgba(243,238,223,.72); text-decoration:underline; text-decoration-color:rgba(214,37,46,.55); text-underline-offset:3px; }
.schedule-note a:hover { color:var(--cream); }
.instagram-update-card { margin:28px 0 34px; padding:26px; border:1px solid rgba(214,37,46,.28); background:linear-gradient(135deg, rgba(214,37,46,.08), rgba(255,255,255,.02)); border-radius:22px; display:grid; grid-template-columns:auto 1fr auto; gap:20px; align-items:center; }
.instagram-update-icon { width:48px; height:48px; border-radius:14px; display:grid; place-items:center; color:var(--cream); border:1px solid rgba(243,238,223,.16); background:rgba(255,255,255,.04); }
.instagram-update-card h3 { margin:5px 0 6px; font-family:var(--display); font-size:34px; line-height:.95; }
.instagram-update-card p:not(.eyebrow) { margin:0; color:var(--muted); max-width:680px; }
.story-social-cta { padding:90px 0; }
.story-social-inner { display:flex; justify-content:space-between; gap:36px; align-items:end; }
.story-social-inner h2 { color:var(--black); margin:0 0 12px; font-size:clamp(58px,7vw,105px); }
.story-social-inner p:not(.eyebrow) { color:rgba(9,9,9,.62); max-width:620px; margin:0; }
@media (max-width: 900px) { .social-heading-actions { align-items:flex-start; } .instagram-update-card { grid-template-columns:auto 1fr; } .instagram-update-card .button { grid-column:1 / -1; width:100%; } .story-social-inner { align-items:flex-start; flex-direction:column; } }
@media (max-width: 680px) { .instagram-update-card { grid-template-columns:1fr; } .instagram-update-icon { width:44px; height:44px; } .gallery-grid .social-photo span { opacity:1; transform:none; } }



:root {
  --max: 1440px;
  --section-space: clamp(88px, 6.5vw, 108px);
  --section-space-tight: clamp(72px, 5.5vw, 92px);
}


.container { width: min(calc(100% - 80px), var(--max)); }
.nav-shell {
  width: min(calc(100% - 64px), 1500px);
  height: 78px;
  grid-template-columns: minmax(220px,1fr) auto 42px minmax(150px,1fr);
  gap: 22px;
}
.brand img { width: 46px; height: 46px; }
.desktop-nav { gap: 34px; }
.desktop-nav a { padding: 27px 0; }
.desktop-nav a::after { bottom: 17px; }
.social-nav-link { justify-self: center; }
.desktop-cta { justify-self: end; }


.hero {
  min-height: min(860px, 94svh);
  padding: 112px 0 54px;
  align-items: center;
}
.hero-grid {
  grid-template-columns: minmax(0,1.06fr) minmax(440px,.94fr);
  gap: clamp(40px,5vw,78px);
  transform: translateY(-6px);
}
.hero-copy { max-width: 760px; }
.hero h1 { font-size: clamp(76px, 6.45vw, 118px); margin-bottom: 20px; }
.hero-lede { max-width: 650px; font-size: clamp(17px,1.25vw,21px); line-height: 1.55; }
.hero-actions { margin-top: 24px; }
.micro-link { margin-top: 14px; }
.hero-art { height: 590px; }
.hero-photo-wrap { width: min(500px, 88%); right: 1%; top: 5%; border-radius: 38px; }
.ring-one { width: 455px; height: 455px; right: 7%; top: 13%; }
.ring-two { width: 525px; height: 525px; right: 0; top: 7%; }
.hero-badge { width: 138px; height: 138px; left: 4%; bottom: 12%; }
.mini-logo { width: 88px; height: 88px; right: 1%; bottom: 1%; }
.scroll-cue { bottom: 14px; }

.hero-status {
  margin-top: 24px;
  max-width: 610px;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(243,238,223,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
}
.hero-status-dot { width: 9px; height: 9px; border-radius: 50%; background: #53df89; box-shadow: 0 0 0 5px rgba(83,223,137,.10); }
.hero-status-copy { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hero-status-label { color: #53df89; font-size: 9px; font-weight: 950; letter-spacing: .16em; }
.hero-status-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.hero-status-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 11px; }
.hero-status-link { white-space: nowrap; font-size: 11px; font-weight: 900; color: var(--cream); }
.hero-status-link:hover { color: #53df89; }


.schedule-section,
.menu-section,
.story-section,
.gallery-section,
.content-section,
.form-section,
.catering-section { padding: var(--section-space) 0; }
.rewards-section { padding: var(--section-space-tight) 0; }
.final-cta { padding: clamp(88px,6vw,106px) 0; }
.section-heading { margin-bottom: 46px; gap: 48px; }
.section-heading h2 { font-size: clamp(58px,5.6vw,94px); }
.section-intro { line-height: 1.65; }


.tonight-card { margin-bottom: 18px; padding: 26px; gap: 28px; }
.schedule-grid { gap: 16px; }
.schedule-card { min-height: 214px; padding: 22px; }
.schedule-card .day { margin-bottom: 16px; }
.schedule-bottom { padding-top: 16px; }
.food-grid { gap: 20px; }
.food-card-offset { margin-top: 28px; }
.food-copy { padding: 22px; }
.center-actions.hero-actions { margin-top: 34px; }

.brand-break { min-height: 590px; }
.brand-break-copy h2 { font-size: clamp(78px,7.6vw,126px); }

.story-grid { gap: 62px; }
.story-visual { min-height: 555px; }
.story-main { height: 495px; }
.story-mini { height: 250px; border-width: 8px; }
.story-copy h2 { font-size: clamp(62px,5.6vw,94px); }

.catering-shell { border-radius: 30px; }
.catering-copy { padding: 62px 26px 62px 60px; }
.catering-copy h2 { font-size: clamp(58px,5vw,86px); }
.catering-visual { min-height: 520px; }
.catering-stamp { width: 112px; height: 112px; right: 34px; top: 36px; font-size: 20px; }

.gallery-grid { grid-template-rows: 260px 260px; gap: 16px; }
.rewards-grid { gap: 58px; }
.final-cta h2 { font-size: clamp(76px,7.7vw,128px); }
.site-footer { padding: 64px 0 26px; }
.footer-bottom { margin-top: 48px; }


.page-hero { min-height: 470px; padding: 138px 0 68px; }
.page-hero-inner { gap: 50px; }
.page-hero h1 { font-size: clamp(72px,7.7vw,124px); }
.page-hero-copy { font-size: 18px; }
.menu-next-actions { margin-top: 44px; }
.form-grid { gap: 60px; }
.photo-duo img:first-child { height: 510px; }
.photo-duo img:last-child { height: 365px; }


.schedule-card,
.food-card,
.action-panel,
.story-fact,
.process-card,
.venue-card,
.hero-status { box-shadow: 0 0 0 1px rgba(255,255,255,.005); }
.directions,
.hero-status-link,
.text-link { transition: color .2s ease, opacity .2s ease; }
.directions:hover,
.text-link:hover { color: #53df89; }

@media (min-width: 1500px) {
  .hero-grid { gap: 82px; }
  .hero-art { height: 610px; }
  .hero-photo-wrap { width: 520px; }
  .ring-one { width: 470px; height: 470px; }
  .ring-two { width: 540px; height: 540px; }
}

@media (max-width: 1180px) and (min-width: 1051px) {
  .nav-shell { grid-template-columns: minmax(190px,1fr) auto 38px minmax(130px,.8fr); gap: 16px; }
  .desktop-nav { gap: 22px; font-size: 13px; }
  .brand-wordmark { font-size: 12px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 28px; }
  .hero h1 { font-size: clamp(72px,7.6vw,96px); }
  .hero-art { height: 540px; }
  .hero-status { max-width: 560px; }
}

@media (max-width: 1050px) {
  :root { --max: 1280px; }
  .container { width: min(calc(100% - 40px), var(--max)); }
  .nav-shell { width: calc(100% - 36px); height: 74px; grid-template-columns: 1fr auto; }
  .social-nav-link { display: none; }
  .hero { min-height: auto; padding: 112px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 18px; transform: none; }
  .hero h1 { font-size: clamp(66px,11vw,104px); }
  .hero-art { height: 520px; }
  .hero-photo-wrap { width: 390px; max-width: 72%; right: 14%; }
  .hero-status { max-width: 680px; }
  .story-visual { min-height: 520px; }
}

@media (max-width: 720px) {
  :root { --section-space: 74px; --section-space-tight: 68px; }
  .container { width: calc(100% - 32px); }
  .hero { padding: 98px 0 58px; }
  .hero-grid { gap: 8px; }
  .hero h1 { font-size: clamp(57px,17vw,78px); margin-bottom: 18px; }
  .hero-lede { line-height: 1.5; }
  .hero-status { grid-template-columns: auto 1fr; margin-top: 20px; min-height: 0; padding: 12px; }
  .hero-status-link { grid-column: 2; justify-self: start; padding-top: 4px; }
  .hero-status-copy strong, .hero-status-copy small { white-space: normal; }
  .hero-art { height: 390px; }
  .hero-photo-wrap { width: 292px; max-width: 88%; right: 3%; }
  .hero-badge { width: 108px; height: 108px; }
  .mini-logo { width: 68px; height: 68px; }
  .section-heading { margin-bottom: 32px; gap: 16px; }
  .section-heading h2 { font-size: clamp(52px,15vw,72px); }
  .tonight-card { padding: 20px; }
  .schedule-card { min-height: 200px; }
  .brand-break { min-height: 470px; }
  .brand-break-copy h2 { font-size: clamp(66px,18vw,88px); }
  .story-visual { min-height: 440px; }
  .story-main { height: 390px; }
  .story-mini { height: 190px; }
  .catering-copy { padding: 38px 22px; }
  .catering-visual { min-height: 350px; }
  .gallery-grid { grid-template-rows: 220px 180px 200px; }
  .page-hero { min-height: 405px; padding: 118px 0 54px; }
  .page-hero h1 { font-size: clamp(58px,17vw,82px); }
  .site-footer { padding-top: 54px; }
}


.schedule-card.schedule-expired{grid-column:1/-1;max-width:none}.schedule-card.schedule-expired h3{max-width:720px}.schedule-card.schedule-expired .address{max-width:760px}


.story-visual {
  min-height: 610px;
  display: grid;
  grid-template-rows: minmax(0, 360px) auto;
  align-content: center;
  gap: 22px;
}
.story-main {
  width: 80%;
  height: 360px;
  justify-self: start;
  object-fit: cover;
  border-radius: 30px;
}
.story-mini {
  position: static;
  width: min(72%, 430px);
  height: auto;
  aspect-ratio: 3 / 2;
  justify-self: end;
  object-fit: contain;
  object-position: center;
  border: 6px solid var(--black);
  border-radius: 20px;
  background: #000;
}

@media (max-width: 1100px) {
  .story-visual {
    min-height: 0;
    grid-template-rows: minmax(0, 430px) auto;
    gap: 18px;
  }
  .story-main {
    width: 86%;
    height: 430px;
  }
  .story-mini {
    width: min(64%, 440px);
  }
}

@media (max-width: 720px) {
  .story-visual {
    min-height: 0;
    grid-template-rows: minmax(0, 330px) auto;
    gap: 16px;
  }
  .story-main {
    width: 100%;
    height: 330px;
  }
  .story-mini {
    width: 88%;
    justify-self: center;
    border-width: 5px;
    border-radius: 18px;
  }
}


.story-video {
  display: block;
  background: #090909;
}
.menu-gallery-video {
  display: block;
  width: 100%;
  min-height: 580px;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: #090909;
}
@media (max-width: 1050px) {
  .menu-gallery-video { min-height: 520px; }
}
@media (max-width: 720px) {
  .menu-gallery-video { min-height: 420px; max-height: 620px; }
}



:root {
  --focus-dark: #62e596;
  --focus-light: #d6252e;
  --mobile-bar-height: 66px;
}


html, body { max-width: 100%; }
body { overflow-x: clip; }
img, video { max-width: 100%; }
[id] { scroll-margin-top: 96px; }


:focus-visible { outline-color: var(--focus-dark); }
.section-cream :focus-visible,
.form-section :focus-visible,
.story-social-cta :focus-visible,
.final-cta.section-cream :focus-visible { outline-color: var(--focus-light); }


.schedule-note { color: rgba(243,238,223,.64); }
.footer-bottom { color: rgba(243,238,223,.60); }
.form-note { color: rgba(9,9,9,.64); }
.micro-link { color: rgba(243,238,223,.68); }


.mobile-menu-button {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-menu-button:hover { background: rgba(255,255,255,.06); }
.mobile-menu-button:focus-visible { border-radius: 50%; }


.mobile-sticky-bar a { color: rgba(243,238,223,.72); position: relative; }
.mobile-sticky-bar a:nth-child(2) { color: rgba(243,238,223,.72); }
.mobile-sticky-bar a.active,
.mobile-sticky-bar a[aria-current="page"] {
  color: #62e596;
  background: rgba(98,229,150,.06);
  box-shadow: inset 0 3px 0 #62e596;
}


.form-field input,
.form-field textarea,
.form-field select { font-size: 16px; }


.menu-gallery-video { object-position: center center; }
.story-video { object-position: center center; }

@media (max-width: 1050px) {
  .mobile-menu-button { display: inline-flex; }
  .mobile-menu {
    max-height: calc(100dvh - 74px - env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom)); }
  .mobile-menu.open {
    max-height: calc(100dvh - 74px - var(--mobile-bar-height) - env(safe-area-inset-bottom));
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-bar {
    height: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-sticky-bar a { min-height: var(--mobile-bar-height); }

  
  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .story-copy h2,
  .rewards-copy h2,
  .content-grid h2,
  .form-copy h2,
  .final-cta h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .form-field { margin-bottom: 18px; }
  .form-field input,
  .form-field textarea,
  .form-field select { min-height: 52px; padding: 14px 14px; }
  .form-field textarea { min-height: 150px; }

  .menu-gallery-video {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .social-heading-actions { width: 100%; }
  .social-heading-actions .button { width: 100%; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 28px); }
  .hero h1 { font-size: clamp(52px, 17vw, 70px); }
  .page-hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .section-heading h2,
  .story-copy h2,
  .rewards-copy h2,
  .content-grid h2,
  .form-copy h2 { font-size: clamp(50px, 15.5vw, 68px); }
  .final-cta h2 { font-size: clamp(62px, 19vw, 88px); }

  .today-route-head h3 { font-size: 32px; }
  .today-stop-copy strong { font-size: 17px; }
  .schedule-card h3 { font-size: 22px; }

  
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-d,
  .gallery-e { grid-column: 1; grid-row: auto; min-height: 230px; }
  .gallery-a { min-height: 280px; }
  .gallery-grid .social-photo span { font-size: 10px; }

  .hero-status { gap: 10px; }
  .hero-status-copy strong { font-size: 13px; }
  .hero-status-copy small { font-size: 11px; }

  .footer-grid { gap: 30px; }
  .footer-tagline p { font-size: 32px; }
}


.form-card { color-scheme: light; }
@media (max-width: 720px) {
  .menu-gallery-video { height: auto; }
}


.today-route-head .today-route-title { font-family: var(--display); font-size: clamp(34px, 3.2vw, 50px); line-height: 1.1; text-transform: uppercase; margin: 0 0 8px; }
@media (max-width: 720px) { .today-route-head .today-route-title { font-size: 36px; } }
@media (max-width: 480px) { .today-route-head .today-route-title { font-size: 32px; } }


@media (hover: none), (pointer: coarse) {
  .button:hover,
  .schedule-card:hover,
  .venue-card:hover,
  .story-fact:hover,
  .process-card:hover,
  .action-panel:hover { transform: none; }
  .button:hover::after { transform: translateX(-140%); }
  .food-card:hover img,
  .gallery-grid img:hover,
  .menu-gallery img:hover,
  .photo-duo img:hover,
  .gallery-grid .social-photo:hover img,
  .gallery-grid .social-photo:hover .social-gallery-video { transform: none; filter: none; }
  .gallery-grid .social-photo span { opacity: 1; transform: none; }
}


@media (max-width: 1050px) {
  .mobile-menu {
    position: fixed;
    top: 74px;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: none;
    background: rgba(9,9,9,.995);
  }
}
@media (max-width: 720px) {
  .mobile-menu { bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom)); }
  .mobile-menu.open { max-height: none; }
}


.gallery-grid .interactive-video-card {
  cursor: pointer;
  user-select: none;
}
.gallery-grid .interactive-video-card .video-play-label {
  opacity: 1;
  transform: none;
}
.gallery-grid .interactive-video-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.gallery-grid .interactive-video-card.is-playing .video-play-label {
  background: rgba(9,9,9,.88);
}



@media (min-width: 1051px) {
  .menu-gallery {
    grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
    gap: 18px;
    width: 100%;
    max-width: 1180px;
    height: clamp(600px, 42vw, 700px);
    margin-inline: auto;
    align-items: stretch;
  }

  .menu-gallery-video {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 46%;
  }

  .menu-gallery-stack {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
    min-height: 0;
  }

  .menu-gallery-stack img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 24px;
  }
}


@media (min-width: 721px) and (max-width: 1050px) {
  .menu-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 860px;
    margin-inline: auto;
  }

  .menu-gallery-video {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 44%;
  }

  .menu-gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 18px;
  }

  .menu-gallery-stack img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}


@media (max-width: 720px) {
  .menu-gallery,
  .menu-gallery-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .menu-gallery-video,
  .menu-gallery-stack img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .menu-gallery-video { object-position: center 42%; }
  .menu-gallery-stack img { border-radius: 20px; }
}


.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 43%, rgba(20, 114, 61, .11), transparent 28%),
    radial-gradient(circle at 58% 58%, rgba(220, 39, 48, .09), transparent 32%),
    #080808;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .52s cubic-bezier(.22,.61,.36,1), visibility .52s ease;
  isolation: isolate;
}
.loader-seen .site-loader { display: none; }
.site-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) .7px, transparent .7px);
  background-size: 5px 5px;
  opacity: .18;
  pointer-events: none;
}
.site-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-1vh);
}
.site-loader-mark {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.site-loader-mark img {
  position: relative;
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 40px rgba(0,0,0,.42);
  animation: loaderMarkBreath 1.55s ease-in-out infinite;
}
.site-loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.site-loader-ring-a {
  background: conic-gradient(from 25deg, transparent 0 8%, #0e8e46 8% 31%, transparent 31% 38%, #e7b32c 38% 61%, transparent 61% 69%, #db2731 69% 92%, transparent 92% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  animation: loaderRingSpin 2.4s linear infinite;
  opacity: .9;
}
.site-loader-ring-b {
  inset: 9px;
  border: 1px solid rgba(244,239,227,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
}
.site-loader-wordmark {
  color: #f4efe3;
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .155em;
  font-weight: 900;
}
.site-loader-subtitle {
  margin-top: 8px;
  color: rgba(244,239,227,.5);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .34em;
  font-weight: 800;
  padding-left: .34em;
}
.site-loader-progress {
  position: relative;
  width: 142px;
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244,239,227,.10);
}
.site-loader-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0e8e46 0 32%, #e7b32c 32% 64%, #db2731 64% 100%);
  box-shadow: 0 0 16px rgba(231,179,44,.15);
  animation: loaderProgress 1.1s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes loaderRingSpin { to { transform: rotate(360deg); } }
@keyframes loaderMarkBreath {
  0%,100% { transform: scale(.985); }
  50% { transform: scale(1.025); }
}
@keyframes loaderProgress {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(320%); }
}
@media (max-width: 600px) {
  .site-loader-mark { width: 100px; height: 100px; margin-bottom: 20px; }
  .site-loader-mark img { width: 70px; height: 70px; }
  .site-loader-wordmark { font-size: 13px; }
  .site-loader-progress { width: 132px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-loader-mark img,
  .site-loader-ring-a,
  .site-loader-progress span { animation: none !important; }
  .site-loader-progress span { width: 100%; transform: none; opacity: .75; }
  .site-loader { transition-duration: .18s; }
}


.brand-break {
  min-height: 500px;
}
.brand-break-image {
  background: none !important;
}
.story-section {
  padding-top: 72px;
}
@media (max-width: 720px) {
  .brand-break {
    min-height: 430px;
  }
  .story-section {
    padding-top: 56px;
  }
}




@media (max-width: 1050px) {
  
  .site-header { z-index: 1300; }

  
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1250;
    width: 100%;
    max-width: 100vw;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 14px max(22px, env(safe-area-inset-right)) calc(22px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(9,9,9,.995);
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 28px 60px rgba(0,0,0,.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .mobile-menu.open {
    display: flex;
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .mobile-menu a {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(243,238,223,.08);
    color: var(--cream);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu .mobile-instagram-link {
    margin-top: 8px;
    padding-top: 16px !important;
    border-top: 1px solid rgba(243,238,223,.16);
    border-bottom: 0;
  }

  
  body.menu-open .mobile-sticky-bar {
    pointer-events: none;
    visibility: hidden;
  }

  
  .reveal {
    transition-duration: .32s;
    transition-timing-function: ease-out;
  }
}

@media (max-width: 720px) {
  
  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  
  .mobile-menu,
  .mobile-menu.open {
    bottom: 0;
    max-height: none;
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }
}


@media (max-width: 1050px) {
  .content-grid > *,
  .photo-duo,
  .photo-duo > * {
    min-width: 0;
    max-width: 100%;
  }
  .photo-duo { width: 100%; }
  .photo-duo img { width: 100%; }
}


.menu-lineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0 64px;
  border-top: 2px solid rgba(9,9,9,.9);
  border-bottom: 1px solid rgba(9,9,9,.24);
}
.menu-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 28px 28px 0;
  border-bottom: 1px solid rgba(9,9,9,.18);
}
.menu-item:nth-child(even) {
  padding-left: 28px;
  padding-right: 0;
  border-left: 1px solid rgba(9,9,9,.18);
}
.menu-item:nth-last-child(-n+2) { border-bottom: 0; }
.menu-item-number {
  padding-top: 5px;
  color: var(--red);
  font: 950 11px/1 Arial, sans-serif;
  letter-spacing: .14em;
}
.menu-item h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  line-height: .92;
  letter-spacing: .01em;
}
.menu-item p {
  margin: 0;
  color: rgba(9,9,9,.68);
  font-size: 14px;
  line-height: 1.55;
}
.official-menu-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  margin: 12px 0 76px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(243,238,223,.14);
  border-radius: 28px;
  background: #0b0b0b;
  color: var(--cream);
}
.official-menu-copy h3 {
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: .88;
}
.official-menu-copy p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(243,238,223,.64);
}
.official-menu-panel img {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  justify-self: center;
  border-radius: 20px;
}
.menu-media-heading { margin-top: 0; }
.schedule-private-label,
.today-private-label,
.venue-private-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.today-private-label {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(211,163,31,.35);
  border-radius: 999px;
}
.venue-private-label { cursor: default; }

@media (max-width: 800px) {
  .menu-lineup { grid-template-columns: 1fr; margin-bottom: 50px; }
  .menu-item,
  .menu-item:nth-child(even) {
    grid-template-columns: 42px minmax(0,1fr);
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(9,9,9,.18);
  }
  .menu-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(9,9,9,.18); }
  .menu-item:last-child { border-bottom: 0; }
  .official-menu-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
    margin-bottom: 56px;
  }
  .official-menu-panel img { max-height: none; }
}
\n\n

:root {
  --section-space: clamp(72px, 5vw, 88px);
  --section-space-tight: clamp(62px, 4.4vw, 78px);
  --editorial-radius: 8px;
}


.schedule-section,
.menu-section,
.gallery-section,
.content-section,
.catering-section,
.rewards-section,
.form-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.brand-break { min-height: 430px; }
.story-section { padding: 52px 0 66px; }
.section-heading { margin-bottom: 36px; }


.schedule-card,
.venue-card,
.tonight-card {
  border-radius: 12px;
  border-color: rgba(243,238,223,.085);
  background: rgba(255,255,255,.026);
  box-shadow: none;
}
.schedule-card.today {
  border-color: rgba(83,223,137,.34);
  box-shadow: inset 0 0 0 1px rgba(83,223,137,.07);
}
.schedule-card:hover,
.venue-card:hover { transform: translateY(-2px); }


.food-grid {
  grid-template-columns: 1fr 1.08fr .92fr;
  gap: clamp(20px,2.2vw,32px);
  align-items: start;
}
.food-card {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.food-card-offset { margin-top: 34px; }
.food-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--editorial-radius);
  background: #d8cfba;
}
.food-card:nth-child(2) .food-image { aspect-ratio: 1 / 1.08; }
.food-card:nth-child(3) .food-image { aspect-ratio: 4 / 5; }
.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.food-card:nth-child(1) .food-image img { object-position: center 45%; }
.food-card:nth-child(2) .food-image img { object-position: center 48%; }
.food-card:nth-child(3) .food-image img { object-position: center 52%; }
.food-copy {
  padding: 16px 2px 0;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
}


.story-grid {
  grid-template-columns: minmax(0,1.06fr) minmax(0,.94fr);
  gap: clamp(42px,5vw,70px);
  align-items: center;
}
.story-visual {
  position: relative;
  display: block;
  min-height: 0;
  height: 500px;
}
.story-main {
  position: absolute;
  inset: 0 auto auto 0;
  width: 61%;
  height: 470px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 48%;
  background: #090909;
}
.story-mini {
  position: absolute;
  right: 3%;
  bottom: 18px;
  width: 47%;
  height: 258px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 52%;
  border: 0;
  border-radius: 9px;
  background: #090909;
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
}
.story-copy { align-self: center; }
.story-copy h2 { margin-bottom: 20px; }
.story-copy > p:not(.eyebrow) { max-width: 520px; }


.catering-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.catering-visual img {
  object-position: center 48%;
}


.official-menu-panel {
  grid-template-columns: minmax(0,.72fr) minmax(340px,1fr);
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #090909;
  box-shadow: none;
  margin-bottom: 62px;
}
.official-menu-copy { padding: clamp(34px,4.5vw,68px); }
.official-menu-panel img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: #090909;
}


.menu-next-actions { gap: clamp(36px,5vw,74px); }
.action-panel {
  padding: 26px 0 0;
  border: 0;
  border-top: 2px solid rgba(9,9,9,.78);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.action-panel:hover { transform: none; }


.story-fact,
.process-card {
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(243,238,223,.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.story-fact:hover,
.process-card:hover { transform: none; border-color: rgba(243,238,223,.28); }


.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr .8fr .8fr .95fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.gallery-a { grid-column: 1; grid-row: 1 / 3; }
.gallery-b { grid-column: 2 / 4; grid-row: 1; }
.gallery-c { grid-column: 4; grid-row: 1 / 3; }
.gallery-d { grid-column: 2; grid-row: 2; }
.gallery-e { grid-column: 3; grid-row: 2; }
.gallery-grid .social-photo,
.gallery-grid img { border-radius: 5px; }
.gallery-grid .social-gallery-video {
  object-fit: cover;
  object-position: center 46%;
}
.gallery-b img { object-position: center 47%; }
.gallery-d img { object-position: center 50%; }
.gallery-e img {
  object-fit: contain;
  object-position: center;
  background: #0b0b0b;
}


@media (min-width: 1051px) {
  .menu-gallery {
    grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
    height: clamp(620px,44vw,720px);
    max-width: 1160px;
    gap: 12px;
  }
  .menu-gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    border-radius: 6px;
  }
  .menu-gallery-stack { gap: 12px; }
  .menu-gallery-stack img {
    border-radius: 6px;
    object-fit: cover;
  }
  .menu-gallery-stack img:first-child { object-position: center 48%; }
  .menu-gallery-stack img:last-child { object-position: center 45%; }
}


.photo-duo { gap: 10px; }
.photo-duo img { border-radius: 8px; }
.photo-duo img:first-child { object-position: center 48%; }
.photo-duo img:last-child { object-position: center 52%; }
.rewards-art img { border-radius: 10px; }

@media (max-width: 1050px) {
  .story-section { padding: 50px 0 62px; }
  .story-grid { grid-template-columns: 1fr; gap: 34px; }
  .story-visual { height: 480px; max-width: 760px; width: 100%; margin-inline: auto; }
  .story-main { width: 58%; height: 450px; }
  .story-mini { width: 45%; height: 238px; right: 4%; bottom: 10px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 240px 220px;
    gap: 8px;
  }
  .gallery-a { grid-column: 1; grid-row: 1 / 3; }
  .gallery-c { grid-column: 2; grid-row: 1 / 3; }
  .gallery-b { grid-column: 1 / 3; grid-row: 3; }
  .gallery-d { grid-column: 1; grid-row: 4; }
  .gallery-e { grid-column: 2; grid-row: 4; }

  .menu-gallery { gap: 12px; }
  .menu-gallery-stack { gap: 12px; }
  .menu-gallery-video,
  .menu-gallery-stack img { border-radius: 6px; }
}

@media (max-width: 720px) {
  :root {
    --section-space: 62px;
    --section-space-tight: 56px;
  }
  .brand-break { min-height: 380px; }
  .story-section { padding: 42px 0 54px; }
  .section-heading { margin-bottom: 28px; }

  .food-grid { grid-template-columns: 1fr; gap: 32px; }
  .food-card-offset { margin-top: 0; }
  .food-card:nth-child(1) .food-image,
  .food-card:nth-child(2) .food-image,
  .food-card:nth-child(3) .food-image { aspect-ratio: 4 / 5; }
  .food-copy { padding-top: 14px; }

  .story-visual {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    max-width: none;
  }
  .story-main {
    position: relative;
    inset: auto;
    width: 78%;
    height: auto;
    aspect-ratio: 3 / 4;
    justify-self: start;
    border-radius: 8px;
  }
  .story-mini {
    position: relative;
    right: auto;
    bottom: auto;
    width: 68%;
    height: auto;
    aspect-ratio: 4 / 3;
    justify-self: end;
    margin-top: -72px;
    border-radius: 7px;
    box-shadow: 0 20px 48px rgba(0,0,0,.38);
  }
  .story-copy { padding-top: 4px; }

  .official-menu-panel { grid-template-columns: 1fr; margin-bottom: 50px; }
  .official-menu-copy { padding: 30px 22px 26px; }
  .official-menu-panel img { max-height: none; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 8px;
  }
  .gallery-a,.gallery-b,.gallery-c,.gallery-d,.gallery-e { grid-column: auto; grid-row: auto; }
  .gallery-a,.gallery-c { aspect-ratio: 4 / 5; }
  .gallery-b,.gallery-d { aspect-ratio: 4 / 3; }
  .gallery-e { aspect-ratio: 3 / 2; }
  .gallery-grid .social-photo { min-height: 0; }

  .menu-next-actions { grid-template-columns: 1fr; gap: 34px; }
  .menu-gallery,
  .menu-gallery-stack { gap: 8px; }
  .menu-gallery-video,
  .menu-gallery-stack img { border-radius: 5px; }
}




.brand-break { min-height: 390px; }
.story-section { padding: 38px 0 56px; }


.story-grid {
  grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr);
  gap: clamp(44px,4.6vw,66px);
  align-items: center;
}
.story-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.92fr);
  gap: clamp(12px,1.25vw,18px);
  align-items: start;
  height: auto;
  min-height: 0;
  max-width: 690px;
}
.story-main,
.story-mini {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #090909;
  border: 0;
  box-shadow: none;
}
.story-main {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-position: center 48%;
}
.story-mini {
  aspect-ratio: 3 / 4;
  margin-top: 42px;
  border-radius: 8px;
  object-position: center 43%;
}
.story-copy {
  align-self: center;
  padding-top: 0;
}
.story-copy h2 { margin-top: 8px; margin-bottom: 18px; }
.story-copy > p:not(.eyebrow) { margin-bottom: 16px; }

@media (max-width: 1050px) {
  .brand-break { min-height: 365px; }
  .story-section { padding: 34px 0 50px; }
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-visual {
    grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
    gap: 12px;
    width: min(100%, 700px);
    max-width: 700px;
    height: auto;
    margin-inline: auto;
  }
  .story-main,
  .story-mini { width: 100%; height: auto; }
  .story-mini { margin-top: 34px; }
  .story-copy { max-width: 700px; width: 100%; margin-inline: auto; }
}

@media (max-width: 720px) {
  .brand-break { min-height: 330px; }
  .story-section { padding: 30px 0 46px; }
  .story-grid { gap: 26px; }
  .story-visual {
    display: grid;
    grid-template-columns: 1.04fr .92fr;
    gap: 8px;
    align-items: start;
  }
  .story-main,
  .story-mini {
    position: relative;
    width: 100%;
    height: auto;
    justify-self: stretch;
    aspect-ratio: 3 / 4;
  }
  .story-mini {
    margin-top: 24px;
    box-shadow: none;
  }
  .story-copy { padding-top: 0; }
}



.gallery-section .section-heading { margin-bottom: clamp(30px, 3vw, 44px); }
.gallery-editorial {
  display: grid;
  gap: 12px;
  width: 100%;
}
.gallery-feature-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #090909;
  border-radius: 6px;
  cursor: default;
}
.gallery-feature-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  background: #090909;
  pointer-events: none;
}
.gallery-feature-video .video-play-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(9,9,9,.78);
  border: 1px solid rgba(243,238,223,.18);
  color: var(--cream);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.gallery-support-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.gallery-editorial-photo {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: #0d0c0b;
}
.gallery-editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-pizza-photo img { object-position: center 56%; }
.gallery-box-photo img { object-position: center 58%; }
.gallery-editorial-photo:hover img,
.gallery-editorial-photo:focus-visible img { transform: scale(1.012); filter: saturate(1.05); }
.gallery-brand-signature {
  justify-self: center;
  display: block;
  width: clamp(190px, 17vw, 280px);
  margin-top: clamp(16px, 2vw, 26px);
  color: var(--cream);
}
.gallery-brand-signature img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .gallery-feature-video { aspect-ratio: 4 / 3; }
  .gallery-support-row { gap: 10px; }
  .gallery-editorial-photo { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  .gallery-section .section-heading { margin-bottom: 28px; }
  .gallery-editorial { gap: 10px; }
  .gallery-feature-video { aspect-ratio: 4 / 3; border-radius: 4px; }
  .gallery-support-row { grid-template-columns: 1fr; gap: 10px; }
  .gallery-editorial-photo { aspect-ratio: 4 / 3; border-radius: 4px; }
  .gallery-pizza-photo { order: 1; }
  .gallery-box-photo { order: 2; }
  .gallery-brand-signature { width: min(58vw, 250px); margin-top: 18px; }
  .gallery-feature-video .video-play-label { left: 12px; bottom: 12px; }
}



@media (max-width: 720px) {
  .site-header.scrolled,
  .site-header.solid {
    background: rgba(9,9,9,.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .hero-status,
  .gallery-feature-video .video-play-label {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
body[data-page="story"] .story-page-hero{min-height:430px;padding:130px 0 64px}
body[data-page="story"] .story-page-hero .page-hero-inner{align-items:end}
body[data-page="story"] .story-page-hero .page-hero-copy{max-width:500px}
body[data-page="story"] .story-page-intro{padding:72px 0 82px}
body[data-page="story"] .story-page-intro-grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:clamp(54px,6vw,92px);align-items:center}
body[data-page="story"] .story-page-media{display:grid;gap:18px;min-width:0;max-width:620px}
body[data-page="story"] .story-page-main-photo{margin:0;aspect-ratio:4/5;overflow:hidden;border-radius:8px;background:#111}
body[data-page="story"] .story-page-main-photo img{width:100%;height:100%;object-fit:cover;object-position:center 48%;display:block}
body[data-page="story"] .story-page-brand-signature{display:flex;align-items:center;min-height:118px;padding:8px 0 0}
body[data-page="story"] .story-page-brand-signature img{display:block;width:min(390px,78%);height:auto;max-height:150px;object-fit:contain;object-position:left center}
body[data-page="story"] .story-page-copy{max-width:610px}
body[data-page="story"] .story-page-copy h2{font-size:clamp(68px,6vw,102px);line-height:.86;margin:8px 0 24px}
body[data-page="story"] .story-page-copy>p:not(.eyebrow){max-width:560px;color:var(--muted);font-size:18px;margin:0 0 16px}
body[data-page="story"] .story-page-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin-top:38px;border-top:1px solid rgba(243,238,223,.18);border-bottom:1px solid rgba(243,238,223,.12)}
body[data-page="story"] .story-page-facts>div{padding:20px 18px 22px 0;min-width:0}
body[data-page="story"] .story-page-facts>div+div{padding-left:18px;border-left:1px solid rgba(243,238,223,.12)}
body[data-page="story"] .story-page-facts span{display:block;margin-bottom:8px;color:var(--gold);font-size:10px;font-weight:950;letter-spacing:.14em}
body[data-page="story"] .story-page-facts strong{display:block;font-size:15px;line-height:1.35}
body[data-page="story"] .story-page-footprint{padding:74px 0 86px;border-top:1px solid rgba(243,238,223,.06)}
body[data-page="story"] .story-page-section-head{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:54px;align-items:end}
body[data-page="story"] .story-page-section-head h2{font-size:clamp(62px,6vw,98px);line-height:.88;margin:8px 0 0}
body[data-page="story"] .story-page-section-head>p{max-width:520px;justify-self:end;color:var(--muted);font-size:17px;margin:0 0 8px}
body[data-page="story"] .story-page-city-line{display:flex;flex-wrap:wrap;gap:10px 26px;margin-top:36px;padding:18px 0;border-top:1px solid rgba(243,238,223,.16);border-bottom:1px solid rgba(243,238,223,.10)}
body[data-page="story"] .story-page-city-line span{font-family:var(--display);font-size:clamp(24px,2.2vw,34px);letter-spacing:.01em}
body[data-page="story"] .story-page-city-line span:not(:last-child)::after{content:'•';margin-left:26px;color:var(--green)}
body[data-page="story"] .story-page-photo-strip{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);gap:14px;margin-top:30px}
body[data-page="story"] .story-page-photo{margin:0;overflow:hidden;border-radius:8px;background:#111}
body[data-page="story"] .story-page-photo-pizza{aspect-ratio:5/4}
body[data-page="story"] .story-page-photo-box{aspect-ratio:5/4}
body[data-page="story"] .story-page-photo img{width:100%;height:100%;object-fit:cover;display:block}
body[data-page="story"] .story-page-photo-pizza img{object-position:center 52%}
body[data-page="story"] .story-page-photo-box img{object-position:center 56%}
body[data-page="story"] .story-page-rewards{padding:78px 0 92px;border-top:1px solid rgba(243,238,223,.06)}
body[data-page="story"] .story-page-rewards-grid{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);gap:clamp(48px,6vw,86px);align-items:center}
body[data-page="story"] .story-page-rewards-art{min-width:0}
body[data-page="story"] .story-page-rewards-art img{display:block;width:100%;height:auto;max-height:540px;object-fit:contain;object-position:left center}
body[data-page="story"] .story-page-rewards-copy h2{font-size:clamp(62px,5.8vw,96px);line-height:.88;margin:8px 0 22px}
body[data-page="story"] .story-page-rewards-copy>p:not(.eyebrow){max-width:520px;color:var(--muted);font-size:18px}
body[data-page="story"] .story-page-rewards-rule{display:inline-block;margin-top:18px;padding-top:16px;border-top:1px solid rgba(243,238,223,.18);font-size:16px}
body[data-page="story"] .story-page-close{padding:84px 0 92px}
body[data-page="story"] .story-page-close-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(300px,.88fr);gap:64px;align-items:end}
body[data-page="story"] .story-page-close h2{color:var(--black);font-size:clamp(64px,6.4vw,106px);line-height:.86;margin:8px 0 0}
body[data-page="story"] .story-page-close h2 span{color:var(--red)}
body[data-page="story"] .story-page-close-actions{padding-bottom:8px}
body[data-page="story"] .story-page-close-actions>p{max-width:520px;margin:0 0 24px;color:rgba(9,9,9,.66);font-size:17px}
body[data-page="story"] .story-page-instagram{display:inline-block;margin-top:22px;color:var(--black);font-weight:900}
@media(max-width:1000px){
body[data-page="story"] .story-page-intro-grid,body[data-page="story"] .story-page-rewards-grid{grid-template-columns:1fr;gap:42px}
body[data-page="story"] .story-page-media{max-width:760px;width:100%;margin-inline:auto}
body[data-page="story"] .story-page-main-photo{aspect-ratio:16/11}
body[data-page="story"] .story-page-brand-signature{justify-content:flex-start}
body[data-page="story"] .story-page-copy{max-width:760px;width:100%;margin-inline:auto}
body[data-page="story"] .story-page-section-head{grid-template-columns:1fr;gap:22px}
body[data-page="story"] .story-page-section-head>p{justify-self:start}
body[data-page="story"] .story-page-rewards-art img{max-height:480px;object-position:center}
body[data-page="story"] .story-page-close-grid{grid-template-columns:1fr;gap:34px}
}
@media(max-width:700px){
body[data-page="story"] .story-page-hero{min-height:390px;padding:118px 0 48px}
body[data-page="story"] .story-page-intro{padding:44px 0 54px}
body[data-page="story"] .story-page-intro-grid{gap:30px}
body[data-page="story"] .story-page-main-photo{aspect-ratio:4/5;border-radius:5px}
body[data-page="story"] .story-page-brand-signature{min-height:auto;padding-top:0}
body[data-page="story"] .story-page-brand-signature img{width:min(100%,390px);max-height:none}
body[data-page="story"] .story-page-copy h2{font-size:clamp(54px,16vw,76px)}
body[data-page="story"] .story-page-copy>p:not(.eyebrow){font-size:16px}
body[data-page="story"] .story-page-facts{grid-template-columns:1fr;margin-top:28px}
body[data-page="story"] .story-page-facts>div{padding:16px 0}
body[data-page="story"] .story-page-facts>div+div{padding-left:0;border-left:0;border-top:1px solid rgba(243,238,223,.10)}
body[data-page="story"] .story-page-footprint{padding:50px 0 58px}
body[data-page="story"] .story-page-section-head h2{font-size:clamp(52px,15vw,74px)}
body[data-page="story"] .story-page-section-head>p{font-size:15px}
body[data-page="story"] .story-page-city-line{gap:8px 14px;margin-top:26px;padding:14px 0}
body[data-page="story"] .story-page-city-line span{font-size:24px}
body[data-page="story"] .story-page-city-line span:not(:last-child)::after{margin-left:14px}
body[data-page="story"] .story-page-photo-strip{grid-template-columns:1fr;gap:10px;margin-top:22px}
body[data-page="story"] .story-page-photo-pizza,body[data-page="story"] .story-page-photo-box{aspect-ratio:4/5;border-radius:5px}
body[data-page="story"] .story-page-rewards{padding:52px 0 62px}
body[data-page="story"] .story-page-rewards-grid{gap:30px}
body[data-page="story"] .story-page-rewards-art img{max-height:none;width:100%}
body[data-page="story"] .story-page-rewards-copy h2{font-size:clamp(52px,15vw,76px)}
body[data-page="story"] .story-page-close{padding:58px 0 66px}
body[data-page="story"] .story-page-close h2{font-size:clamp(54px,15vw,78px)}
body[data-page="story"] .story-page-close-actions>p{font-size:15px}
body[data-page="story"] .story-page-close-actions .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
body[data-page="story"] .story-page-close-actions .button{width:100%}
}

.gallery-feature-video{aspect-ratio:4/3}
.gallery-feature-media{object-position:center center}
.gallery-support-row{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;align-items:stretch}
.gallery-editorial-video{position:relative;aspect-ratio:4/5;overflow:hidden;border-radius:6px;background:#090909;min-width:0}
.gallery-support-media{display:block;width:100%;height:100%;object-fit:cover;object-position:center center}
.gallery-night-video .gallery-support-media{object-position:center 44%}
.gallery-boxes-video .gallery-support-media{object-position:center 34%}

body[data-page="story"] .story-page-process-media{position:relative}
body[data-page="story"] .story-page-process-video{display:block;width:100%;height:100%;object-fit:cover;object-position:center 54%}
body[data-page="story"] .story-page-footprint{position:relative;isolation:isolate;overflow:clip;min-height:min(920px,92svh);padding:0;border-top:1px solid rgba(243,238,223,.06);display:flex;flex-direction:column;justify-content:center}
body[data-page="story"] .story-footprint-bg-stage{position:sticky;top:0;height:100svh;margin-bottom:-100svh;z-index:0;overflow:hidden;pointer-events:none;background:#080808}
body[data-page="story"] .story-footprint-bg-stage::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,8,8,.91) 0%,rgba(8,8,8,.76) 48%,rgba(8,8,8,.82) 100%),linear-gradient(180deg,rgba(8,8,8,.30),rgba(8,8,8,.48));pointer-events:none}
body[data-page="story"] .story-footprint-bg-video{display:block;width:100%;height:100%;object-fit:cover;object-position:center 48%;opacity:.62}
body[data-page="story"] .story-footprint-content{position:relative;z-index:2;padding-top:clamp(100px,12vh,150px);padding-bottom:clamp(110px,14vh,170px)}
body[data-page="story"] .story-footprint-action{margin-top:34px}
body[data-page="story"] .story-footprint-action .button{border-color:rgba(243,238,223,.48);background:rgba(8,8,8,.16)}
body[data-page="story"] .story-page-footprint .story-page-section-head>p{color:rgba(243,238,223,.76)}
body[data-page="story"] .story-page-footprint .story-page-city-line{border-color:rgba(243,238,223,.26)}

@media(max-width:720px){
  .gallery-feature-video{aspect-ratio:4/3}
  .gallery-support-row{grid-template-columns:1fr;gap:10px}
  .gallery-editorial-video{aspect-ratio:4/5;border-radius:4px}
  body[data-page="story"] .story-page-footprint{min-height:82svh}
  body[data-page="story"] .story-footprint-bg-stage{height:100svh;margin-bottom:-100svh}
  body[data-page="story"] .story-footprint-bg-video{object-position:center 50%;opacity:.56}
  body[data-page="story"] .story-footprint-bg-stage::after{background:linear-gradient(180deg,rgba(8,8,8,.76) 0%,rgba(8,8,8,.66) 48%,rgba(8,8,8,.82) 100%)}
  body[data-page="story"] .story-footprint-content{padding-top:88px;padding-bottom:96px}
  body[data-page="story"] .story-footprint-action{margin-top:26px}
  body[data-page="story"] .story-footprint-action .button{width:100%}
}

@media(prefers-reduced-motion:reduce){
  body[data-page="story"] .story-footprint-bg-stage{position:absolute;inset:0;height:auto;margin:0}
}

.site-footer .footer-heading { margin: 0 0 18px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.center-card { min-width: 0; }
@media (max-width: 340px) {
  .center-page { padding-left: 14px; padding-right: 14px; }
  .center-card h1 { font-size: clamp(46px, 15vw, 54px); line-height: .91; overflow-wrap: normal; word-break: normal; }
  .center-card p { font-size: 16px; }
  .center-actions { gap: 8px; }
  .center-actions .button { padding-left: 12px; padding-right: 12px; }
}


/* MOBILE-01 — prevent fast-scroll reveal gaps on touch layouts. */
@media (max-width: 768px) {
  html, body { max-width: 100%; overflow-x: clip; }
  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
