/* ==============================================================
   STK CINEMA — cream/champagne chrome + moody STK photography full-bleed.
   Type IS cream, photography IS moody. Cinematic rhythm.
   ============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,200;6..72,300;6..72,400;6..72,500&family=Inter+Tight:wght@300;400;500;600;700&family=Anton&family=Barlow+Condensed:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==============================================================
   MOTION SYSTEM
   1) Hero entry — staggered CSS animations on load
   2) Scroll-reveal — IntersectionObserver adds .is-visible class
   3) prefers-reduced-motion — disable all motion for accessibility
   ============================================================== */

/* Hero entry animations (run on page load) */
@keyframes lm-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lm-hero-bg {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

.hero__bg img {
  animation: lm-hero-bg 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__overline,
.hero__headline,
.hero__sub,
.hero__ctas,
.hero__bottom {
  opacity: 0;
  animation: lm-fade-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__overline { animation-delay: 0.25s; }
.hero__headline { animation-delay: 0.45s; }
.hero__sub      { animation-delay: 0.75s; }
.hero__ctas     { animation-delay: 0.95s; }
.hero__bottom   { animation-delay: 1.15s; }

/* Nav fades down */
.nav {
  opacity: 0;
  transform: translateY(-12px);
  animation: lm-nav-down 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes lm-nav-down {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal — elements get .motion-fade-up via JS, then .is-visible on intersection */
.motion-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.motion-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Photo reveal — subtle scale + fade (cinematic image entrance instead of drop) */
.motion-photo-reveal {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.motion-photo-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children in grid sections */
.steaks-grid .steak-card.motion-fade-up:nth-child(2) { transition-delay: 0.12s; }
.steaks-grid .steak-card.motion-fade-up:nth-child(3) { transition-delay: 0.24s; }
.steaks-grid .steak-card.motion-fade-up:nth-child(4) { transition-delay: 0.36s; }

.private-grid .private-card.motion-fade-up:nth-child(2) { transition-delay: 0.15s; }
.private-grid .private-card.motion-fade-up:nth-child(3) { transition-delay: 0.3s; }

.events-grid .event-card.motion-fade-up:nth-child(2) { transition-delay: 0.12s; }
.events-grid .event-card.motion-fade-up:nth-child(3) { transition-delay: 0.24s; }

/* Cocktail cards (drinks page) — 3x2 grid stagger */
.cocktail-cards__grid .cocktail-card.motion-fade-up:nth-child(2) { transition-delay: 0.1s; }
.cocktail-cards__grid .cocktail-card.motion-fade-up:nth-child(3) { transition-delay: 0.2s; }
.cocktail-cards__grid .cocktail-card.motion-fade-up:nth-child(4) { transition-delay: 0.3s; }
.cocktail-cards__grid .cocktail-card.motion-fade-up:nth-child(5) { transition-delay: 0.4s; }
.cocktail-cards__grid .cocktail-card.motion-fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Bottle library — horizontal shelf stagger */
.bottle-library__cell.motion-photo-reveal { transition-duration: 1s; }
.bottle-library__cell.motion-photo-reveal:nth-child(2) { transition-delay: 0.06s; }
.bottle-library__cell.motion-photo-reveal:nth-child(3) { transition-delay: 0.12s; }
.bottle-library__cell.motion-photo-reveal:nth-child(4) { transition-delay: 0.18s; }
.bottle-library__cell.motion-photo-reveal:nth-child(5) { transition-delay: 0.24s; }
.bottle-library__cell.motion-photo-reveal:nth-child(6) { transition-delay: 0.3s; }
.bottle-library__cell.motion-photo-reveal:nth-child(7) { transition-delay: 0.36s; }
.bottle-library__cell.motion-photo-reveal:nth-child(8) { transition-delay: 0.42s; }

/* Behind-the-bar cards — 4-up stagger */
.behind-bar__grid .behind-bar__card.motion-fade-up:nth-child(2) { transition-delay: 0.1s; }
.behind-bar__grid .behind-bar__card.motion-fade-up:nth-child(3) { transition-delay: 0.2s; }
.behind-bar__grid .behind-bar__card.motion-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Celebrations cards — 4-up stagger */
.celebrations-grid .celebration-card.motion-fade-up:nth-child(2) { transition-delay: 0.1s; }
.celebrations-grid .celebration-card.motion-fade-up:nth-child(3) { transition-delay: 0.2s; }
.celebrations-grid .celebration-card.motion-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Process steps — 3-up stagger */
.process-grid .process-step.motion-fade-up:nth-child(2) { transition-delay: 0.12s; }
.process-grid .process-step.motion-fade-up:nth-child(3) { transition-delay: 0.24s; }

/* Seasonal events — list stagger */
.seasonal-events-list .seasonal-event.motion-fade-up:nth-child(2) { transition-delay: 0.08s; }
.seasonal-events-list .seasonal-event.motion-fade-up:nth-child(3) { transition-delay: 0.16s; }
.seasonal-events-list .seasonal-event.motion-fade-up:nth-child(4) { transition-delay: 0.24s; }

/* Info trio items — 3-up stagger */
.info-trio__grid > *.motion-fade-up:nth-child(2) { transition-delay: 0.12s; }
.info-trio__grid > *.motion-fade-up:nth-child(3) { transition-delay: 0.24s; }

/* Triple-column menu category stagger */
.menu-category-triple .menu-category.motion-fade-up:nth-child(2) { transition-delay: 0.12s; }
.menu-category-triple .menu-category.motion-fade-up:nth-child(3) { transition-delay: 0.24s; }

/* Triptych cells — 3-up stagger (photos use scale-reveal not fade-up) */
.triptych__cell.motion-photo-reveal:nth-child(2) { transition-delay: 0.12s; }
.triptych__cell.motion-photo-reveal:nth-child(3) { transition-delay: 0.24s; }

/* FAQ items — sequential reveal */
.faq-list .faq-item.motion-fade-up:nth-child(2) { transition-delay: 0.06s; }
.faq-list .faq-item.motion-fade-up:nth-child(3) { transition-delay: 0.12s; }
.faq-list .faq-item.motion-fade-up:nth-child(4) { transition-delay: 0.18s; }
.faq-list .faq-item.motion-fade-up:nth-child(5) { transition-delay: 0.24s; }

/* Wine table columns — 2-up stagger */
.wine-table__columns .wine-table__col.motion-fade-up:nth-child(2) { transition-delay: 0.12s; }

/* Within a section's head block, stagger overline → display → body lede */
.section--cream .overline.motion-fade-up,
.section--cream .display.motion-fade-up,
.section--cream p.motion-fade-up,
.steaks-section__head > div > .motion-fade-up,
.events-section__head > div > .motion-fade-up,
.private-section .section__inner > .motion-fade-up,
.menu-text > .motion-fade-up,
.visit-section__main > .motion-fade-up,
.photoblock__content > .motion-fade-up,
.guest-inner > .motion-fade-up {
  /* nothing extra — base motion-fade-up handles them */
}

.menu-text > .motion-fade-up:nth-child(2) { transition-delay: 0.08s; }
.menu-text > .motion-fade-up:nth-child(3) { transition-delay: 0.16s; }
.menu-text > .motion-fade-up:nth-child(4) { transition-delay: 0.24s; }
.menu-text > .motion-fade-up:nth-child(5) { transition-delay: 0.32s; }
.menu-text > .motion-fade-up:nth-child(6) { transition-delay: 0.4s; }

.visit-section__main > .motion-fade-up:nth-child(2) { transition-delay: 0.1s; }
.visit-section__main > .motion-fade-up:nth-child(3) { transition-delay: 0.2s; }
.visit-section__main > .motion-fade-up:nth-child(4) { transition-delay: 0.3s; }

.photoblock__content > .motion-fade-up:nth-child(2) { transition-delay: 0.1s; }
.photoblock__content > .motion-fade-up:nth-child(3) { transition-delay: 0.2s; }
.photoblock__content > .motion-fade-up:nth-child(4) { transition-delay: 0.3s; }

.guest-inner > .motion-fade-up:nth-child(2) { transition-delay: 0.1s; }
.guest-inner > .motion-fade-up:nth-child(3) { transition-delay: 0.2s; }
.guest-inner > .motion-fade-up:nth-child(4) { transition-delay: 0.3s; }
.guest-inner > .motion-fade-up:nth-child(5) { transition-delay: 0.4s; }

/* Honour user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__overline, .hero__headline, .hero__sub, .hero__ctas, .hero__bottom,
  .hero__bg img, .nav,
  .motion-fade-up, .motion-fade-up.is-visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}


:root {
  /* Cream chrome palette — for UI, type, sections between photography */
  --alabaster: #F4EFE6;
  --bone: #EFE9DD;
  --warm-white: #FFF8F4;
  --cream-warm: #FBF2EB;
  --cream-deep: #E8DCC8;

  /* Type ink */
  --ink: #1F1B17;
  --ink-soft: #4A463F;
  --ink-quiet: #6B665D;
  --ink-on-photo: #F4EFE6;
  --ink-on-photo-quiet: rgba(244, 239, 230, 0.7);

  /* The only metal */
  --champagne: #C9A96E;
  --champagne-light: #D9BE82;
  --champagne-deep: #A88842;

  /* Atmosphere */
  --vapor: #DDD7CB;

  /* Type */
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--alabaster);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==============================================================
   NAV — frosted glass, smaller, more discreet
   ============================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 56px;
  background: rgba(255, 248, 244, 0.45);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  height: 48px;
  position: relative;
}
.nav__brand-img {
  height: 100%;
  width: auto;
  display: block;
  transition: opacity 0.4s ease;
}
/* Default state (over cream): show dark logo */
.nav__brand-img--white { opacity: 0; position: absolute; inset: 0; height: 100%; }
.nav__brand-img--dark { opacity: 1; }
/* Over-photo state (hero or other dark surfaces): show white logo */
.nav--on-photo .nav__brand-img--white { opacity: 1; }
.nav--on-photo .nav__brand-img--dark { opacity: 0; }

.nav__links {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav__links li { padding: 0 24px; }
.nav__links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav__links a:hover { color: var(--champagne); }

.nav__cta {
  margin-left: 32px;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--alabaster);
  background: var(--ink);
  text-decoration: none;
  transition: background 0.3s ease;
}
.nav__cta:hover { background: var(--champagne-deep); }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin-left: 12px;
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 110;
}
.nav__toggle-bar {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), top 0.3s ease, opacity 0.2s ease;
}
.nav__toggle-bar:nth-child(1) { top: 14px; }
.nav__toggle-bar:nth-child(2) { top: 22px; }
/* Light bars when nav is on photo (dark surface) */
.nav--on-photo .nav__toggle-bar { background: var(--alabaster); }
/* Open state — bars cross into X */
.nav.is-open .nav__toggle-bar:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav.is-open .nav__toggle-bar:nth-child(2) { top: 18px; transform: rotate(-45deg); }
.nav.is-open .nav__toggle-bar { background: var(--ink); }

/* Variant of nav for full-bleed dark hero — invert chrome */
.nav--on-photo {
  background: rgba(31, 27, 23, 0.25);
  backdrop-filter: blur(20px) saturate(120%);
}
.nav--on-photo .nav__links a { color: var(--alabaster); }
.nav--on-photo .nav__links a:hover { color: var(--champagne); }
.nav--on-photo .nav__cta { background: var(--alabaster); color: var(--ink); }
.nav--on-photo .nav__cta:hover { background: var(--champagne); color: var(--ink); }

/* ==============================================================
   HERO — FULL-BLEED 100vh moody STK photography with overlaid type
   ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Bottom padding pushes the info bar above the cream fade zone */
  padding: 120px 56px 200px;
  overflow: hidden;
  color: var(--alabaster);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Tight fade at the bottom edge; pre-tinted with cream above the mask zone */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Photo is moody — no high-key treatment. Only a touch of warmth */
  filter: brightness(0.78) saturate(1.05) contrast(1.08);
}

/* Fireworks page hero — portrait composition (fireworks at top, falls middle,
   table foreground), anchor to top so the fireworks burst is visible on desktop. */
.cinema-v2-fireworks .hero__bg img { object-position: center top; }
@media (max-width: 900px) {
  .cinema-v2-fireworks .hero__bg img { object-position: center 20%; }
}

/* Vimeo background video: scale to always cover the hero, regardless of
   viewport aspect ratio. Same moody filter as the photo treatment. */
.hero__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: brightness(0.78) saturate(1.05) contrast(1.08);
}

/* Cinematic vignette for type legibility, plus a subtle cream pre-blend at the bottom edge
   so the photo's last 15% is already cream-tinted BEFORE the mask fade kicks in.
   Result: the fade-to-cream transition is between two cream-tinted values, not dark->cream. */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 82%, rgba(244, 239, 230, 0.55) 100%),
    linear-gradient(180deg, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.15) 28%, rgba(15, 12, 10, 0.2) 55%, rgba(15, 12, 10, 0.55) 78%, rgba(15, 12, 10, 0.2) 100%),
    radial-gradient(ellipse 90% 70% at 50% 55%, transparent 0%, rgba(15, 12, 10, 0.25) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.hero__overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 32px;
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 8.4vw, 144px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--alabaster);
  max-width: 1200px;
  margin-bottom: 48px;
}

