/* ============================================
   SPICE IN HEIGHTS — Cinematic Dark Theme
   ============================================ */
:root {
  --void: #0F0A06;
  --ink-black: #1B120B;
  --ink-elevated: #241A10;
  --saffron-gold: #C8952A;
  --gold-bright: #E8B84B;
  --iznik-blue: #2E5EA8;
  --iznik-glow: #4A7AC9;
  --ivory-linen: #F5F0E8;
  --ivory-dim: rgba(245, 240, 232, 0.78);
  --ivory-faint: rgba(245, 240, 232, 0.5);
  --mosaic-teal: #3E7C7C;
  --mosaic-terracotta: #B5532C;
  --mosaic-sage: #5BA89A;

  --font-display: 'Syne', 'Arial Black', Impact, sans-serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1280px;
  --section-pad: clamp(48px, 6vw, 96px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ivory-linen);
  background: var(--void);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  margin-bottom: 1.25rem;
  color: var(--ivory-linen);
}

h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: 0.5rem; }

p { max-width: 62ch; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-gold);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-bright); }
.lead { font-size: 1.15rem; color: var(--ivory-dim); }

/* Inline highlight for key words within copy */
.hl { color: var(--gold-bright); font-weight: 600; }

:focus-visible { outline: 3px solid var(--iznik-glow); outline-offset: 3px; }

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

/* ============================================
   CURSOR GLOW (desktop ambient light, follows pointer in hero)
   ============================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,0.18) 0%, rgba(46,94,168,0.10) 45%, transparent 75%);
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.cursor-glow.active { opacity: 1; }

@media (max-width: 860px) {
  .cursor-glow { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.1rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-sheen {
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-150%);
  pointer-events: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--saffron-gold));
  color: var(--void);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(200,149,42,0.55); }

.btn-outline-light {
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--ivory-linen);
  background: rgba(245,240,232,0.03);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { border-color: var(--ivory-linen); background: rgba(245,240,232,0.1); transform: translateY(-2px); }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
   padding: 10px;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 10, 6, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 149, 42, 0.1);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(15, 10, 6, 0.94);
  border-color: rgba(200, 149, 42, 0.22);
}

.scroll-progress {
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron-gold), var(--gold-bright));
  box-shadow: 0 0 8px rgba(200, 149, 42, 0.6);
  transition: width 0.1s linear;
  z-index: 1;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.4s ease;
}
.site-header.scrolled .nav-wrap { padding: 0.5rem 1.5rem; }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  transition: height 0.4s ease;
}
.site-header.scrolled .nav-logo-img { height: 90px; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--ivory-linen);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--saffron-gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-icon-link { color: var(--gold-bright) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ivory-linen); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(15,10,6,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200,149,42,0.25);
}
.msb-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem; color: var(--ivory-linen); font-size: 0.85rem; font-weight: 600; padding: 0.9rem 0; }
.msb-primary { background: linear-gradient(135deg, var(--gold-bright), var(--saffron-gold)); color: var(--void); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #1a2f52 0%, var(--void) 55%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-glow-1 { width: 50vw; height: 50vw; top: -10%; left: -10%; background: radial-gradient(circle, rgba(46,94,168,0.35), transparent 70%); animation: drift1 18s ease-in-out infinite; }
.hero-glow-2 { width: 40vw; height: 40vw; bottom: -5%; right: -5%; background: radial-gradient(circle, rgba(200,149,42,0.22), transparent 70%); animation: drift2 22s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4%, 6%); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5%, -4%); } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 920px;
}

.hero-content h1 {
  font-size: clamp(2.85rem, 7.2vw, 5.75rem);
  color: var(--ivory-linen);
  margin: 0.75rem 0 2.25rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero load reveal animation, applied to eyebrow/h1/ctas */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 1s var(--ease) forwards;
  animation-delay: var(--rd, 0s);
}
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  border: 1.5px solid rgba(245,240,232,0.4);
  border-radius: 14px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.4s;
}
.scroll-cue span { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--saffron-gold); margin: 7px auto 0; animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================
   SCROLL-TRIGGERED REVEALS (sections)
   ============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-on-scroll.in-view { opacity: 1; transform: translateY(0); }

/* Variant: slide in from left (chef story image) */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-from-left.in-view { opacity: 1; transform: translateX(0); }