.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--champagne-light);
}

.hero__sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.85);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--alabaster);
  color: var(--ink);
}
.btn--primary:hover { background: var(--champagne); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--alabaster);
  border-color: rgba(244, 239, 230, 0.5);
}
.btn--ghost:hover { border-color: var(--champagne); color: var(--champagne); }

.btn--dark {
  background: var(--ink);
  color: var(--alabaster);
}
.btn--dark:hover { background: var(--champagne-deep); }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--alabaster); }

.hero__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 56px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}

.hero__bottom-item {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  /* Brighter cream so secondary text stays legible across the bottom of the hero */
  color: rgba(244, 239, 230, 0.85);
}

.hero__bottom-item strong {
  display: block;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 11px;
}

/* Cream-section variant — used when the hero copy block is moved into
   the cream brand statement section. Inverts colours for legibility. */
.hero__bottom--cream {
  margin-top: 56px;
  border-top-color: rgba(31, 27, 23, 0.18);
}
.hero__bottom--cream .hero__bottom-item {
  color: rgba(31, 27, 23, 0.72);
}
.hero__bottom--cream .hero__bottom-item strong {
  color: var(--champagne-deep);
}

/* Cream brand-statement section now holds the moved hero copy: widen the
   container so "The Steakhouse," doesn't wrap mid-phrase, keep each line
   of the display headline as a single non-breaking line, and centre the
   CTA row to match the section's centred text alignment. */
.section--cream .section__inner--narrow { max-width: 1200px; }
.section--cream .display--xl { white-space: nowrap; }
.section--cream .hero__ctas { justify-content: center; }

/* ==============================================================
   CREAM SECTION — typographic moment between photo sections
   ============================================================== */
.section--cream {
  background: var(--alabaster);
  padding: 180px 56px;
  position: relative;
}

.section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 880px;
  text-align: center;
}
.section__inner--narrow > p {
  margin-left: auto;
  margin-right: auto;
}

.overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
  display: inline-block;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.display--xl { font-size: clamp(72px, 8vw, 140px); }
.display--lg { font-size: clamp(56px, 6vw, 96px); }
.display--md { font-size: clamp(40px, 4.4vw, 64px); }

.display em { font-style: italic; color: var(--champagne-deep); }

.body-lg {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
}
.body-md {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ==============================================================
   FULL-BLEED PHOTO SECTION — alternates with cream sections.
   Cinematic, type overlaid.
   ============================================================== */
.photoblock {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--alabaster);
}

.photoblock__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Tight top and bottom fades */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.photoblock__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05) contrast(1.08);
}

/* Cream pre-blend at top + bottom 18% so the photo edges are already cream-tinted
   BEFORE the mask fades them. Combined with the mask, the transition is invisible. */
.photoblock__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.55) 0%, transparent 18%, transparent 82%, rgba(244, 239, 230, 0.55) 100%),
    linear-gradient(180deg, transparent 0%, transparent 25%, rgba(15, 12, 10, 0.1) 45%, rgba(15, 12, 10, 0.55) 75%, rgba(15, 12, 10, 0.1) 100%);
  pointer-events: none;
}

.photoblock__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 56px 140px;
  max-width: 1400px;
  margin: 0 auto;
}

.photoblock__overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}

.photoblock__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--alabaster);
  max-width: 900px;
  margin-bottom: 32px;
}

.photoblock__headline em { font-style: italic; color: var(--champagne-light); }

.photoblock__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.85);
  max-width: 540px;
  margin-bottom: 40px;
}

/* Photoblock variant — content RIGHT instead of left */
.photoblock--right .photoblock__content { align-items: flex-end; text-align: right; }
.photoblock--right .photoblock__body { margin-left: auto; }

/* ==============================================================
   ELEVATED SIDE-BY-SIDE PATTERN
   Photo bleeds off canvas edge. Text gets generous inset margin.
   Structured caption block on photo. Vintage-style index label.
   ============================================================== */

/* Index label: "01 / The Table" — sits above section headlines */
.index-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.index-label__num {
  color: var(--champagne-deep);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
}
.index-label__rule {
  width: 32px;
  height: 1px;
  background: var(--champagne);
}
.index-label__text { color: var(--ink); }

/* Caption block — sits in a corner of an editorial photo */
.photo-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-left: 2px solid var(--champagne);
}
.photo-caption__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--champagne-deep);
  letter-spacing: 0.02em;
}
.photo-caption__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.photo-caption--right { left: auto; right: 32px; }
.photo-caption--top { bottom: auto; top: 32px; }

/* ==============================================================
   MENU SECTION — elevated: photo bleeds off right, text inset left
   ============================================================== */
/* VERTICAL FLOW — centered intro, full-width 16:9 video, menu list + CTA below.
   Gives the video its natural aspect ratio instead of stretching it into a tall column. */
.menu-section { padding: 120px 56px 200px; overflow: hidden; }

.menu-grid {
  display: grid;
  grid-template-areas:
    "video video"
    "text  listing";
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 96px;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-text {
  grid-area: text;
  max-width: none;
  margin: 0;
  text-align: left;
  padding: 0;
  align-self: start;
}

.menu-text .index-label { justify-content: flex-start; }
.menu-text__rule { margin: 0 0 28px; }
.menu-text > .body-lg { max-width: 520px; margin: 32px 0 0; }

/* Hide the menu list and CTA inside .menu-text — they get moved into .menu-listing beside the intro */
.menu-text .menu-list,
.menu-text > a.btn { display: none; }

.menu-image {
  grid-area: video;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  /* Edge-to-edge: break out of the grid max-width AND the section's 56px padding */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: none;
}
.menu-image img,
.menu-image video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(1.05) contrast(1.05);
}

/* Listing block — sits BESIDE the intro text, both BELOW the video. */
.menu-listing {
  grid-area: listing;
  max-width: none;
  margin: 0;
  text-align: left;
  align-self: start;
}
.menu-listing .menu-list { margin: 0 0 48px; text-align: left; }
.menu-listing .btn { display: inline-flex; }

/* Vimeo iframe (background=1) — Vimeo's player scales the 16:9 source to
   cover the iframe. The iframe fills the container; the video itself crops
   left/right naturally to fill our tall menu-image column. */
.menu-image iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* Champagne hairline accent above section */
.menu-text__rule {
  width: 56px;
  height: 1px;
  background: var(--champagne);
  margin-bottom: 28px;
}

.menu-list {
  list-style: none;
  margin: 56px 0 48px;
}

.menu-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(31, 27, 23, 0.1);
  column-gap: 16px;
  row-gap: 0;
}

.menu-list li:last-child { border-bottom: none; }

.menu-list .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--champagne-deep);
  letter-spacing: 0;
  grid-row: 1;
}

.menu-list .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  grid-row: 1;
}

.menu-list .price {
  color: var(--champagne-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  grid-row: 1;
}

.menu-list .desc {
  grid-row: 2;
  grid-column: 2 / -1;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  line-height: 1.55;
  text-transform: lowercase;
}

.menu-list .group-label {
  grid-column: 1 / -1;
  grid-row: auto;
  padding: 28px 0 4px;
  border-bottom: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  display: block;
}
.menu-list li.is-group-label {
  display: block;
  padding: 28px 0 4px;
  border-bottom: 1px solid rgba(31, 27, 23, 0.1);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}
.menu-list li.is-group-label:first-child { padding-top: 0; }

/* ==============================================================
   STEAKS SECTION — 4-up signature cuts showcase
   Each card: tall photo on top, cream info block below with
   weight tag, cut name (italic accent), profile copy, price.
   ============================================================== */
.steaks-section {
  padding: 200px 56px 200px;
  background: var(--alabaster);
}

.steaks-section__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.steaks-section__head-text { flex: 1 1 480px; }
.steaks-section__head-cta { flex: 0 0 auto; padding-bottom: 12px; }

.steaks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.steak-card {
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.steak-card:hover { transform: translateY(-6px); }

.steak-card__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.steak-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.86) saturate(1.08) contrast(1.08);
}
.steak-card:hover .steak-card__photo img { transform: scale(1.04); }

.steak-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--alabaster);
  background: rgba(15, 12, 10, 0.65);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
}

.steak-card__info {
  padding: 28px 28px 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.steak-card__weight {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 12px;
}

.steak-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.steak-card__name em { font-style: italic; color: var(--champagne-deep); }

.steak-card__desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1 1 auto;
}

.steak-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 27, 23, 0.08);
}

.steak-card__price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--champagne-deep);
}

.steak-card__price-currency {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* Chronicle variant — gold-bordered cards, uppercase sans name */
.chronicle .steak-card { border: 1px solid rgba(201, 169, 110, 0.28); }
.chronicle .steak-card__name {
  font-family: var(--sans);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.chronicle .steak-card__name em { font-style: normal; font-weight: 500; }

/* Reel variant — taller cinema-still cards, smaller info */
.reel .steaks-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel .steak-card__photo { aspect-ratio: 3/4.4; }
.reel .steak-card__name { font-size: 24px; }

/* Brand variant — STK Montserrat treatment with red price */
.brand .steak-card { background: #ffffff; }
.brand .steak-card__tag {
  background: var(--stk-red);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.brand .steak-card__info { border-top-color: rgba(125, 105, 37, 0.3); }
.brand .steak-card__weight {
  color: var(--stk-gold);
  font-weight: 700;
}
.brand .steak-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-size: 22px;
  color: var(--stk-ink);
}
.brand .steak-card__name em {
  font-style: italic;
  font-weight: 300;
  color: var(--stk-gold);
}
.brand .steak-card__desc {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  color: #4a4a4a;
}
.brand .steak-card__price-row { border-top-color: rgba(31, 27, 23, 0.12); }
.brand .steak-card__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--stk-red);
  font-size: 28px;
}
.brand .steak-card__price-currency { color: var(--stk-gold); font-weight: 700; }

/* ==============================================================
   EVENTS SECTION — three-up upcoming-events cards on cream
   Each card is a moody photo with date + title + CTA overlay
   ============================================================== */
.events-section {
  padding: 200px 56px 200px;
  background: var(--alabaster);
  position: relative;
}

.events-section__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}

.events-section__head-text { flex: 1 1 480px; }
.events-section__head-cta { flex: 0 0 auto; padding-bottom: 12px; }

/* PLAYBILL: events as horizontal rows on cream
   Date block left → hairline → title+body center → small photo + CTA right */
.events-grid {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 169, 110, 0.32);
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 220px auto;
  align-items: center;
  gap: 56px;
  padding: 56px 8px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.32);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card:hover { padding-left: 24px; padding-right: 24px; }

/* HOVER: photo takes over the full row background + dark gradient for legibility */
.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--event-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.06);
  filter: brightness(0.7) saturate(1.08) contrast(1.06);
}

.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.82) 0%, rgba(15, 12, 10, 0.5) 55%, rgba(15, 12, 10, 0.18) 100%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card:hover::before { opacity: 1; transform: scale(1); }
.event-card:hover::after { opacity: 1; }

/* All grid children sit above the bg layers */
.event-card > * { position: relative; z-index: 2; }

/* Small accent photo fades out on hover (the big bg replaces it) */
.event-card .event-card__bg { transition: opacity 0.5s ease; }
.event-card:hover .event-card__bg { opacity: 0; }

/* TEXT INVERSION on hover — cream/champagne instead of ink */
.event-card:hover .event-card__date { color: var(--alabaster); }
.event-card:hover .event-card__day { color: var(--champagne-light); }
.event-card:hover .event-card__type { color: var(--champagne-light); }
.event-card:hover .event-card__title { color: var(--alabaster); }
.event-card:hover .event-card__title em { color: var(--champagne-light); }
.event-card:hover .event-card__desc { color: rgba(244, 239, 230, 0.88); }
.event-card:hover .event-card__rsvp { color: var(--alabaster) !important; }
.event-card:hover .event-card__bottom { border-left-color: rgba(244, 239, 230, 0.35); }

.event-card__bg {
  /* the small square photo accent on the right (repurposed) */
  position: relative;
  width: 220px;
  aspect-ratio: 4/5;
  overflow: hidden;
  order: 3;
}
.event-card__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88) saturate(1.05) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.event-card__bg::after { content: none; }
.event-card:hover .event-card__bg img { transform: scale(1.05); }

.event-card__content {
  display: contents; /* let the children sit directly in the grid */
}

/* Date column (first in grid) */
.event-card__date-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-card__day {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}

.event-card__date {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* Title + body column (between date and photo) */
.event-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid rgba(201, 169, 110, 0.35);
  padding-left: 56px;
}

.event-card__type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}

.event-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.event-card__title em { font-style: italic; color: var(--champagne-deep); }

.event-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
}

/* RSVP — far right of the row */
.event-card__rsvp {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  border: none;
  border-top: none !important;
  width: auto;
  padding-top: 0;
  white-space: nowrap;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.event-card__rsvp::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.event-card:hover .event-card__rsvp { color: var(--ink); letter-spacing: 0.36em; }
.event-card:hover .event-card__rsvp::after { transform: translateX(6px); }

/* Chronicle variant — sans display title */
.chronicle .event-card__title {
  font-family: var(--sans);
  font-weight: 200;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.chronicle .event-card__title em { font-style: normal; font-weight: 500; }
.chronicle .event-card__date { font-family: var(--serif); }

/* Reel variant — slightly different proportions */
.reel .event-card { grid-template-columns: 200px 1fr 200px auto; }
.reel .event-card__bg { width: 200px; }
.reel .event-card__day { letter-spacing: 0.44em; }

/* ==============================================================
   PRIVATE DINING SECTION — premium product cards
   Each tier is a photo-led card with champagne foil number overlay,
   tracked capacity spec, italic serif name, body, and Inquire link.
   Subtle vertical stagger breaks the symmetric grid for editorial rhythm.
   ============================================================== */
.private-section {
  padding: 200px 56px 240px;
  background: var(--cream-warm);
}

.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: 1400px;
  margin: 96px auto 0;
  align-items: start;
}

.private-card {
  position: relative;
  background: var(--warm-white);
  border: 1px solid rgba(201, 169, 110, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.private-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(125, 105, 37, 0.25);
}

/* Editorial stagger: middle card sits lower than the outer two */
.private-card:nth-child(2) { margin-top: 56px; }
.private-card:nth-child(2):hover { transform: translateY(-6px); }

.private-card__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.private-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82) saturate(1.08) contrast(1.08);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Secondary photo crossfade: hidden + slightly scaled by default; reveals on hover */
.private-card__photo-secondary {
  opacity: 0;
  transform: scale(1.04);
}

.private-card:hover .private-card__photo-primary { opacity: 0; }
.private-card:hover .private-card__photo-secondary { opacity: 1; transform: scale(1); }

.private-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.45) 0%, transparent 35%, transparent 60%, rgba(15, 12, 10, 0.65) 100%);
  pointer-events: none;
}

/* Champagne foil number overlay — italic serif, large, sits on photo */
.private-card__num {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--champagne-light);
  text-shadow: 0 2px 14px rgba(15, 12, 10, 0.45);
}

/* Capacity tag at bottom-right of photo */
.private-card__capacity-tag {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--alabaster);
  background: rgba(15, 12, 10, 0.55);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
}

.private-card__info {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.private-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.private-card__name em { font-style: italic; color: var(--champagne-deep); }

.private-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1 1 auto;
}

.private-card__inquire {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 169, 110, 0.32);
  width: 100%;
  transition: color 0.3s ease;
}

.private-card__inquire::after {
  content: '→';
  margin-left: auto;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.private-card:hover .private-card__inquire { color: var(--ink); }
.private-card:hover .private-card__inquire::after { transform: translateX(6px); }

/* ==============================================================
   VISIT SECTION — full-bleed photoblock with overlay address + hours
   Flows naturally between Fireworks photoblock above and Guest List below.
   ============================================================== */
.visit-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--alabaster);
  display: flex;
  flex-direction: column;
}

.visit-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Same fade pattern as .photoblock__bg for smooth in/out */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.visit-section__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78) saturate(1.05) contrast(1.08);
}

.visit-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.55) 0%, transparent 18%, transparent 82%, rgba(244, 239, 230, 0.55) 100%),
    linear-gradient(180deg, transparent 0%, transparent 25%, rgba(15, 12, 10, 0.1) 45%, rgba(15, 12, 10, 0.55) 75%, rgba(15, 12, 10, 0.1) 100%);
  pointer-events: none;
}

/* ==============================================================
   PHOTO-TO-PHOTO CROSSFADE (no cream gap between dark sections)
   When .visit-section follows a .photoblock, OR a .guest-section
   follows a .visit-section, the two photos blend directly through
   each other in the overlap zone.
   ============================================================== */

/* Pull the lower section up to overlap the section above it.
   Only Fireworks->Visit needs the direct photo-to-photo crossfade now;
   Visit->Guest goes to a cream section so a normal fade is correct. */
.photoblock + .visit-section {
  margin-top: -14vh;
  z-index: 1;
  position: relative;
}

/* Photoblock that meets a visit-section: its BOTTOM stays solid (no fade to cream).
   The section below will crossfade in via its own top mask. */
.photoblock:has(+ .visit-section) .photoblock__bg {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
}
.photoblock:has(+ .visit-section) .photoblock__bg::after {
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.55) 0%, transparent 18%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 25%, rgba(15, 12, 10, 0.1) 45%, rgba(15, 12, 10, 0.5) 75%, rgba(15, 12, 10, 0.45) 100%);
}

.visit-section__inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 56px 160px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.visit-section__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
  padding: 40px 0;
}

.visit-section__main .overline {
  color: var(--champagne-light);
  margin-bottom: 28px;
}

.visit-section .display {
  color: var(--alabaster);
  margin-bottom: 32px;
}
.visit-section .display em { color: var(--champagne-light); }

.visit-section__lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.82);
  max-width: 580px;
  margin-bottom: 40px;
}

.visit-section .visit-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}

.visit-info-bar__item {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.75);
  letter-spacing: 0.02em;
}

.visit-info-bar__item strong {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

/* Brand variant: STK red accents in visit info bar */
.brand .visit-info-bar__item strong { color: var(--stk-gold-light); }
.brand .visit-section .display { color: var(--alabaster); }
.brand .visit-section .display em { color: var(--stk-gold-light); }
.brand .visit-section__main .overline { color: var(--stk-gold-light); }

/* Old utility classes kept for reference but no longer used in layout */
.visit-text__rule { display: none; }
.visit-address, .visit-hours { display: none; }
.visit-photo, .visit-text { display: none; }

.visit-text .display { margin-bottom: 56px; }

.visit-address {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 2.2;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(31, 27, 23, 0.12);
}

.visit-hours {
  margin-bottom: 48px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 2.2;
}

.visit-hours span { color: var(--champagne-deep); font-weight: 600; }

.visit-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==============================================================
   GUEST LIST — CREAM MARQUEE
   A bright, centered editorial moment between the dark Visit photoblock
   and the dark footer. No background photo — just big type and a clean
   horizontal form line with champagne accents.
   ============================================================== */
.guest-section {
  position: relative;
  padding: 220px 56px 220px;
  background: var(--alabaster);
  text-align: center;
  overflow: hidden;
  color: var(--ink);
}

/* Old photo bg disabled (kept for backward-compat with HTML) */
.guest-section__bg { display: none; }

.guest-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  display: block;
  text-align: center;
  width: 100%;
}

/* Champagne hairline accents flanking the form */
.guest-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -64px;
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--champagne) 100%);
  opacity: 0.45;
  transform: translateY(20px);
}
.guest-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -64px;
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne) 0%, transparent 100%);
  opacity: 0.45;
  transform: translateY(20px);
}

.guest-section .overline { color: var(--champagne-deep); margin-bottom: 36px; display: inline-block; }

.guest-section .display {
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}
.guest-section .display em { color: var(--champagne-deep); }

.guest-section__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 64px;
}

.guest-form {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 24px;
}

.guest-form__label { display: none; }

.guest-form__row {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--champagne);
  padding: 4px 0;
}

.guest-form input[type="email"] {
  flex: 1 1 auto;
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  padding: 22px 8px;
  outline: none;
  letter-spacing: 0.02em;
}
.guest-form input::placeholder {
  color: var(--ink-quiet);
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.guest-form button {
  background: transparent;
  color: var(--champagne-deep);
  border: none;
  cursor: pointer;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.guest-form button:hover {
  color: var(--ink);
  letter-spacing: 0.36em;
  background: transparent;
}

.guest-form__fine {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--ink);
  color: var(--alabaster);
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* GOLD BANNER — Get On The Guest List, sits above the main footer */
.footer__banner {
  background: var(--champagne);
  color: var(--ink);
  padding: 32px 80px;
}
.footer__banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__banner-text { flex: 1 1 auto; max-width: 620px; }
.footer__banner-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 6px;
}
.footer__banner-title em {
  font-style: italic;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.footer__banner-sub {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(31, 27, 23, 0.78);
  margin: 0;
  max-width: 540px;
}
.footer__banner-form {
  display: flex;
  align-items: stretch;
  flex: 0 1 auto;
  max-width: 480px;
  min-width: 320px;
}
.footer__banner-input {
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 27, 23, 0.4);
  padding: 14px 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}
.footer__banner-input::placeholder {
  color: rgba(31, 27, 23, 0.5);
  font-style: italic;
}
.footer__banner-input:focus { border-bottom-color: var(--ink); }
.footer__banner-btn {
  background: var(--ink);
  color: var(--alabaster);
  border: 0;
  padding: 14px 28px;
  margin-left: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer__banner-btn:hover { background: #0E0C0A; }

@media (max-width: 900px) {
  .footer__banner { padding: 56px 32px; }
  .footer__banner-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer__banner-form { width: 100%; max-width: 480px; min-width: 0; }
}
@media (max-width: 560px) {
  .footer__banner-form { flex-direction: column; }
  .footer__banner-btn { margin-left: 0; margin-top: 16px; }
}
.footer__main {
  display: grid;
  grid-template-columns: 440px 1fr 1.2fr 1fr;
  align-items: stretch;
  gap: 56px;
  padding: 80px 0 80px 80px;
  max-width: 100%;
}

/* LEFT COLUMN — red STK Steakhouse lockup + vertical separator */
.footer__brand-block {
  border-right: 1px solid rgba(244, 239, 230, 0.18);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__brand-block .footer__brand-img {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 871 / 1012;
}

/* MIDDLE COLUMN — stacked nav links */
.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.footer__links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--alabaster);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 12px 8px;
  display: inline-block;
  line-height: 1;
}
.footer__links a:hover { color: var(--champagne-light); }

/* CONTACT COLUMN — socials + phone + address */
.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--alabaster);
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__socials a:hover { color: var(--champagne-light); transform: translateY(-2px); }
.footer__phone {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--alabaster);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__phone:hover { color: var(--champagne-light); }
.footer__address,
.footer__where {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.78);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
}
.footer__where { text-align: center; }

/* RIGHT COLUMN — food photography bleeding off the right edge */
.footer__photo {
  position: relative;
  align-self: stretch;
  min-height: 380px;
  margin: -80px -56px -80px 0;
}
.footer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.footer__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(31, 27, 23, 0.6) 18%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Legal bar */
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 80px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}
.footer__legal a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.footer__legal a:hover { color: var(--champagne-light); }

@media (max-width: 1100px) {
  .footer__main {
    grid-template-columns: 360px 1fr 1.1fr;
    padding: 64px 56px;
    gap: 40px;
  }
  .footer__photo { display: none; }
}
@media (max-width: 760px) {
  .footer__main {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 40px;
    text-align: center;
  }
  .footer__brand-block {
    border-right: none;
    border-bottom: 1px solid rgba(244, 239, 230, 0.18);
    padding: 0 0 32px;
    justify-content: center;
  }
  .footer__brand-block .footer__brand-img { max-width: 140px; }
  .footer__links { align-items: center; gap: 12px; }
  .footer__contact { align-items: center; }
  .footer__socials { justify-content: center; }
  .footer__legal { flex-direction: column; gap: 8px; padding: 24px; text-align: center; }
}

/* HERO ROW — red STK lockup on the left, guest list on the right */
.footer__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 88px;
  text-align: left;
}
.footer__hero .footer__brand-img {
  display: block;
  margin: 0;
  height: clamp(140px, 16vw, 220px);
  width: auto;
  flex: 0 0 auto;
}

/* GUEST LIST moment — editorial headline + email form */
.footer__guestlist {
  max-width: 560px;
  margin: 0;
  flex: 1 1 auto;
}
.footer__guestlist-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--alabaster);
  margin: 0 0 20px;
}
.footer__guestlist-title em {
  font-style: italic;
  color: var(--champagne-light);
}
.footer__guestlist-sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.72);
  margin: 0 0 28px;
  max-width: 520px;
}
.footer__guestlist-form {
  display: flex;
  max-width: 520px;
  margin: 0;
  align-items: stretch;
}
.footer__guestlist-input {
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.35);
  padding: 14px 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--alabaster);
  outline: none;
  transition: border-color 0.3s ease;
}
.footer__guestlist-input::placeholder {
  color: rgba(244, 239, 230, 0.42);
  font-style: italic;
}
.footer__guestlist-input:focus { border-bottom-color: var(--champagne); }
.footer__guestlist-btn {
  background: var(--alabaster);
  color: var(--ink);
  border: 0;
  padding: 14px 28px;
  margin-left: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.footer__guestlist-btn:hover { background: var(--champagne); color: var(--ink); }


/* Horizontal nav row */
.footer__nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 0 auto 56px;
  padding-top: 56px;
  max-width: 1200px;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
}
.footer__nav-row a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--alabaster);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 14px 4px;
  display: inline-block;
  line-height: 1;
}
.footer__nav-row a:hover { color: var(--champagne-light); }