/* Variant: slide in from right (chef story text) */
.reveal-from-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--ease) 0.1s, transform 1s var(--ease) 0.1s;
}
.reveal-from-right.in-view { opacity: 1; transform: translateX(0); }

/* Variant: staggered children (dish cards, event cards, team cards) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0) scale(1); }

/* Variant: scale-up reveal (menu card, event numbers) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

/* Variant: unmask reveal (team photos) — clip-path wipe */
.reveal-unmask {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s var(--ease);
}
.reveal-unmask.in-view { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  .reveal-from-left, .reveal-from-right, .reveal-stagger > *, .reveal-scale, .reveal-unmask {
    opacity: 1 !important; transform: none !important; clip-path: inset(0) !important;
  }
}

/* ============================================
   SECTION SHARED + AMBIENT GLOWS
   ============================================ */
section { padding: var(--section-pad) 1.5rem; scroll-margin-top: 84px; position: relative; overflow: hidden; }
.section-grid { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }

.ambient-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.ambient-blue { top: -20%; right: -15%; background: radial-gradient(circle, rgba(46,94,168,0.3), transparent 70%); }
.ambient-blue-soft { top: -10%; left: -15%; background: radial-gradient(circle, rgba(46,94,168,0.18), transparent 70%); }
.ambient-gold { bottom: -25%; left: -10%; background: radial-gradient(circle, rgba(200,149,42,0.22), transparent 70%); }
.ambient-gold-soft { top: -15%; right: -10%; background: radial-gradient(circle, rgba(200,149,42,0.16), transparent 70%); }
.ambient-teal { bottom: -20%; right: -10%; background: radial-gradient(circle, rgba(62,124,124,0.25), transparent 70%); }

/* ============================================
   BACKGROUND ROSETTE — signature dome motif
   One shared SVG, reused via <use>, continuously
   rotating via GSAP, repositioned per section.
   ============================================ */
.bg-rosette {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  will-change: transform;
}

/* ============================================
   HERO STAINED GLASS WINDOW — real Three.js plane,
   textured with the arch artwork, animated as flat
   glass with a moving light sweep (see dome3d.js)
   ============================================ */
.hero-dome-3d {
  position: absolute;
  z-index: 1;
  top: 50%; left: 50%;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  /* Transform-based centering stays perfectly centered at any size,
     unlike fixed negative margins which only align at exactly 640px. */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-dome-3d canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 0.85;
}
.hero-dome-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.24;
}

/* Decorative 3D object: ceramic plate, showcased in the events section */
.decor-3d {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.decor-3d canvas { width: 100% !important; height: 100% !important; }
/* Static image shown when WebGL/3D can't run (removed by JS when the canvas mounts).
   Gently rotates so the circle still animates, unless the user prefers reduced motion. */
.decor-3d-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: plateSpin 26s linear infinite;
}
@keyframes plateSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .decor-3d-fallback { animation: none; }
}

.decor-3d-plate {
  width: 280px; height: 280px;
  /* Desktop: right-side decorative accent */
  top: 6%; right: 4%;
}
@media (max-width: 1024px) {
  /* Tablet: same right-side position, scaled down */
  .decor-3d-plate { opacity: 0.55; transform: scale(0.8); }
}
@media (max-width: 700px) {
  /* Mobile: drop the solid plate and show it as a faint watermark *behind*
     the intro paragraphs instead. */
  .decor-3d-plate { display: none; }
  .events-intro::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 260px; height: 260px;
    max-width: 88%;
    background: url("../images/ceramic-plate.png") center / contain no-repeat;
    opacity: 0.16;
    z-index: -1;                 /* behind the intro text */
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: plateSpinBg 60s linear infinite;
  }
}
@keyframes plateSpinBg {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .events-intro::before { animation: none; }
}
@media (max-width: 860px) {
  .hero-dome-3d {
    width: min(85vw, 640px);
    height: min(85vw, 640px);
    /* centering handled by transform: translate(-50%, -50%) on the base rule */
  }
}

.rosette-top-right {
  width: 460px; height: 460px;
  top: -160px; right: -160px;
  opacity: 0.22;
}

@media (max-width: 860px) {
  .bg-rosette { opacity: 0.14; }
  .rosette-hero-center { width: 85vw; height: 85vw; margin-top: -42.5vw; margin-left: -42.5vw; }
}