/* Contact strip */
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 64px;
}
.footer__phone {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  color: var(--champagne-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__phone:hover { color: var(--champagne); }
.footer__address,
.footer__where {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
}

@media (max-width: 900px) {
  .footer__hero {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer__hero .footer__brand-img { height: clamp(120px, 28vw, 180px); }
  .footer__guestlist-sub { margin-left: auto; margin-right: auto; }
  .footer__guestlist-form { margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .footer { padding: 80px 24px 40px; }
  .footer__hero { margin-bottom: 56px; }
  .footer__guestlist-form { flex-direction: column; max-width: 360px; }
  .footer__guestlist-btn { margin-left: 0; margin-top: 16px; }
  .footer__nav-row { gap: 14px 20px; padding-top: 40px; margin-bottom: 40px; }
  .footer__contact { margin-bottom: 48px; }
}

.footer__brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  letter-spacing: 0.22em;
  color: var(--champagne);
  margin-bottom: 16px;
  display: block;
}

.footer__tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  margin-bottom: 80px;
}

/* Mailing list block — single horizontal row above the footer cols */
.footer__mailing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding: 48px 0 56px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  margin: 56px 0 0;
}
.footer__mailing-label {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--champagne-light);
  flex: 0 0 auto;
  max-width: 380px;
}
.footer__mailing-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1 1 auto;
  max-width: 640px;
  min-width: 280px;
}
.footer__mailing-input {
  flex: 1 1 auto;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.35);
  padding: 14px 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--alabaster);
  outline: none;
  transition: border-color 0.3s ease;
}
.footer__mailing-input::placeholder { color: rgba(244, 239, 230, 0.42); font-style: italic; }
.footer__mailing-input:focus { border-bottom-color: var(--champagne); }
.footer__mailing-btn {
  background: var(--alabaster);
  color: var(--ink);
  border: 0;
  padding: 14px 28px;
  margin-left: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.footer__mailing-btn:hover { background: var(--champagne); color: var(--ink); }
@media (max-width: 720px) {
  .footer__mailing { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__mailing-form { width: 100%; max-width: none; }
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 56px 0 72px;
  border-top: none;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  margin-bottom: 48px;
}

.footer__col-head {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}

.footer__col ul { list-style: none; }
.footer__col li {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.75);
  margin-bottom: 14px;
}

.footer__col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--champagne); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
}

/* ==============================================================
   VARIANT SWITCHER (pinned)
   ============================================================== */
.variant-switcher {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  background: rgba(31, 27, 23, 0.88);
  backdrop-filter: blur(20px);
  padding: 8px;
  gap: 4px;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.variant-switcher a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
  text-decoration: none;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.variant-switcher a.active {
  background: var(--champagne);
  color: var(--ink);
}

.variant-switcher a:hover:not(.active) { color: var(--champagne); }

/* ==============================================================
   LOOK 2 — THE CHRONICLE
   Numbered chapters. Sans-serif display. Architectural framing.
   Pull quotes. Thin gold borders on photos.
   ============================================================== */
.chronicle .hero__overline,
.chronicle .photoblock__overline,
.chronicle .overline {
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 700;
}

.chronicle .hero__headline,
.chronicle .photoblock__headline,
.chronicle .display {
  font-family: var(--sans);
  font-weight: 200;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.chronicle .hero__headline em,
.chronicle .photoblock__headline em,
.chronicle .display em {
  font-style: normal;
  font-weight: 400;
  color: var(--champagne-light);
}

.chronicle .photoblock__bg img,
.chronicle .menu-image img,
.chronicle .visit-photo img,
.chronicle .hero__bg img {
  filter: brightness(0.7) saturate(1.1) contrast(1.15);
}

/* Chapter marker — huge typographic moment per section */
.chapter-mark {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(31, 27, 23, 0.12);
}
.chapter-mark__num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 72px;
  color: var(--champagne-deep);
  line-height: 1;
  letter-spacing: -0.04em;
}
.chapter-mark__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
}
.chapter-mark__label strong { display: block; color: var(--champagne-deep); margin-bottom: 6px; }

/* Photo frame with thin gold border (Chronicle) */
.chronicle .menu-image,
.chronicle .visit-photo {
  border: 1px solid rgba(201, 169, 110, 0.25);
}

/* Pull quote (Chronicle) */
.pull-quote {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 56px;
  text-align: center;
}
.pull-quote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.pull-quote__text::before { content: '"'; color: var(--champagne); margin-right: 8px; }
.pull-quote__text::after { content: '"'; color: var(--champagne); margin-left: 8px; }
.pull-quote__credit {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}
.pull-quote__credit::before { content: '— '; }

.chronicle .nav__brand,
.chronicle .footer__brand {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.32em;
}

/* ==============================================================
   LOOK 3 — THE REEL
   Cinema-still. Photography dominant. Type smaller, more architectural.
   Vertical stacked compositions instead of side-by-side.
   ============================================================== */
.reel .hero {
  justify-content: center;
  text-align: center;
  align-items: center;
}

.reel .hero__content {
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  max-width: 1000px;
}

.reel .hero__overline { font-size: 10px; letter-spacing: 0.4em; }

.reel .hero__headline {
  font-size: clamp(48px, 5.4vw, 88px);
  margin-bottom: 24px;
}

.reel .hero__sub {
  margin: 0 auto 32px;
  font-size: 15px;
}

.reel .hero__ctas { justify-content: center; }

.reel .hero__bottom {
  position: absolute;
  bottom: 56px;
  left: 56px;
  right: 56px;
  padding-top: 32px;
}

.reel .photoblock__content { padding-bottom: 56px; max-width: 1000px; margin: 0 auto; text-align: center; align-items: center; }
.reel .photoblock__content > * { margin-left: auto; margin-right: auto; }
.reel .photoblock__headline { font-size: clamp(40px, 4.4vw, 72px); }

.reel .display { font-size: clamp(48px, 5.4vw, 88px); }

/* Reel: side-by-side becomes VERTICAL stacked still + caption */
.reel .menu-section { padding: 160px 0; }
.reel .menu-grid {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}
.reel .menu-image {
  grid-column: auto;
  width: 100%;
  aspect-ratio: 21/9;
  min-height: 480px;
  margin-bottom: 80px;
  position: relative;
}
.reel .menu-text {
  grid-column: auto;
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  display: block;
}
.reel .menu-text > * { margin-left: auto; margin-right: auto; }
.reel .menu-text__rule { margin-left: auto; margin-right: auto; }
.reel .menu-list { max-width: 720px; margin: 56px auto 48px; }
.reel .menu-list li { text-align: left; }

.reel .visit-section {
  display: block;
  min-height: auto;
}
.reel .visit-photo {
  grid-column: auto;
  width: 100%;
  aspect-ratio: 21/9;
  min-height: 480px;
}
.reel .visit-text {
  grid-column: auto;
  padding: 120px 56px;
  text-align: center;
  align-items: center;
}
.reel .visit-text > * { margin-left: auto; margin-right: auto; max-width: 600px; }
.reel .visit-text .display { max-width: 880px; }
.reel .visit-text__rule { margin-left: auto; margin-right: auto; }
.reel .visit-ctas { justify-content: center; }

/* Reel cinema caption: small movie-credit style block on photos */
.reel-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
  color: var(--alabaster);
  text-shadow: 0 1px 12px rgba(15, 12, 10, 0.7);
}
.reel-caption__title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-light);
}
.reel-caption__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--alabaster);
}

.reel .photoblock__bg img,
.reel .menu-image img,
.reel .visit-photo img,
.reel .hero__bg img {
  filter: brightness(0.72) saturate(1.05) contrast(1.1);
}

/* ==============================================================
   LOOK 4 — STK BRAND (matches stksteakhouse.com)
   Real STK brand tokens — sourced from the live site CSS:
   - Font: Montserrat (everything, body + display via weight variation)
   - Primary CTA: red #a6000a (white text)
   - Secondary CTA: gold #7D6925 (outline + text, transparent bg)
   - Text: #212121 near-black on light surfaces
   - UPPERCASE display + body with wide tracking
   ============================================================== */

.brand {
  --stk-red: #a6000a;
  --stk-red-deep: #800007;
  --stk-gold: #7D6925;
  --stk-gold-light: #A08A39;
  --stk-ink: #212121;
  --stk-off-white: #F4F4F4;
}

/* Use real STK ink and surface tones in this variant */
.brand,
.brand body { background: var(--stk-off-white); color: var(--stk-ink); }

.brand .nav__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--stk-ink);
}
.brand .nav--on-photo .nav__brand { color: var(--stk-off-white); }

.brand .hero__overline,
.brand .photoblock__overline,
.brand .overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--stk-gold-light);
}

/* Display: Montserrat 800-900, uppercase, tight line-height */
.brand .hero__headline,
.brand .photoblock__headline,
.brand .display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.brand .hero__headline em,
.brand .photoblock__headline em,
.brand .display em {
  font-style: italic;
  font-weight: 300;
  color: var(--stk-gold-light);
}

.brand .hero__headline { font-size: clamp(48px, 6vw, 96px); }
.brand .photoblock__headline { font-size: clamp(40px, 5vw, 80px); }
.brand .display--xl { font-size: clamp(56px, 6.4vw, 104px); }
.brand .display--lg { font-size: clamp(40px, 4.8vw, 72px); }
.brand .display--md { font-size: clamp(32px, 3.6vw, 52px); }

.brand .display { color: var(--stk-ink); }
.brand .display em { color: var(--stk-gold); }

.brand .hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.brand .body-lg,
.brand .body-md {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  color: #4a4a4a;
}

/* CTAs: real STK button styling — uppercase, 0.05em tracking, 14px */
.brand .btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 16px 36px;
  text-transform: uppercase;
}

/* Primary = STK red */
.brand .btn--primary,
.brand .btn--dark {
  background: var(--stk-red);
  color: #ffffff;
  border-color: var(--stk-red);
}
.brand .btn--primary:hover,
.brand .btn--dark:hover {
  background: var(--stk-red-deep);
  border-color: var(--stk-red-deep);
  color: #ffffff;
}

/* Secondary = gold outline */
.brand .btn--ghost,
.brand .btn--ghost-dark {
  background: transparent;
  color: var(--stk-gold);
  border-color: var(--stk-gold);
}
.brand .btn--ghost:hover,
.brand .btn--ghost-dark:hover {
  background: var(--stk-gold);
  color: #ffffff;
  border-color: var(--stk-gold);
}

/* Ghost on photo backgrounds */
.brand .hero .btn--ghost {
  color: var(--stk-off-white);
  border-color: rgba(244, 244, 244, 0.7);
}
.brand .hero .btn--ghost:hover {
  background: var(--stk-gold);
  border-color: var(--stk-gold);
  color: #ffffff;
}

.brand .nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand .nav__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--stk-red);
  color: #ffffff;
  padding: 12px 26px;
}
.brand .nav__cta:hover { background: var(--stk-red-deep); color: #ffffff; }

/* Section accents tuned to STK palette */
.brand .index-label__num {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--stk-gold);
}
.brand .index-label__rule { background: var(--stk-gold); }
.brand .index-label__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--stk-ink);
}

/* Menu items */
.brand .menu-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom-color: rgba(125, 105, 37, 0.18);
}
.brand .menu-list .num {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--stk-gold);
}
.brand .menu-list .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stk-ink);
}
.brand .menu-list .price {
  color: var(--stk-red);
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Private dining cards — STK brand treatment */
.brand .private-card {
  border-color: rgba(125, 105, 37, 0.35);
}
.brand .private-card:hover {
  box-shadow: 0 24px 48px -24px rgba(166, 0, 10, 0.18);
}
.brand .private-card__num {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: 72px;
  color: var(--stk-gold-light);
  letter-spacing: -0.02em;
}
.brand .private-card__capacity-tag {
  background: var(--stk-red);
  font-weight: 700;
}
.brand .private-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--stk-ink);
}
.brand .private-card__name em {
  font-style: italic;
  font-weight: 300;
  color: var(--stk-gold);
}
.brand .private-card__desc {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  color: #4a4a4a;
}
.brand .private-card__inquire {
  color: var(--stk-red);
  border-top-color: rgba(166, 0, 10, 0.32);
  font-weight: 700;
}
.brand .private-card:hover .private-card__inquire { color: var(--stk-red-deep); }

.brand .hero__bottom-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--stk-gold-light);
}

/* Event playbill rows — STK brand treatment */
.brand .event-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--stk-ink);
}
.brand .event-card__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--stk-red);
}
.brand .event-card__date {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 60px);
  color: var(--stk-ink);
}
.brand .event-card__day { color: var(--stk-red); font-weight: 700; }
.brand .event-card__type { color: var(--stk-red); font-weight: 700; }
.brand .event-card__rsvp {
  color: var(--stk-red);
  font-weight: 700;
}
.brand .event-card__bottom { border-left-color: rgba(166, 0, 10, 0.32); }
.brand .events-grid,
.brand .event-card { border-color: rgba(166, 0, 10, 0.28); }
.brand .event-card__desc {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  color: #4a4a4a;
}

/* Brand hover: subtle red-tinted dark overlay for STK club energy */
.brand .event-card::after {
  background:
    linear-gradient(90deg, rgba(80, 8, 12, 0.82) 0%, rgba(15, 12, 10, 0.5) 55%, rgba(15, 12, 10, 0.18) 100%);
}

/* Brand hover text inversion */
.brand .event-card:hover .event-card__date { color: var(--alabaster); }
.brand .event-card:hover .event-card__day { color: var(--stk-gold-light); }
.brand .event-card:hover .event-card__type { color: var(--stk-gold-light); }
.brand .event-card:hover .event-card__title { color: var(--alabaster); }
.brand .event-card:hover .event-card__title em { color: var(--stk-gold-light); }
.brand .event-card:hover .event-card__desc { color: rgba(244, 239, 230, 0.88); }
.brand .event-card:hover .event-card__rsvp { color: var(--alabaster) !important; }
.brand .event-card:hover .event-card__bottom { border-left-color: rgba(244, 239, 230, 0.35); }

/* Photo captions */
.brand .photo-caption {
  border-left-color: var(--stk-red);
}
.brand .photo-caption__num {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--stk-red);
}
.brand .photo-caption__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--stk-ink);
}

/* Footer */
.brand .footer { background: var(--stk-ink); }
.brand .footer__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.32em;
  color: var(--stk-off-white);
}
.brand .footer__col-head {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--stk-gold-light);
}

.brand .visit-address,
.brand .visit-hours {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.brand .visit-hours span { color: var(--stk-red); }

/* Guest section: STK styling in the cream marquee context */
.brand .guest-section { background: var(--stk-off-white); }
.brand .guest-section .overline { color: var(--stk-red); }
.brand .guest-section .display em { color: var(--stk-red); }
.brand .guest-form__row { border-bottom-color: var(--stk-red); }
.brand .guest-form button { color: var(--stk-red); }
.brand .guest-form button:hover { color: var(--stk-red-deep); background: transparent; }
.brand .guest-section::before {
  background: linear-gradient(90deg, transparent 0%, var(--stk-red) 100%);
}
.brand .guest-section::after {
  background: linear-gradient(90deg, var(--stk-red) 0%, transparent 100%);
}

/* Photo treatment — slightly punchier saturated */
.brand .photoblock__bg img,
.brand .menu-image img,
.brand .visit-photo img,
.brand .hero__bg img {
  filter: brightness(0.78) saturate(1.12) contrast(1.1);
}

/* ==============================================================
   LOOK 5 — CINEMA × BRAND
   STK Cinema's cream chrome + moody full-bleed photography,
   typeset entirely in Montserrat with STK red #a6000a as the
   primary action + italic-accent colour. Champagne stays as a
   secondary metal note for subtle decoration.
   ============================================================== */

.cinema-brand {
  --serif: 'Montserrat', sans-serif;
  --sans: 'Montserrat', sans-serif;
  --stk-red: #a6000a;
  --stk-red-deep: #800007;
  --stk-red-ink: #5a0007;
}

/* Display headlines — Montserrat reads stronger at slightly heavier weight
   and tighter tracking than Newsreader. Keep sentence case (no UPPERCASE)
   so the cinematic editorial feel survives the typeface change. */
.cinema-brand .display,
.cinema-brand .hero__headline,
.cinema-brand .photoblock__headline {
  font-weight: 700;
  letter-spacing: -0.04em;
}

/* Montserrat 700 is chunkier than Newsreader 300, so cap font sizes a touch
   and widen the containers to keep two-line photoblock and visit headlines
   intact ("Dinner Should Feel" / "Steps from the Falls."). */
.cinema-brand .photoblock__headline {
  font-size: clamp(40px, 5.2vw, 80px);
  max-width: 1200px;
}
.cinema-brand .visit-section__main { max-width: 1100px; }
.cinema-brand .visit-section .display.display--lg {
  font-size: clamp(44px, 5vw, 76px);
}

/* Italic accent words — the signature flourish becomes RED instead of champagne */
.cinema-brand .display em,
.cinema-brand .hero__headline em,
.cinema-brand .photoblock__headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--stk-red);
}

/* Body copy — Montserrat at slightly tighter line-height than Newsreader needs */
.cinema-brand .body-lg,
.cinema-brand .body-md {
  line-height: 1.65;
  font-weight: 400;
}

/* Overlines + small caps labels — Montserrat caps with brand's wide tracking */
.cinema-brand .overline,
.cinema-brand .hero__overline,
.cinema-brand .photoblock__overline,
.cinema-brand .index-label__text {
  font-weight: 700;
  letter-spacing: 0.32em;
}

/* Nav links — heavier Montserrat caps */
.cinema-brand .nav__links a,
.cinema-brand .nav__cta { font-weight: 600; letter-spacing: 0.26em; }

/* Primary CTA — STK red */
.cinema-brand .btn--primary {
  background: var(--stk-red);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.26em;
}
.cinema-brand .btn--primary:hover {
  background: var(--stk-red-deep);
  color: #fff;
}

/* Dark/solid CTA (cream sections) — also red */
.cinema-brand .btn--dark {
  background: var(--stk-red);
  color: #fff;
}
.cinema-brand .btn--dark:hover { background: var(--stk-red-deep); }

/* Ghost CTAs pick up red on hover */
.cinema-brand .btn--ghost:hover,
.cinema-brand .btn--ghost-dark:hover {
  border-color: var(--stk-red);
  color: var(--stk-red);
}

/* Nav primary CTA inherits red */
.cinema-brand .nav__cta { background: var(--stk-red); color: #fff; }
.cinema-brand .nav__cta:hover { background: var(--stk-red-deep); color: #fff; }
.cinema-brand .nav--on-photo .nav__cta { background: var(--stk-red); color: #fff; }
.cinema-brand .nav--on-photo .nav__cta:hover { background: var(--stk-red-deep); color: #fff; }

/* Index label numbers — red instead of champagne-deep */
.cinema-brand .index-label__num { color: var(--stk-red); }

/* Section accent rules — red for the main rules, keep champagne for thin decoratives */
.cinema-brand .menu-text__rule { background: var(--stk-red); }

/* Footer column heads — red for brand consistency */
.cinema-brand .footer__col h4 { color: var(--stk-red); }

/* Photo treatment — slightly punchier saturation to match brand vigour */
.cinema-brand .photoblock__bg img,
.cinema-brand .menu-image img,
.cinema-brand .visit-photo img,
.cinema-brand .hero__bg img {
  filter: brightness(0.8) saturate(1.1) contrast(1.1);
}

/* ==============================================================
   STK CINEMA V2 — INNER PAGES
   Shared building blocks used across menu / drinks / events /
   fireworks / private-dining / visit pages.
   ============================================================== */

/* Current-page indicator in the nav: subtle champagne underline */
.nav__links a.is-current {
  color: var(--champagne);
  position: relative;
}
.nav__links a.is-current::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.6;
}

/* ----- CELEBRATIONS — 4-up category cards ----- */
.celebrations-section {
  padding: 100px 56px 140px;
  position: relative;
}
.celebrations-section__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
}
.celebrations-section__head-text { max-width: 720px; }
.celebrations-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.celebration-card {
  background: var(--alabaster);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}
.celebration-card:hover { transform: translateY(-6px); }
.celebration-card__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.celebration-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.05) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.celebration-card:hover .celebration-card__photo img { transform: scale(1.04); }
.celebration-card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--alabaster);
  background: rgba(31, 27, 23, 0.6);
  padding: 8px 12px;
  backdrop-filter: blur(6px);
}
.celebration-card__info { padding: 32px 28px 36px; }
.celebration-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.celebration-card__name em {
  font-style: italic;
  color: inherit;
}
.celebration-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   MENU PAGE — rich-layout building blocks (film strip, photo
   breaks, approach section, triptych, Wagyu feature, FAQ, end
   hero). Carry-forward of the cinematic flow from the old food
   menu page, restyled in the V2 cream/champagne system.
   ============================================================ */

/* ----- FILM STRIP — auto-scrolling atmosphere reel ----- */
.film-strip {
  background: var(--ink);
  overflow: hidden;
  padding: 8px 0;
}
.film-strip__track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: film-strip-scroll 60s linear infinite;
}
.film-strip__cell {
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.film-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.05) contrast(1.06);
  display: block;
}
@keyframes film-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .film-strip__track { animation: none; }
}

/* ----- APPROACH — text + photo aside ----- */
.approach-section {
  background: var(--alabaster);
  padding: 140px 56px 160px;
}
.approach-section__inner { max-width: 1400px; margin: 0 auto; }
.approach-section__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 96px;
  align-items: center;
}
.approach-section__text { max-width: 720px; }
.approach-section__head { margin-bottom: 40px; }
.approach-section__head .index-label { margin-bottom: 24px; }
.approach-section__copy { padding-top: 0; }
.approach-section__aside { position: relative; }
.approach-section__aside img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05) contrast(1.06);
  display: block;
}
.approach-section__caption {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-top: 18px;
}

/* ----- PHOTO BREAK — full-bleed photo with overlaid display caption ----- */
.photo-break {
  position: relative;
  height: 78vh;
  min-height: 560px;
  overflow: hidden;
}
.photo-break--short { height: 62vh; min-height: 480px; }
.photo-break__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.photo-break__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.05) contrast(1.08);
}
.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 60%, transparent 0%, rgba(15, 12, 10, 0.4) 100%),
              linear-gradient(180deg, rgba(15, 12, 10, 0.45) 0%, transparent 35%, transparent 60%, rgba(15, 12, 10, 0.45) 100%);
  pointer-events: none;
}
.photo-break__caption {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.photo-break__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-bottom: 28px;
}
.photo-break__caption .display {
  color: var(--alabaster);
}
.photo-break__caption .display em {
  font-style: italic;
  color: var(--champagne-light);
}

/* ----- MENU SUB-NAV — sticky category jumper ----- */
.menu-subnav {
  background: var(--alabaster);
  border-top: 1px solid rgba(31, 27, 23, 0.08);
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
  position: sticky;
  top: 76px;
  z-index: 50;
}
/* Anchor offsets so #starters, #rawbar etc. land at the section top under both
   sticky bars (top nav 76px + sticky menu-subnav ~58px) without the section's
   own 140px top padding cutting off the headings. */
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
.menu-category[id],
.menu-category-triple[id],
.menu-category-pair[id],
section[id] { scroll-margin-top: 140px; }
/* For the triple grid (Starters / Raw Bar / Shellfish), the parent section
   already carries 140px top padding. Land #starters at the very top of that
   padding so the headings sit just below the sticky subnav. */
.menu-category-triple > .menu-category[id]:first-child { scroll-margin-top: 280px; }
.menu-subnav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.menu-subnav a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}
.menu-subnav a:hover { color: var(--ink); }
.menu-subnav__gold { color: var(--champagne-deep) !important; }
.menu-subnav__gold:hover { color: var(--champagne) !important; }

/* Menu categories on cream background (between photo breaks) */
.menu-category--cream { background: var(--alabaster); }

/* Menu pair specifically inside the textured block */
.menu-category-pair--in-texture { background: transparent; padding-top: 0; }

/* ----- TRIPTYCH — 3-image collage moment ----- */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--alabaster);
  padding: 0 0 8px;
}
.triptych__cell { aspect-ratio: 4/5; overflow: hidden; }
.triptych__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.05) contrast(1.06);
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.triptych__cell:hover img { transform: scale(1.04); }

/* ----- WAGYU FEATURE — dark moody hero card ----- */
.wagyu-feature {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.wagyu-feature__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wagyu-feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1) contrast(1.12);
}
.wagyu-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 12, 10, 0.85) 0%, rgba(15, 12, 10, 0.55) 45%, rgba(15, 12, 10, 0.25) 100%);
  pointer-events: none;
}
.wagyu-feature__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 56px 140px;
  width: 100%;
}
.wagyu-feature__content .index-label--on-dark .index-label__num { color: var(--champagne-light); }
.wagyu-feature__content .index-label--on-dark .index-label__rule { background: rgba(244, 239, 230, 0.3); }
.wagyu-feature__content .index-label--on-dark .index-label__text { color: var(--alabaster); }
.wagyu-feature__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--alabaster);
  margin: 32px 0 40px;
  max-width: 880px;
}
.wagyu-feature__headline em {
  font-style: italic;
  color: var(--champagne-light);
}
.wagyu-feature__body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.82);
  max-width: 660px;
  margin-bottom: 56px;
}
.wagyu-feature__list {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  max-width: 720px;
}
.wagyu-feature__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  align-items: baseline;
}
.wagyu-feature__list li:last-child { border-bottom: none; }
.wagyu-feature__list .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--alabaster);
}
.wagyu-feature__list .price {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--champagne-light);
}
.wagyu-feature .btn--primary {
  background: var(--champagne);
  color: var(--ink);
}
.wagyu-feature .btn--primary:hover {
  background: var(--champagne-light);
  color: var(--ink);
}