/* ============================================
   LAMP PENDANT — Turkish mosaic lamp, reused three
   times across the site with distinct motion per spot
   ============================================ */
.lamp-pendant {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lamp-pendant-cord {
  width: 2px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(200,149,42,0.05), rgba(200,149,42,0.55));
}
.lamp-pendant-cord-short { height: 40px; }

.lamp-pendant-swing {
  position: relative;
  transform-origin: top center;
  animation: lampSwing 6.5s ease-in-out infinite;
}
.lamp-pendant-swing-slow { animation-duration: 9s; }

.lamp-pendant-img {
  width: 132px;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 25px 50px -15px rgba(0,0,0,0.65);
  filter: drop-shadow(0 0 18px rgba(74,122,201,0.25));
}
.lamp-pendant-img-glow {
  filter: drop-shadow(0 0 26px rgba(232,184,75,0.3)) drop-shadow(0 0 14px rgba(74,122,201,0.3));
}

.lamp-pendant-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  margin-top: -110px; margin-left: -110px;
  background: radial-gradient(circle, rgba(74,122,201,0.22) 0%, rgba(232,184,75,0.1) 45%, transparent 75%);
  z-index: -1;
  animation: lampGlowPulse 4s ease-in-out infinite;
}
.lamp-pendant-glow-wide { width: 320px; height: 320px; margin-top: -160px; margin-left: -160px; }

@keyframes lampSwing {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
@keyframes lampGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Chef Story placement: bottom-right of the photo frame */
.lamp-pendant-story {
  bottom: 18px; right: 18px;
}
.chef-image:hover .lamp-pendant-story .lamp-pendant-img { transform: scale(1.04); }
.lamp-pendant-story .lamp-pendant-img { transition: transform 0.5s var(--ease); }

/* Team section placement: floating above the grid, glowing, slower sway */
.lamp-pendant-team {
  top: 6px; left: 50%;
  margin-left: -66px;
}
.lamp-pendant-team .lamp-pendant-cord { height: 0; }

@media (max-width: 860px) {
  .lamp-pendant-story { /*display: none;*/ }
  .lamp-pendant-team .lamp-pendant-img { width: 96px; }
  .lamp-pendant-team .lamp-pendant-glow-wide { width: 220px; height: 220px; margin-top: -110px; margin-left: -110px; }
}

/* ============================================
   OLIVE BRANCH 3D ACCENTS — Mediterranean botanical motif,
   real Three.js planes that sway like branches in a light
   breeze, used in the Bar section and the Visit/Address section
   ============================================ */
.decor-3d-olive {
  opacity: 0.85;
}
.olive-3d-bar-top {
  width: 240px; height: 240px;
  top: 2%; right: 4%;
}
.olive-3d-bar-bottom {
  width: 220px; height: 220px;
  bottom: 2%; left: 2%;
}
.olive-3d-visit {
  width: 260px; height: 260px;
  top: 50%; right: 1%;
  margin-top: -130px;
}
@media (max-width: 1024px) {
  .decor-3d-olive { opacity: 0.55; transform: scale(0.78); }
}
@media (max-width: 700px) {
  .decor-3d-olive { display: none; }
}

/* ============================================
   GREEK KEY FRIEZE — animated meander pattern strip,
   frames the Dining Experience section
   ============================================ */
.greek-frieze {
  position: relative;
  width: 100%;
  height: 28px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  max-width: var(--max-width);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2264%22%20height%3D%2232%22%20viewBox%3D%220%200%2064%2032%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20stroke%3D%22%23C8952A%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22square%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M2%2030%20V10%20H22%20V22%20H10%22/%3E%0A%20%20%20%20%3Cpath%20d%3D%22M34%2030%20V10%20H54%20V22%20H42%22/%3E%0A%20%20%3C/g%3E%0A%3C/svg%3E%0A");
  background-size: 56px 28px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  animation: friezeDrift 22s linear infinite;
}
.greek-frieze-top { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.greek-frieze-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); margin-bottom: 0; }