/* ----- FAQ — accordion list ----- */
.faq-section { background: var(--alabaster); padding: 140px 56px 160px; }
.faq-section__inner { max-width: 980px; margin: 0 auto; }
.faq-section__head { margin-bottom: 64px; }
.faq-section__head .index-label { margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(31, 27, 23, 0.12);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(31, 27, 23, 0.12); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-weight: 200;
  font-size: 28px;
  color: var(--champagne-deep);
  margin-left: 24px;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--champagne-deep); }
.faq-item p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding: 0 0 28px;
  max-width: 720px;
}

/* ----- END HERO — closing reservation CTA ----- */
.end-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.end-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.end-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.08) contrast(1.1);
}
.end-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.45) 0%, rgba(15, 12, 10, 0.25) 50%, rgba(15, 12, 10, 0.55) 100%);
  pointer-events: none;
}
.end-hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 56px;
  text-align: center;
  max-width: 980px;
}
.end-hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--alabaster);
  margin-top: 24px;
}
.end-hero__headline em {
  font-style: italic;
  color: var(--champagne-light);
}
.end-hero .btn--primary {
  background: var(--alabaster);
  color: var(--ink);
}
.end-hero .btn--primary:hover { background: var(--champagne); color: var(--ink); }
.end-hero .btn--ghost {
  color: var(--alabaster);
  border-color: rgba(244, 239, 230, 0.5);
}
.end-hero .btn--ghost:hover { border-color: var(--champagne); color: var(--champagne); }

/* ============================================================
   DRINKS PAGE — editorial layout patterns (stat bar, spotlight,
   cocktail cards, split-screen feature, bottle library, wine
   table, behind-the-bar cards). Distinct rhythm from the menu
   page while staying inside the V2 cream/champagne system.
   ============================================================ */

/* ----- STAT BAR — 4 big numbers + labels ----- */
.stat-bar {
  background: var(--alabaster);
  padding: 90px 56px;
  border-top: 1px solid rgba(31, 27, 23, 0.08);
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
}
.stat-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat-bar__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid rgba(31, 27, 23, 0.12);
  padding-left: 32px;
}
.stat-bar__item:first-child { border-left: none; padding-left: 0; }
.stat-bar__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat-bar__num sup {
  font-size: 0.5em;
  color: var(--champagne-deep);
  vertical-align: super;
  font-weight: 300;
}
.stat-bar__num small {
  font-size: 0.4em;
  color: var(--champagne-deep);
  font-weight: 300;
  margin-left: 4px;
}
.stat-bar__num-sep {
  color: var(--champagne-deep);
  font-style: italic;
  margin: 0 0.1em;
}
.stat-bar__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ----- COCKTAIL SPOTLIGHT — single-cocktail editorial feature ----- */
.spotlight {
  background: var(--alabaster);
  padding: 140px 56px 160px;
}
.spotlight__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.spotlight__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.05) contrast(1.06);
}
.spotlight__photo-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--alabaster);
  background: rgba(31, 27, 23, 0.65);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
}
.spotlight__body { padding: 0 0 0 16px; }
.spotlight__body .index-label { margin-bottom: 24px; }
.spotlight__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 32px;
}
.spotlight__headline em { font-style: italic; color: var(--champagne-deep); }
.spotlight__lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.spotlight__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 27, 23, 0.12);
}
.spotlight__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 16px;
}
.spotlight__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spotlight__list li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: 6px 0;
}
.spotlight__price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.spotlight__price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--champagne-deep);
}

/* Drinks: balance the pull-quote so its top/bottom whitespace match.
   Surrounding sections (cocktail-cards above, feature-split below) have
   asymmetric edges — collapse cocktail-cards' bottom padding so the
   pull-quote's own padding becomes the single source of vertical space. */
.cinema-v2-drinks .cocktail-cards { padding-bottom: 0; }
.cinema-v2-drinks .pull-quote { padding-top: 140px; padding-bottom: 140px; }

/* ----- COCKTAIL CARDS — 3x2 visual grid ----- */
.cocktail-cards {
  padding: 140px 56px 160px;
  background: var(--alabaster);
}
.cocktail-cards__head {
  max-width: 1400px;
  margin: 0 auto 64px;
}
.cocktail-cards__head .index-label { margin-bottom: 24px; }
.cocktail-cards__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cocktail-card {
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cocktail-card:hover { transform: translateY(-6px); }
.cocktail-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.cocktail-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.06) contrast(1.06);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.cocktail-card:hover .cocktail-card__photo img { transform: scale(1.05); }
.cocktail-card__info { padding: 28px 28px 36px; position: relative; }
.cocktail-card__price {
  position: absolute;
  top: -20px;
  right: 24px;
  background: var(--ink);
  color: var(--champagne-light);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 10px 14px;
}
.cocktail-card__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 12px 0 14px;
}
.cocktail-card__name em { font-style: italic; color: var(--champagne-deep); }
.cocktail-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ----- FEATURE-SPLIT — full-width photo-left text-right ----- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--alabaster);
  min-height: 90vh;
  align-items: stretch;
}
.feature-split__photo {
  position: relative;
  overflow: hidden;
}
.feature-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.06) contrast(1.06);
}
.feature-split__photo-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-split__photo-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-light);
}
.feature-split__photo-cta {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--alabaster);
}
.feature-split__body {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-split__body .index-label { margin-bottom: 28px; }
.feature-split__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 5.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 40px;
}
.feature-split__headline em { font-style: italic; color: var(--champagne-deep); }
.feature-split__body-text {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 56px;
}
.feature-split__list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.feature-split__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-split__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}
.feature-split__list li:last-child { border-bottom: none; }
.feature-split__list li > span:last-child {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--champagne-deep);
  flex-shrink: 0;
}

/* ----- BOTTLE LIBRARY — horizontal scroller ----- */
.bottle-library {
  background: var(--ink);
  color: var(--alabaster);
  padding: 120px 0 100px;
  overflow: hidden;
}
.bottle-library__head {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 56px;
}
.bottle-library__head .index-label__num { color: var(--champagne-light); }
.bottle-library__head .index-label__rule { background: rgba(244, 239, 230, 0.3); }
.bottle-library__head .index-label__text { color: var(--alabaster); }
.bottle-library__head .display--lg { color: var(--alabaster); }
.bottle-library__head .display--lg em { color: var(--champagne-light); }
.bottle-library__head .body-lg { color: rgba(244, 239, 230, 0.78); }
.bottle-library__scroller {
  display: flex;
  gap: 24px;
  padding: 0 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.bottle-library__scroller::-webkit-scrollbar { display: none; }
.bottle-library__cell {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
}
.bottle-library__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
}
.bottle-library__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bottle-library__cell:hover .bottle-library__photo img { transform: scale(1.04); }
.bottle-library__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bottle-library__label strong {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--alabaster);
}
.bottle-library__label span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne-light);
}

/* ----- WINE TABLE — compact 2-column reference ----- */
.wine-table {
  background: var(--alabaster);
  padding: 140px 56px 160px;
}
.wine-table__inner { max-width: 1400px; margin: 0 auto; }
.wine-table__head { max-width: 720px; margin-bottom: 72px; }
.wine-table__head .index-label { margin-bottom: 24px; }
.wine-table__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.wine-table__col-head {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(31, 27, 23, 0.18);
  margin-bottom: 8px;
}
.wine-table__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wine-table__list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
}
.wine-table__region {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}
.wine-table__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.wine-table__price {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--champagne-deep);
}

/* ----- BEHIND THE BAR — 4 info cards ----- */
.behind-bar {
  padding: 140px 56px 160px;
  background: var(--alabaster);
}
.behind-bar__head {
  max-width: 1400px;
  margin: 0 auto 72px;
}
.behind-bar__head .index-label { margin-bottom: 24px; }
.behind-bar__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.behind-bar__card {
  border-top: 1px solid rgba(31, 27, 23, 0.18);
  padding: 32px 0 0;
}
.behind-bar__icon {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--champagne-deep);
  margin-bottom: 24px;
}
.behind-bar__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.behind-bar__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ----- MENU CATEGORIES — used on the Menu + Drinks pages ----- */
.menu-category {
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 56px;
  position: relative;
  z-index: 1;
}
.menu-category__head { margin-bottom: 56px; }
.menu-category__head .index-label { margin-bottom: 28px; }
.menu-category .menu-list { margin-top: 0; }
.menu-fineprint {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 28px;
  max-width: 620px;
}

/* Side-by-side small categories (Sides + Dessert) */
.menu-category-pair {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 56px 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  background: var(--alabaster);
}
.menu-category-pair .menu-category {
  padding: 0;
  max-width: none;
}
.menu-category-pair--in-texture {
  background: transparent;
  padding-top: 40px;
  padding-bottom: 100px;
}
.menu-category-pair--in-texture .menu-category .display--lg {
  font-size: clamp(28px, 2.4vw, 40px);
}

/* Solo full-width category — used when one category needs to span the page
   (e.g. Salads & Starters with its items split into a 3-up multi-column list). */
.menu-category-solo {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 56px 20px;
  background: var(--alabaster);
}
.menu-category-solo--in-texture { background: transparent; }
.menu-category-solo .menu-category__head { text-align: center; margin-bottom: 56px; }
.menu-category-solo .display--lg {
  font-size: clamp(28px, 2.4vw, 40px);
}
.menu-list--2col {
  column-count: 2;
  column-gap: 48px;
}
.menu-list--2col li {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.menu-list--2col li.is-group-label {
  break-after: avoid;
  -webkit-column-break-after: avoid;
}
.menu-list--2col .name { font-size: 17px; }
@media (max-width: 900px) {
  .menu-list--2col { column-count: 1; }
}
.menu-list--3col {
  column-count: 3;
  column-gap: 64px;
}
.menu-list--3col li {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.menu-list--3col .name { font-size: 18px; }
@media (max-width: 1100px) {
  .menu-list--3col { column-count: 2; column-gap: 48px; }
}
@media (max-width: 760px) {
  .menu-list--3col { column-count: 1; }
  .menu-category-solo { padding: 80px 24px 16px; }
  .menu-category-pair--in-texture { padding-top: 24px; padding-bottom: 64px; }
}

.menu-cta-section {
  background: var(--alabaster);
  padding: 100px 56px 140px;
  text-align: center;
}

/* 3-up category grid (Starters + Raw Bar + Shellfish) */
.menu-category-triple {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 56px 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  background: var(--alabaster);
  position: relative;
  z-index: 1;
}
.menu-category-triple .menu-category {
  padding: 0;
  max-width: none;
}
.menu-category-triple .menu-category .display--lg {
  font-size: clamp(28px, 2.4vw, 40px);
}
/* Italic em accents in these column titles read black (ink) instead of
   the champagne accent — single-word titles like "Starters." / "Shellfish."
   stay tonally calm without a coloured highlight. */
.menu-category-triple .menu-category .display em { color: inherit; }
.menu-category-triple .menu-list .name { font-size: 18px; }
.menu-category-triple--in-texture { background: transparent; }

/* Fireworks page: centre the "All About the Fireworks." headline. */
.cinema-v2-fireworks .info-trio__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Visit page: title above, Address / Hours / Parking side-by-side beneath.
   Lines between items removed; "Subject to change." sits under Parking. */
.cinema-v2-visit .info-trio__item {
  border-top: none;
  padding-top: 0;
}
.cinema-v2-visit .info-trio__fineprint {
  text-align: left;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .cinema-v2-visit .info-trio__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ----- ABOUT STK — long-form editorial SEO section on the home page ----- */
.about-section {
  background: var(--alabaster);
  padding: 120px 56px 140px;
  position: relative;
  overflow: hidden;
}
.about-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEAD — overline + hairline rule + headline, now lives inside the right column */
.about-section__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.about-section__overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  flex: 0 0 auto;
}
.about-section__rule {
  flex: 0 0 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne) 0%, rgba(201, 169, 110, 0.2) 100%);
}
.about-section__head .display {
  flex: 1 1 100%;
  margin-top: 20px;
  max-width: 100%;
}

/* MAIN — lead photo + copy in an editorial 2-column grid */
.about-section__main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-section__lead-photo {
  margin: 0;
  position: relative;
}
.about-section__lead-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.05) contrast(1.05);
}
.about-section__lead-photo::before {
  /* champagne hairline tab on the top-left of the photo */
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 56px;
  height: 1px;
  background: var(--champagne);
}
.about-section__lead-photo figcaption {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-top: 18px;
}
.about-section__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-section__copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.about-section__copy .about-section__lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--ink-soft);
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 900px) {
  .about-section { padding: 88px 24px 96px; }
  .about-section__head { gap: 16px; }
  .about-section__rule { flex: 0 0 48px; }
  .about-section__head .display { margin-top: 16px; }
  .about-section__main { grid-template-columns: 1fr; gap: 48px; }
  .about-section__copy .about-section__lede { font-size: 16px; }
  .about-section__copy p { font-size: 16px; }
}

/* ----- ACCESSIBILITY PAGE ----- */
.section--cream--no-hero { padding-top: 160px; }
.accessibility-section {
  background: var(--alabaster);
  padding: 80px 56px 160px;
}
.accessibility-section__inner { max-width: 880px; margin: 0 auto; }
.accessibility-list { list-style: none; margin: 32px 0 48px; padding: 0; }
.accessibility-list li { margin: 0; }
.accessibility-list__link {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid rgba(31, 27, 23, 0.12);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.accessibility-list li:first-child .accessibility-list__link { border-top: 1px solid rgba(31, 27, 23, 0.12); }
.accessibility-list__link:hover {
  padding-left: 16px;
  color: var(--champagne-deep);
}
.accessibility-list__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--champagne-deep);
}
.accessibility-list__body { display: flex; flex-direction: column; gap: 6px; }
.accessibility-list__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: inherit;
}
.accessibility-list__meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}
.accessibility-list__arrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--champagne-deep);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.accessibility-list__link:hover .accessibility-list__arrow { transform: translateX(8px); }
@media (max-width: 720px) {
  .accessibility-section { padding: 60px 24px 100px; }
  .accessibility-list__link { grid-template-columns: 32px 1fr auto; gap: 16px; padding: 24px 0; }
  .accessibility-list__name { font-size: 18px; }
}

/* ----- SCHEDULE BLOCK — Fireworks + Illumination listings (Fireworks page) ----- */
.schedule-block {
  max-width: 880px;
  margin: 64px auto 0;
}
.schedule-block + .schedule-block { margin-top: 96px; }
.schedule-block__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 16px;
}
.schedule-block__title em { font-style: italic; color: var(--champagne-deep); }
.schedule-block__lede {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 620px;
}
.schedule-block__group { margin-top: 16px; }
.schedule-block__sub-head {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 27, 23, 0.18);
  margin-bottom: 4px;
}
.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.schedule-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-list__label {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.schedule-list__value {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--champagne-deep);
  white-space: nowrap;
}
.schedule-list--illumination {
  border-top: 1px solid rgba(31, 27, 23, 0.18);
}
.schedule-block__fineprint {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.65;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 620px;
}

/* ----- MAP EMBED — Google Maps iframe block (Visit page) ----- */
.map-embed {
  background: var(--alabaster);
  padding: 120px 56px 140px;
}
.map-embed__head {
  max-width: 1400px;
  margin: 0 auto 56px;
}
.map-embed__frame {
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px -24px rgba(31, 27, 23, 0.25);
}
.map-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.18) contrast(0.96) saturate(0.92);
}
.map-embed__actions {
  max-width: 1400px;
  margin: 48px auto 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----- INFO TRIO — 3-up info column block ----- */
.info-trio { padding: 120px 56px 140px; background: var(--alabaster); }
.info-trio__inner { max-width: 1400px; margin: 0 auto; }
.info-trio__head { margin-bottom: 72px; max-width: 720px; }
.info-trio__head .index-label { margin-bottom: 24px; }
.info-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.info-trio__item {
  border-top: 1px solid rgba(31, 27, 23, 0.12);
  padding-top: 36px;
}
.info-trio__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 24px;
}
.info-trio__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.info-trio__title em { font-style: italic; color: var(--champagne-deep); }
.info-trio__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.info-trio__fineprint {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 56px;
  text-align: right;
  max-width: 1400px;
  opacity: 0.7;
}

/* ----- PACKAGE SECTION — photo + body 50/50 ----- */
.package-section {
  padding: 120px 56px;
  position: relative;
  z-index: 1;
}
.package-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.package-section__inner--reverse > .package-section__photo { order: 2; }
.package-section__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.package-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05) contrast(1.05);
}
.package-section__body { padding: 0 24px; }
.package-section__body .index-label { margin-bottom: 24px; }
.package-section__body .display--lg { margin-bottom: 32px; }
.package-section__body .body-lg { margin-bottom: 40px; max-width: 540px; }

/* Wider-body variant — for cocktails: photo on right, body on left with a
   2-column list inside. Gives the multi-column list more room than 50/50. */
.package-section--wide-body .package-section__inner {
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: center;
}
.package-section--wide-body .package-section__photo {
  align-self: center;
}

/* Stacked variant — photo becomes a horizontal banner at top, list breaks
   into three columns underneath so long drinks lists (red wine, beer, etc.)
   stop being a 3-screen scroll. */
.package-section--stack .package-section__inner {
  display: block;
}
.package-section--stack .package-section__photo {
  aspect-ratio: auto;
  width: 100%;
  height: 320px;
  max-height: 360px;
  margin-bottom: 64px;
}
.package-section--stack .package-section__body {
  padding: 0;
  max-width: none;
}
.package-section--stack .package-section__body .display--lg {
  text-align: center;
  margin-bottom: 48px;
}
.package-section--stack .menu-list {
  column-count: 3;
  column-gap: 56px;
  margin-top: 0;
}
.package-section--stack .menu-list li {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.package-section--stack .menu-list li.is-group-label {
  break-after: avoid;
  -webkit-column-break-after: avoid;
  break-before: auto;
}
.package-section--stack .menu-list .name { font-size: 17px; }
.package-section--stack .menu-fineprint { text-align: center; margin-top: 32px; }
@media (max-width: 1100px) {
  .package-section--stack .menu-list { column-count: 2; column-gap: 40px; }
  .package-section--stack .package-section__photo { height: 240px; }
}
@media (max-width: 760px) {
  .package-section--stack .menu-list { column-count: 1; }
  .package-section--stack .package-section__photo { height: 200px; margin-bottom: 40px; }
}
.package-list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
.package-list li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
}
.package-list li:last-child {
  border-bottom: none;
}

/* ----- SEASONAL EVENTS — date-block + body list ----- */
.seasonal-events-section { padding: 120px 56px 140px; }
.seasonal-events-section__head { max-width: 1400px; margin: 0 auto 80px; }
.seasonal-events-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.seasonal-event {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(31, 27, 23, 0.1);
}
.seasonal-event:last-child { border-bottom: 1px solid rgba(31, 27, 23, 0.1); }
.seasonal-event__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.seasonal-event__day {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.seasonal-event__month {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-top: 8px;
}
.seasonal-event__tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 14px;
}
.seasonal-event__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.seasonal-event__title em {
  font-style: italic;
  color: var(--champagne-deep);
}
.seasonal-event__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
}
.seasonal-event__cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--alabaster);
  text-decoration: none;
  transition: background 0.3s ease;
}
.seasonal-event__cta:hover { background: var(--champagne-deep); }

/* ----- PROCESS — 3-step how-it-works section ----- */
.process-section {
  padding: 140px 56px 160px;
  background: var(--alabaster);
}
.process-section .section__inner {
  max-width: 880px;
  margin-bottom: 80px;
}
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step {
  text-align: left;
  padding: 32px 28px;
  border-top: 1px solid rgba(31, 27, 23, 0.12);
}
.process-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--champagne-deep);
  letter-spacing: 0;
  display: block;
  margin-bottom: 24px;
}
.process-step__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.process-step__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ==============================================================
   STK CINEMA V2 — iteration branch off the locked Cinema direction.
   Only diverges from base where the client asks for a change.
   ============================================================== */

/* Menu section: video removed in V2, collapse the grid so the text intro
   and menu listing sit side-by-side with no leftover video row. */
.cinema-v2 .menu-grid {
  grid-template-areas: "text listing";
  row-gap: 0;
}

/* V2: prices hidden across menu listing and steak cards (data preserved
   in markup so it can be re-enabled with a single rule change). */
.cinema-v2 .menu-list .price,
.cinema-v2 .steak-card__price-row { display: none; }
.cinema-v2 .menu-list li { grid-template-columns: 32px 1fr; }

/* V2: Organic Waves line texture layered over the cream brand-statement
   section. Lines are pre-extracted as transparent ink-on-clear, so we just
   tune opacity until the curves whisper through the cream without
   competing with the type. */
.cinema-v2 .section--cream { overflow: hidden; }
.cinema-v2 .section--cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/texture-organic-waves-lines.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  /* Smooth bell-curve fade: transparent at both edges, peaks in the middle.
     No flat plateau, so there's no visible band line — the texture just
     wells up through the centre of the section and ghosts away at top/bottom. */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 10%, #000 22%, #000 78%, rgba(0,0,0,0.6) 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 10%, #000 22%, #000 78%, rgba(0,0,0,0.6) 90%, transparent 100%);
}
.cinema-v2 .section--cream > * { position: relative; z-index: 1; }
/* V2: tighten the cream brand-statement section's vertical padding so the
   block hugs its content instead of floating in dead space. */
.cinema-v2 .section--cream { padding-top: 56px; padding-bottom: 110px; }

/* V2 footer: darker, less brown — closer to the perceived black of the
   nav Reserve button against cream surfaces. Slight warmth preserved
   (still not pure #000) to match the brand-lock rule. */
.cinema-v2 .footer { background: #0E0C0A; }

/* V2: shrink the hero height so the cream brand statement that sits below
   shows ~18% above the fold — gives an immediate visual cue to scroll
   without losing the full-bleed cinematic feel. */
.cinema-v2 .hero { min-height: 82vh; }

/* V2 nav with multi-item menu — tighten per-item padding + tracking so
   labels fit beside the logo and Reserve CTA. DESKTOP ONLY — on mobile
   the overlay menu renders these links large + serif, so we must not
   shrink them globally or they become invisible inside the overlay. */
@media (min-width: 901px) {
  .cinema-v2 .nav__links li { padding: 0 12px; }
  .cinema-v2 .nav__links a { letter-spacing: 0.16em; font-size: 10px; }
}

/* V2: cut the dead space between sections so the scroll doesn't feel
   empty. Halves the gap between The Table/The Cuts and The Cuts/Guest List. */
.cinema-v2 .menu-section { padding-bottom: 100px; }
.cinema-v2 .steaks-section { padding-top: 100px; padding-bottom: 100px; }
.cinema-v2 .guest-section { padding-top: 140px; padding-bottom: 140px; }

/* V2: hero → cream transition. Small, smooth, even fade across a tight
   ~5% band. The legacy hero overlay (::after) added a competing cream
   pre-tint that started at 82%, which made the transition look messy and
   front-loaded — disabled here so the mask alone carries the fade
   linearly from solid to transparent. */
.cinema-v2 .hero__bg {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 95%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 95%, transparent 100%);
}
.cinema-v2 .hero__bg::after { display: none; }

/* V2 textured block — wraps the Menu + Steaks sections so the tall-waves
   texture appears as a single continuous backdrop spanning both. Sections
   inside go transparent so the texture shows through. Same bell-curve
   fade as the cream brand-statement section so the texture eases in/out
   instead of stopping at hard edges. */