@keyframes friezeDrift {
  from { background-position: 0 center; }
  to { background-position: -448px center; }
}
@media (max-width: 640px) {
  .greek-frieze { height: 18px; background-size: 36px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .greek-frieze { animation: none; }
  .lamp-pendant-swing, .lamp-pendant-glow { animation: none; }
}

/* ============================================
   CHEF STORY
   ============================================ */
.chef-story { background: var(--ink-black); }
.chef-story .section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
 /* align-items: center;*/
}
.chef-image { position: relative; }
.chef-photo-frame {
  aspect-ratio: 4/5;
}

.chef-text p { color: var(--ivory-dim); margin-bottom: 1.1rem; }
.chef-text p:last-child { margin-bottom: 0; }

/* ============================================
   DINING
   ============================================ */
.dining { background: var(--void); }
.dining-intro { max-width: 760px; margin: 0 auto 3.5rem; text-align: left; position: relative; z-index: 2; }
.dining-intro p { margin-bottom: 1rem; color: var(--ivory-dim); }
.dining-intro p:last-child { margin-bottom: 0; }

.dish-strip { max-width: var(--max-width); margin: 0 auto 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; position: relative; z-index: 2; }
.dish-card { text-align: left; }

.dish-img {
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease;height: 210px;
}
.dish-card:hover .dish-img { box-shadow: 0 28px 55px -16px rgba(0,0,0,0.65); }
.dish-img::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(245,240,232,0);
  transition: border-color 0.4s ease;
}
.dish-card:hover .dish-img::after { border-color: rgba(200,149,42,0.5); }


.dish-card h3 { color: var(--ivory-linen); font-size: 1.2rem; }
.dish-card p { color: var(--ivory-faint); font-size: 0.95rem; }

.menu-card {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  background: var(--ink-elevated);
  border: 1px solid rgba(200,149,42,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 45px -22px rgba(0,0,0,0.5);
}
.menu-card h3 { margin-bottom: 0.25rem; color: var(--ivory-linen); }
.menu-card p { color: var(--ivory-dim); margin: 0; }

/* ---- Menu category navigation (Okto-style) ---- */
.menu-heading { max-width: var(--max-width); margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.menu-heading .eyebrow { justify-content: center; }
.menu-heading h2 { margin-top: 0.4rem; }

.menu-nav {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4.5rem;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem 3rem;
  position: relative;
  z-index: 2;
}
/* forces the reference 2-line (3 + 3) layout */
.menu-nav-break { flex-basis: 100%; height: 0; }
.menu-nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.9rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-linen);
  text-decoration: none;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
/* base rule under each link */
.menu-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(245, 240, 232, 0.35);
}
/* gold rule that expands from centre on hover */
.menu-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron-gold), var(--gold-bright));
  transform: translateX(-50%);
  transition: width 0.45s var(--ease);
}
.menu-nav-link:hover,
.menu-nav-link:focus-visible {
  color: var(--gold-bright);
  transform: translateY(-4px);
  outline: none;
}
.menu-nav-link:hover::after,
.menu-nav-link:focus-visible::after { width: 100%; }

.hours-snapshot { max-width: var(--max-width); margin: 0 auto 3rem; display: flex; justify-content: center; position: relative; z-index: 2; }
.hours-col { text-align: center; }
.hours-label { display: block; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.4rem; }
.hours-time { font-family: var(--font-display); font-size: 1.4rem; color: var(--ivory-linen); }

.dual-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ============================================
   BAR
   ============================================ */
.bar-section { /*background: linear-gradient(160deg, #173361 0%, var(--void) 75%); */     background: #312714;}
.bar-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.bar-logo { width: clamp(150px, 22vw, 230px); height: auto; margin-bottom: 1.5rem; display: block; }
.bar-text p { color: var(--ivory-dim); margin-bottom: 1rem; }
.bar-tagline { font-style: italic; color: var(--gold-bright); }

.bar-list { list-style: none; margin: 1.75rem 0 2.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; }
.bar-list li { padding-left: 1.4rem; position: relative; font-weight: 500; color: var(--ivory-linen); }
.bar-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; background: var(--saffron-gold); border-radius: 50%; }

.bar-image {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, rgba(74,122,201,0.3) 0%, var(--void) 100%);
  border: 1px solid rgba(245,240,232,0.12);
  position: relative;
  overflow: hidden;
}
.bar-image::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(232,184,75,0.15), transparent 60%);
}

/* ============================================
   EVENTS
   ============================================ */
.events { background: var(--ink-black); }
/* Keep events content within the site container so it lines up with the
   sections above instead of running to the viewport edge. */
.events-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.events-intro { max-width: 760px; margin: 0 0 3rem; position: relative; z-index: 2; }
.events-intro p { color: var(--ivory-dim); margin-bottom: 1rem; }
.events-intro p:last-child { margin-bottom: 0; }

.events-grid { max-width: var(--max-width); margin: 0 auto 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; position: relative; z-index: 2; }
.event-card {
  background: var(--ink-elevated);
  border: 1px solid rgba(200,149,42,0.15);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -18px rgba(0,0,0,0.5);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.event-card:hover { border-color: rgba(200,149,42,0.5); box-shadow: 0 26px 50px -16px rgba(0,0,0,0.6); }
.event-number { display: block; font-family: var(--font-display); font-size: 3rem; color: var(--saffron-gold); margin-bottom: 0.75rem; line-height: 1; }
.event-card h3 { color: var(--ivory-linen); }
.event-card p { color: var(--ivory-faint); font-size: 0.95rem; margin: 0; }
.events-cta { display: flex; justify-content: flex-start; position: relative; z-index: 2; }

/* ============================================
   TEAM
   ============================================ */
.team { background: var(--void); text-align: center; }
.team-grid { max-width: var(--max-width); margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; position: relative; z-index: 2; }

.team-photo {
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 36px -18px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover .team-photo { transform: scale(1.03); }
.team-photo-1 { background: linear-gradient(135deg, var(--saffron-gold) 0%, #5C3F14 100%); }
.team-photo-2 { background: linear-gradient(135deg, #3E7C7C 0%, #15302F 100%); }
.team-photo-3 { background: linear-gradient(135deg, var(--iznik-blue) 0%, #0F1F38 100%); }
.team-photo-4 { background: linear-gradient(135deg, #B5532C 0%, #4A2110 100%); }
.team-photo-5 { background: linear-gradient(135deg, #8A6A45 0%, #2F2316 100%); }

.team-card h3 { color: var(--ivory-linen); margin-bottom: 0.15rem; }
.team-role { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.6rem; }
.team-card p { color: var(--ivory-faint); font-size: 0.95rem; }

/* ============================================
   PRESS — "Featured In" publication logo strip
   ============================================ */
.press { background: var(--void); text-align: center; }
.press-intro { max-width: var(--max-width); margin: 0 auto 3.5rem; }
.press-intro .eyebrow { justify-content: center; }
.press-intro .lead { margin: 0 auto; }

.press-logos {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 2;
}
.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 96px;
  padding: 1rem;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease), transform 0.4s var(--ease);
}
.press-logo:hover,
.press-logo:focus-visible {
  opacity: 1;
  filter: none;
  transform: translateY(-4px);
  outline: none;
}
/* Real logos drop in as <img> and inherit the same hover treatment */
.press-logo img { max-height: 64px; width: auto; object-fit: contain; }
/* Text wordmark placeholder until publication logo images are supplied */
.press-logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ivory-linen);
}
.press-logo-text strong { display: block; font-weight: 800; }
.press-logo-text small {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--ivory-dim);
}

@media (max-width: 640px) {
  .press-logos { grid-template-columns: 1fr; gap: 1.75rem; }
  .press-logo { min-height: 72px; }
}

/* ============================================
   TESTIMONIALS (hidden by default)
   ============================================ */
.testimonials { background: var(--ink-black); text-align: center; }
.testimonial-grid { max-width: var(--max-width); margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: var(--ink-elevated); padding: 2.25rem; text-align: left; border: 1px solid rgba(245,240,232,0.08); }
.stars { color: var(--saffron-gold); margin-bottom: 1rem; letter-spacing: 0.15em; }
.testimonial-card p { color: var(--ivory-dim); font-size: 0.95rem; margin-bottom: 1.25rem; }
.testimonial-author { font-size: 0.85rem; color: var(--gold-bright); }

/* ============================================
   VISIT / HOURS & LOCATION
   ============================================ */
.visit { background: var(--ink-black); }
.visit > .eyebrow, .visit > h2 { max-width: var(--max-width); margin-left: auto; margin-right: auto; display: block; position: relative; z-index: 2; }
.visit-grid { max-width: var(--max-width); margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); position: relative; z-index: 2; }

.visit-block { margin-bottom: 2.25rem; }
.visit-block h3 { font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.6rem; }
.visit-hours { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--ivory-linen); }
.visit-hours span { color: var(--saffron-gold); }
.visit-note { font-size: 0.88rem; color: var(--ivory-faint); max-width: 40ch; }

address { font-style: normal; line-height: 1.6; margin-bottom: 0.5rem; color: var(--ivory-dim); }

.text-link { color: var(--gold-bright); font-weight: 600; border-bottom: 1.5px solid transparent; transition: border-color 0.2s ease; }
.text-link:hover { border-color: var(--gold-bright); }

.visit-socials { display: flex; gap: 1.25rem; margin-bottom: 2rem; flex-wrap: wrap; }
.visit-socials a { font-size: 0.9rem; font-weight: 600; color: var(--ivory-linen); border-bottom: 1.5px solid var(--saffron-gold); padding-bottom: 2px; }

.visit-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.visit-map { min-height: 380px; background: var(--void); border: 1px solid rgba(245,240,232,0.1); filter: grayscale(0.3) brightness(0.85); }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; }

/* ============================================
   RESERVE / ORDER ANCHOR SECTIONS
   ============================================ */
/* Reserve + Order sit side by side so they don't stack into dead space. */
.reserve-order-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.reserve-order-row > section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
@media (max-width: 768px) { .reserve-order-row { grid-template-columns: 1fr; } }

.reserve-order, .order-online { text-align: center; }
.reserve-order { background: linear-gradient(160deg, var(--ink-black) 0%, #1c2e4d 100%); }
.order-online { background: linear-gradient(160deg, #173361 0%, var(--ink-black) 100%); }
.reserve-order-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.reserve-order p, .order-online p { margin: 0 auto 2rem; color: var(--ivory-dim); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--void); color: var(--ivory-dim); padding: 4.5rem 1.5rem 2rem; border-top: 1px solid rgba(200,149,42,0.1); }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,240,232,0.1); }

.footer-logo-img { width: 160px; height: auto; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer-chef { color: var(--gold-bright); font-size: 0.88rem; }

.footer-socials { display: flex; gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-socials a { font-size: 0.85rem; color: var(--gold-bright); }

.footer-links h4, .footer-contact h4 { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ivory-linen); margin-bottom: 1.1rem; }
.footer-links a, .footer-contact p, .footer-contact a { display: block; font-size: 0.92rem; margin-bottom: 0.7rem; }
.footer-contact address { font-size: 0.92rem; margin-bottom: 0.7rem; }

.footer-bottom { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 1.75rem; font-size: 0.82rem; color: var(--ivory-faint); flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .chef-story .section-grid, .bar-grid, .visit-grid { grid-template-columns: 1fr; }
  .bar-image { order: -1; aspect-ratio: 4/5; }
  .events-grid, .team-grid, .testimonial-grid, .dish-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 58px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(15,10,6,0.98);
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(200,149,42,0.2);
  }
}

@media (max-width: 640px) {
  .events-grid, .team-grid, .testimonial-grid, .dish-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .menu-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .bar-list { grid-template-columns: 1fr; }
  .hero-ctas, .dual-cta, .visit-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn, .dual-cta .btn, .visit-ctas .btn { width: 100%; }
  .nav-logo-img { height: 60px !important; }
}
.visit-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.visit-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #b45f06;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.visit-socials a:hover {
    background: #8a4604;
    transform: translateY(-3px);
}
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #b45f06;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #b45f06;
    color: #ffffff;
    transform: translateY(-3px);
}

.team-card {
    text-align: center;
}


@media only screen and (max-width: 767px) {
 .chef-photo-frame {
    height: auto !important;
    max-height: none !important;
    overflow: hidden;
    width: auto !important;
}
.chef-photo-frame {
    aspect-ratio: 0;
}
}

/* ============================================
   SMALL-SCREEN REFINEMENTS
   Tuned for iPhone SE (375px) through
   iPhone Pro Max / 15 / 16 (up to 430px).
   Prevents text overflow, tightens spacing,
   enforces comfortable touch targets, and
   respects iOS safe areas.
   ============================================ */

/* Keep the sticky action bar clear of the iOS home indicator */
.mobile-sticky-bar {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 600px) {
  /* Long uppercase menu labels were overflowing on narrow screens */
  .menu-nav { gap: 1.75rem 2.25rem; }
  .menu-nav-link { letter-spacing: 0.15em; }
}

@media (max-width: 480px) {
  /* Pull the hero content up a little so it sits higher under the header. */
  .hero { align-items: flex-start; }
  .hero-content { padding: 8vh 1.25rem 0; }
  .hero-content h1 { font-size: clamp(2.35rem, 9vw, 3rem); }
  /* Comfortable, Apple-recommended 44px touch targets */
  .footer-socials a { width: 44px; height: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  /* Extra room below content so the sticky bar never overlaps the footer */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 380px) {
  :root { --section-pad: clamp(56px, 12vw, 96px); }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 2.4rem); }
  .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  .nav-logo-img { height: 52px !important; }
}

/* ============================================
   NEW SECTIONS (2026 layout update)
   Operational Hours · Menu (moved up) · Dining
   gallery · Video (replaces Team) · spacing
   ============================================ */

/* ---- Operational Hours ---- */
.hours-section { background: var(--ink-black); text-align: center; }
.hours-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.hours-inner .eyebrow { justify-content: center; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 2.5rem auto 1.75rem;
}
.hours-card {
  background: var(--ink-elevated);
  border: 1px solid rgba(200, 149, 42, 0.18);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.hours-card:hover { border-color: rgba(200, 149, 42, 0.5); transform: translateY(-3px); }
.hours-card .hours-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ivory-linen);
  margin-bottom: 0.4rem;
}
.hours-card .hours-time { display: block; color: var(--saffron-gold); font-weight: 600; }
.hours-note { font-size: 0.88rem; color: var(--ivory-faint); max-width: 60ch; margin: 0 auto; }

/* ---- Menu section (moved to top) ---- */
.menu-section { background: var(--void); text-align: center; }
.menu-section .menu-heading { margin-bottom: 0; }

/* ---- Dining gallery (image-based) ---- */
.dining-heading { max-width: var(--max-width); margin: 0 auto 2.75rem; text-align: center; position: relative; z-index: 2; }
.dining-heading .eyebrow { justify-content: center; }
/* Coverflow carousel: auto-scrolling + infinite loop, centre image zoomed */
.dining-carousel { position: relative; width: 100%; z-index: 2; overflow: hidden; }
.dc-track {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-block: 3.5rem;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;   /* vertical page scroll still works; horizontal = JS drag */
}
.dc-track.dragging { cursor: grabbing; }

.dc-item {
  flex: 0 0 auto;
  width: min(78vw, 350px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink-elevated);
  border: 1px solid rgba(245, 240, 232, 0.08);
  transform: scale(0.72);            /* pre-JS fallback; JS scales by distance */
  opacity: 0.5;
  transform-origin: center center;
  transition: opacity 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform, opacity;
}
.dc-item img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; user-select: none; }
.dc-item.is-center {
  opacity: 1;
  box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.85);
  border-color: rgba(200, 149, 42, 0.5);
}

.dc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(15, 10, 6, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: var(--ivory-linen);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.dc-arrow:hover { border-color: var(--saffron-gold); color: var(--gold-bright); background: rgba(15, 10, 6, 0.9); }
.dc-arrow svg { width: 22px; height: 22px; }
.dc-prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.dc-next { right: clamp(0.5rem, 3vw, 2.5rem); }

@media (max-width: 640px) {
  .dc-arrow { width: 44px; height: 44px; }
  .dc-track { padding-block: 2.5rem; }
}
@media (max-width: 480px) {
  .hours-grid { grid-template-columns: 1fr; }
}

/* ---- Bar CTAs ---- */
.bar-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

/* ---- Video section (replaces Team) ---- */
.video-section { background: var(--void); text-align: center; }
.video-heading { max-width: var(--max-width); margin: 0 auto 2.5rem; position: relative; z-index: 2; }
.video-heading .eyebrow { justify-content: center; }
.video-frame {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200, 149, 42, 0.25);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  z-index: 2;
  background: var(--ink-black);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- Reduced spacing: Press + Reserve ---- */
.press { padding-block: clamp(2.5rem, 5vw, 4rem); }
.reserve-order { padding-block: clamp(2.5rem, 5vw, 4rem); }