.cinema-v2 .textured-block {
  position: relative;
  background-color: var(--alabaster);
}
.cinema-v2 .textured-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/texture-tall-waves.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 10%, #000 22%, #000 78%, rgba(0,0,0,0.6) 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 10%, #000 22%, #000 78%, rgba(0,0,0,0.6) 90%, transparent 100%);
}
.cinema-v2 .textured-block > .menu-section,
.cinema-v2 .textured-block > .steaks-section,
.cinema-v2 .textured-block > .private-section,
.cinema-v2 .textured-block > .celebrations-section {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

/* (legacy V2 footer wordmark sizing removed — footer now uses the
   full STK STEAKHOUSE square lockup styled via .footer__brand-block) */

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 900px) {
  /* Show hamburger toggle */
  .nav__toggle { display: block; }

  /* Mobile nav links — fullscreen cream overlay, hidden until .is-open */
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 96px 24px 40px;
    background: var(--alabaster);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__links li {
    padding: 0;
    width: 100%;
    max-width: 360px;
    text-align: center;
    list-style: none;
  }
  .nav__links a {
    display: block !important;
    font-family: var(--serif) !important;
    font-weight: 300 !important;
    font-size: 26px !important;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
    color: var(--ink) !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(31, 27, 23, 0.08);
    transition: color 0.25s ease;
  }
  .nav__links a:hover,
  .nav__links a:focus-visible { color: var(--champagne-deep) !important; }
  .nav__links a.is-current { color: var(--champagne-deep) !important; }
  .nav__links a.is-current::after { display: none; }
  /* Lock body scroll while menu is open */
  body.nav-menu-open { overflow: hidden; }

  .nav { padding: 0 24px; }
  .hero, .photoblock { padding-left: 24px; padding-right: 24px; }
  .photoblock__content, .section--cream, .menu-section, .private-section, .guest-inner, .visit-text { padding-left: 24px; padding-right: 24px; }
  .menu-grid {
    grid-template-areas:
      "video"
      "text"
      "listing";
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 64px;
    padding: 0 24px;
  }
  .menu-text, .menu-image, .menu-listing { grid-column: auto; }
  .menu-image { min-height: 320px; }
  .cinema-v2 .menu-grid {
    grid-template-areas: "text" "listing";
  }
  .visit-section { grid-template-columns: 1fr; }
  .visit-photo, .visit-text { grid-column: auto; }
  .visit-text { padding: 80px 24px; }
  .private-grid, .guest-inner { grid-template-columns: 1fr; gap: 48px; }
  .private-card:nth-child(2) { margin-top: 0; }
  /* Events playbill stacks on mobile */
  .event-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .event-card__bg { width: 100%; aspect-ratio: 16/9; order: initial; }
  .event-card__bottom { border-left: none; padding-left: 0; }
  .event-card:hover { padding-left: 0; padding-right: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .steaks-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .visit-info-bar { grid-template-columns: 1fr; gap: 32px; }
  .visit-section__inner { padding: 120px 24px 60px; }

  /* MOBILE — cinema-v2 specific fixes */
  /* The display--xl nowrap rule that keeps "The Steakhouse," on one line at
     desktop has to relax on mobile, or the headline overflows the viewport. */
  .cinema-v2 .section--cream .display--xl {
    white-space: normal;
    font-size: clamp(44px, 12vw, 72px);
    letter-spacing: -0.035em;
  }
  /* Cream section's 1200px max-width override also needs to relax */
  .cinema-v2 .section--cream .section__inner--narrow { max-width: 100%; }
  /* Mobile nav: shrink the Reserve CTA so it doesn't dominate the bar */
  .cinema-v2 .nav { height: 64px; }
  .cinema-v2 .nav__brand { height: 36px; }
  .cinema-v2 .nav__cta { padding: 10px 18px; font-size: 10px; letter-spacing: 0.18em; margin-left: auto; }
  /* Tighten hero CTAs that survived the move to section 2 — buttons go
     full-width-ish so they don't dance on narrow screens */
  .cinema-v2 .section--cream .hero__ctas { flex-direction: column; align-items: center; gap: 12px; }
  .cinema-v2 .section--cream .hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  /* The Cuts steak grid: 1 column on mobile so each card has full width */
  .cinema-v2 .steaks-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Celebrations + Process grids collapse on mobile */
  .celebrations-section { padding: 80px 24px 100px; }
  .celebrations-section__head { flex-direction: column; align-items: flex-start; margin-bottom: 56px; gap: 24px; }
  .celebrations-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-section { padding: 100px 24px 120px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step { padding: 28px 0; }
  .menu-category { padding: 80px 24px; }
  .menu-category-pair { grid-template-columns: 1fr; gap: 64px; padding: 80px 24px 100px; }
  .menu-category-triple { grid-template-columns: 1fr; gap: 64px; padding: 80px 24px 100px; }
  .menu-category-triple .menu-category .display--lg { font-size: clamp(36px, 6vw, 52px); }
  .menu-category-triple .menu-list .name { font-size: 20px; }
  .menu-cta-section { padding: 80px 24px 100px; }
  .seasonal-events-section { padding: 80px 24px 100px; }
  .seasonal-event { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .seasonal-event__day { font-size: 56px; }
  .seasonal-event__cta { justify-self: start; }
  .info-trio { padding: 80px 24px 100px; }
  .info-trio__grid { grid-template-columns: 1fr; gap: 48px; }
  .info-trio__head { margin-bottom: 48px; }
  .map-embed { padding: 80px 24px 100px; }
  .schedule-block { margin-top: 48px; padding: 0 4px; }
  .schedule-block + .schedule-block { margin-top: 64px; }
  .schedule-list li { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .schedule-list__value { white-space: normal; letter-spacing: 0.12em; }
  .map-embed__head { margin-bottom: 40px; }
  .map-embed__frame { aspect-ratio: 4/3; }
  .map-embed__actions { flex-direction: column; align-items: stretch; margin-top: 32px; }
  .package-section { padding: 80px 24px; }
  .package-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .package-section__inner--reverse > .package-section__photo { order: 0; }
  .package-section__body { padding: 0; }
  /* Menu page mobile */
  .film-strip__cell { width: 240px; }
  .approach-section { padding: 80px 24px 100px; }
  .approach-section__head { margin-bottom: 32px; }
  .approach-section__body { grid-template-columns: 1fr; gap: 48px; }
  .approach-section__text { max-width: none; }
  .photo-break { height: 60vh; min-height: 400px; }
  .photo-break--short { height: 50vh; min-height: 340px; }
  .photo-break__caption { padding: 0 24px; }
  .menu-subnav__inner { padding: 14px 24px; gap: 18px; }
  .triptych { grid-template-columns: 1fr; gap: 6px; padding: 0 0 6px; }
  .wagyu-feature { min-height: auto; }
  .wagyu-feature__content { padding: 100px 24px; }
  .wagyu-feature__body { font-size: 16px; }
  .wagyu-feature__list .name { font-size: 18px; }
  .faq-section { padding: 80px 24px 100px; }
  .faq-section__head { margin-bottom: 48px; }
  .faq-item summary { font-size: 18px; padding: 22px 0; }
  .end-hero__content { padding: 80px 24px; }
  /* Drinks page mobile */
  .stat-bar { padding: 56px 24px; }
  .stat-bar__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-bar__item { border-left: none; padding-left: 0; border-top: 1px solid rgba(31, 27, 23, 0.12); padding-top: 24px; }
  .stat-bar__item:nth-child(-n+2) { border-top: none; padding-top: 0; }
  .spotlight { padding: 80px 24px 100px; }
  .spotlight__inner { grid-template-columns: 1fr; gap: 48px; }
  .spotlight__body { padding: 0; }
  .spotlight__cols { grid-template-columns: 1fr; gap: 32px; }
  .cocktail-cards { padding: 80px 24px 100px; }
  .cocktail-cards__head { margin-bottom: 48px; }
  .cocktail-cards__grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-split { grid-template-columns: 1fr; min-height: auto; }
  .feature-split__photo { aspect-ratio: 4/3; }
  .feature-split__photo-overlay { left: 24px; right: 24px; bottom: 24px; }
  .feature-split__body { padding: 80px 24px 100px; }
  .feature-split__list-grid { grid-template-columns: 1fr; gap: 32px; }
  .bottle-library { padding: 80px 0 80px; }
  .bottle-library__head { padding: 0 24px; margin-bottom: 48px; }
  .bottle-library__scroller { padding: 0 24px; gap: 16px; }
  .bottle-library__cell { width: 220px; }
  .wine-table { padding: 80px 24px 100px; }
  .wine-table__head { margin-bottom: 48px; }
  .wine-table__columns { grid-template-columns: 1fr; gap: 56px; }
  .wine-table__list li { grid-template-columns: 1fr auto; gap: 12px; }
  .wine-table__region { grid-column: 1 / -1; padding-bottom: 4px; }
  .behind-bar { padding: 80px 24px 100px; }
  .behind-bar__head { margin-bottom: 48px; }
  .behind-bar__grid { grid-template-columns: 1fr; gap: 32px; }
  /* Guest list champagne hairlines: on desktop they flank the form midway.
     On mobile the narrow viewport puts them through the middle of the text —
     re-anchor to the bottom of the section so they sit below the form. */
  .cinema-v2 .guest-section::before,
  .cinema-v2 .guest-section::after {
    top: auto;
    bottom: 64px;
    transform: none;
  }
}
@media (max-width: 1200px) and (min-width: 901px) {
  .steaks-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   GALLERY PAGE — chaptered photo tiers. Falls + Cuts run at
   full brightness on cream; Room + Bar sit inside the textured
   block so the tonal drop signals "secondary" without shrinking
   the tiles.
   ============================================================ */
.gallery-chapter {
  padding: 120px 56px 100px;
  position: relative;
}
.gallery-chapter--in-texture {
  padding: 100px 56px 40px;
}
.gallery-chapter--in-texture + .gallery-chapter--in-texture {
  padding-top: 20px;
}
.gallery-chapter__head {
  max-width: 1400px;
  margin: 0 auto 72px;
}
.gallery-chapter__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 22px;
}
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.gallery-tile {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #100D0A;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(1.05) contrast(1.05);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
}
.gallery-tile:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1) contrast(1.08);
}

/* Tile size presets — mapped to grid columns/rows */
.gallery-tile--xl { grid-column: span 4; grid-row: span 2; }
.gallery-tile--lg { grid-column: span 3; grid-row: span 2; }
.gallery-tile--md { grid-column: span 2; grid-row: span 1; }

/* Chapter-specific balance tweaks. Each chapter has a different
   tile count, so we set an editorial rhythm per chapter rather
   than one grid rule for all. */

/* Falls: 3 tiles — XL wide anchor + portrait sidekick + full-width banner. */
.gallery-grid--falls {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-grid--falls .gallery-tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-grid--falls .gallery-tile:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.gallery-grid--falls .gallery-tile:nth-child(3) { grid-column: span 6; grid-row: span 2; }

/* Cuts: 5 tiles — XL cover + 2 stacked short + 2 wide half-tiles below. */
.gallery-grid--cuts {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-grid--cuts .gallery-tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-grid--cuts .gallery-tile:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-grid--cuts .gallery-tile:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-grid--cuts .gallery-tile:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--cuts .gallery-tile:nth-child(5) { grid-column: span 3; grid-row: span 2; }

/* Kitchen: 3 tiles — two halves top + a full-width dessert banner below. */
.gallery-grid--kitchen {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-grid--kitchen .gallery-tile:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--kitchen .gallery-tile:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--kitchen .gallery-tile:nth-child(3) { grid-column: span 6; grid-row: span 2; }

/* Room: 2 tiles — clean split, each tile 3 cols × 2 rows. */
.gallery-grid--room {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-grid--room .gallery-tile:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--room .gallery-tile:nth-child(2) { grid-column: span 3; grid-row: span 2; }

/* Bar: 5 tiles — two wide anchors on top, three squares below. */
.gallery-grid--bar {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-grid--bar .gallery-tile:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--bar .gallery-tile:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-grid--bar .gallery-tile:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.gallery-grid--bar .gallery-tile:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-grid--bar .gallery-tile:nth-child(5) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1100px) {
  .gallery-chapter { padding: 96px 32px 72px; }
  .gallery-chapter--in-texture { padding: 80px 32px 20px; }
  .gallery-grid,
  .gallery-grid--falls,
  .gallery-grid--cuts,
  .gallery-grid--kitchen,
  .gallery-grid--room,
  .gallery-grid--bar {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
  }
  .gallery-grid--falls .gallery-tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .gallery-grid--falls .gallery-tile:nth-child(2) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid--falls .gallery-tile:nth-child(3) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid--cuts .gallery-tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .gallery-grid--cuts .gallery-tile:nth-child(2),
  .gallery-grid--cuts .gallery-tile:nth-child(3),
  .gallery-grid--cuts .gallery-tile:nth-child(4),
  .gallery-grid--cuts .gallery-tile:nth-child(5) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid--kitchen .gallery-tile:nth-child(1),
  .gallery-grid--kitchen .gallery-tile:nth-child(2) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid--kitchen .gallery-tile:nth-child(3) { grid-column: span 4; grid-row: span 2; }
  .gallery-grid--room .gallery-tile { grid-column: span 2; grid-row: span 2; }
  .gallery-grid--bar .gallery-tile { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 720px) {
  .gallery-chapter { padding: 72px 20px 56px; }
  .gallery-chapter__head { margin-bottom: 48px; }
  .gallery-grid,
  .gallery-grid--falls,
  .gallery-grid--cuts,
  .gallery-grid--room,
  .gallery-grid--bar {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 14px;
  }
  .gallery-grid .gallery-tile,
  .gallery-grid--falls .gallery-tile,
  .gallery-grid--cuts .gallery-tile,
  .gallery-grid--room .gallery-tile,
  .gallery-grid--bar .gallery-tile {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}

/* ============================================================
   ACCOMMODATIONS PAGE — package eyebrow, fineprint, rooms strip
   ============================================================ */
.package-section__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 22px;
}
.package-section__fineprint {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-quiet);
  margin-top: 24px;
  max-width: 540px;
}
.package-section__fineprint a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.package-section__fineprint a:hover { color: var(--champagne-deep); }

.rooms-strip {
  padding: 120px 56px;
  position: relative;
}
.rooms-strip__head {
  max-width: 1400px;
  margin: 0 auto 80px;
}
.rooms-strip__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-tile {
  background: var(--alabaster);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}
.room-tile:hover { transform: translateY(-6px); }
.room-tile__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.room-tile:hover .room-tile__photo img { transform: scale(1.04); }
.room-tile__body { padding: 32px 28px 36px; }
.room-tile__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.room-tile__title em {
  font-style: italic;
  color: var(--champagne-deep);
}
.room-tile__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.rooms-strip__cta {
  max-width: 1400px;
  margin: 64px auto 0;
  text-align: center;
}

@media (max-width: 1000px) {
  .rooms-strip { padding: 96px 32px; }
  .rooms-strip__grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .rooms-strip { padding: 72px 20px; }
  .rooms-strip__head { margin-bottom: 48px; }
}
