/* ==============================================
   MT Pockets — Editorial Premium
   ============================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette sampled from the official MT Pockets emblem: warm antique gold + deep emerald */
  --gold: oklch(0.75 0.13 78);
  --gold-bright: oklch(0.85 0.14 82);
  --gold-dim: oklch(0.62 0.10 74);
  --gold-ultra-dim: oklch(0.47 0.07 72);
  --green: oklch(0.36 0.085 183);
  --green-deep: oklch(0.25 0.065 183);
  --surface: oklch(0.155 0.034 183);
  --surface-up: oklch(0.195 0.040 183);
  --surface-down: oklch(0.105 0.027 183);
  --surface-warm: oklch(0.165 0.032 120);
  --text-1: oklch(0.95 0.012 85);
  --text-2: oklch(0.79 0.014 85);
  --text-3: oklch(0.64 0.012 85);
  --border: oklch(0.92 0.01 85 / 0.08);
  --border-strong: oklch(0.92 0.01 85 / 0.15);
  --border-gold: oklch(0.75 0.13 78 / 0.28);
  /* Daylight band (printed-menu parchment) */
  --cream: oklch(0.945 0.018 85);
  --cream-soft: oklch(0.915 0.022 83);
  --ink: oklch(0.245 0.035 183);
  --ink-2: oklch(0.42 0.028 183);
  --gold-ink: oklch(0.52 0.115 74);
  --r: 3px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-micro: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

/* Accessibility: visually-hidden but readable by screen readers + search engines */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link — invisible until focused */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  background: var(--gold);
  color: var(--surface-down);
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 1000;
  transition: top 0.25s var(--ease-out);
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Phone tap-to-call link inline */
.hero-tel {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-dim);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-micro);
}
.hero-tel:hover { color: var(--gold-bright); }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  background: var(--surface-down);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }


/* ================================================
   NOISE
   ================================================ */
#noise {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  mix-blend-mode: overlay;
}


/* ================================================
   TYPOGRAPHY
   ================================================ */
.sec-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-1);
  font-weight: 700;
}

.text-gold { color: var(--gold); }

.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}


/* ================================================
   BUTTONS
   ================================================ */
.btn-solid,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--r);
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s var(--ease-micro),
              color 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro),
              box-shadow 0.2s var(--ease-micro);
}

.btn-solid:active,
.btn-ghost:active {
  transform: scale(0.97);
}

.btn-solid {
  background: var(--gold);
  color: var(--surface-down);
}

.btn-solid:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 24px oklch(0.75 0.13 78 / 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--text-2);
  background: oklch(0.91 0.008 90 / 0.04);
}

.btn-ghost svg { width: 18px; height: 18px; }


/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 56px);
  transition: background 0.4s var(--ease-micro),
              padding 0.4s var(--ease-micro),
              box-shadow 0.4s var(--ease-micro);
}

.nav.scrolled {
  background: oklch(0.105 0.027 183 / 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.2s var(--ease-micro);
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-1);
  white-space: nowrap;
  line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
  transition: color 0.2s var(--ease-micro);
}

.nav-links a:hover { color: var(--gold); }

/* Language switcher */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: oklch(0.105 0.027 183 / 0.5);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 6px 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  border-radius: 999px;
  transition: color 0.2s var(--ease-micro), background 0.2s var(--ease-micro);
}

.nav-lang-link:hover { color: var(--text-1); }

.nav-lang-link.is-active {
  background: var(--gold);
  color: var(--surface-down);
}

.nav-book {
  background: var(--gold) !important;
  color: var(--surface-down) !important;
  padding: 10px 22px !important;
  border: none;
  border-radius: var(--r);
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease-micro) !important;
}

.nav-book:hover {
  background: var(--gold-bright) !important;
  color: var(--surface-down) !important;
}

.nav-book:active { transform: scale(0.97); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-1);
  transition: transform 0.3s var(--ease), opacity 0.2s;
  transform-origin: center;
}


/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -40px 0 0 0;
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
  will-change: transform;
}

/* ---- Hero sound toggle button ---- */
.hero-sound {
  position: absolute;
  top: clamp(90px, 12vh, 116px);
  right: clamp(16px, 4vw, 32px);
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 18px;
  background: oklch(0.105 0.027 183 / 0.86);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--text-1);
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  box-shadow: 0 4px 24px oklch(0.105 0.027 183 / 0.55),
              0 0 0 0 oklch(0.75 0.13 78 / 0.5);
  transition: background 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              transform 0.3s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
  animation: hero-sound-pulse 2.4s ease-in-out 0.6s 3;
}

@keyframes hero-sound-pulse {
  0%, 100% { box-shadow: 0 4px 24px oklch(0.105 0.027 183 / 0.55),
                         0 0 0 0 oklch(0.75 0.13 78 / 0.6); }
  50%      { box-shadow: 0 4px 24px oklch(0.105 0.027 183 / 0.55),
                         0 0 0 10px oklch(0.75 0.13 78 / 0); }
}

.hero-sound:hover {
  background: oklch(0.105 0.027 183 / 0.95);
  border-color: var(--gold-bright);
  transform: translateY(-1px) scale(1.03);
}

.hero-sound:active { transform: translateY(0) scale(0.98); }

.hero-sound-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
  transition: color 0.2s var(--ease-out);
}

.hero-sound .icon-on,
.hero-sound .icon-off {
  display: none;
}
.hero-sound.is-muted .icon-off { display: block; }
.hero-sound:not(.is-muted) .icon-on { display: block; }

.hero-sound-label-mute,
.hero-sound-label-unmute {
  display: none;
}
.hero-sound.is-muted .hero-sound-label-unmute { display: inline; }
.hero-sound:not(.is-muted) .hero-sound-label-mute { display: inline; }

@media (max-width: 600px) {
  .hero-sound {
    top: 78px;
    padding: 9px 12px;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    gap: 7px;
  }
  .hero-sound-label-mute,
  .hero-sound-label-unmute {
    display: none !important;
  }
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      var(--surface-down) 0%,
      oklch(0.105 0.027 183 / 0.80) 30%,
      oklch(0.105 0.027 183 / 0.35) 55%,
      oklch(0.105 0.027 183 / 0.15) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 clamp(28px, 6vw, 80px) clamp(48px, 7vh, 88px);
  max-width: 960px;
}

.hero-loc {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 14px;
  text-shadow: 0 1px 12px oklch(0.105 0.027 183 / 0.6);
}

/* Live status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: oklch(0.105 0.027 183 / 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
  max-width: 100%;
  transition: border-color 0.3s var(--ease-micro), background 0.3s var(--ease-micro);
}

.status-pill[data-state="open"] {
  border-color: oklch(0.55 0.15 183 / 0.4);
}

.status-pill[data-state="live"] {
  border-color: oklch(0.55 0.18 25 / 0.55);
  background: oklch(0.18 0.06 25 / 0.55);
}

.status-pill[data-state="closed"] {
  border-color: var(--border);
  background: oklch(0.105 0.027 183 / 0.5);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.65 0.18 150);
  box-shadow: 0 0 10px oklch(0.65 0.18 150);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.status-pill[data-state="live"] .status-dot {
  background: oklch(0.68 0.22 25);
  box-shadow: 0 0 14px oklch(0.68 0.22 25);
  animation-duration: 1.4s;
}

.status-pill[data-state="closed"] .status-dot {
  background: var(--text-3);
  box-shadow: none;
  animation: none;
}

.status-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-1);
  white-space: nowrap;
}

.status-pill[data-state="live"] .status-label { color: oklch(0.85 0.10 25); }
.status-pill[data-state="closed"] .status-label { color: var(--text-2); }

.status-sep {
  color: var(--text-3);
  font-size: 0.7rem;
  opacity: 0.5;
}

.status-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 560px) {
  .status-sep, .status-sub { display: none; }
  .status-pill { padding: 7px 14px; }
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-accent { color: var(--gold); }

.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 24px;
  font-weight: 500;
  text-shadow: 0 1px 12px oklch(0.105 0.027 183 / 0.6);
}

.hero-hours {
  font-size: 0.78rem;
  color: var(--text-1);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px oklch(0.105 0.027 183 / 0.6);
}

.hero-hours strong { color: var(--text-1); font-weight: 600; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero entrance */
.anim-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.loaded .anim-up { opacity: 1; transform: translateY(0); }
.loaded .d1 { transition-delay: 0.08s; }
.loaded .d2 { transition-delay: 0.16s; }
.loaded .d3 { transition-delay: 0.24s; }
.loaded .d4 { transition-delay: 0.32s; }
.loaded .d5 { transition-delay: 0.40s; }


/* ================================================
   MARQUEE BAR
   ================================================ */
.marquee {
  background: var(--green-deep);
  border-top: 1px solid oklch(0.75 0.13 78 / 0.18);
  border-bottom: 1px solid oklch(0.75 0.13 78 / 0.18);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  --marquee-duration: 38s;
}

/* Soft fade on edges so text doesn't pop in/out */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--green-deep), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--green-deep), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

.marquee-group span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--gold-dim) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
  opacity: 0.7;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}


/* ================================================
   SPORTS
   ================================================ */
.sports {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 80vh;
}

.sports-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-down);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px);
}

.sports-img img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.sports-body {
  padding: clamp(56px, 8vh, 110px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green-deep);
}

.sports-body .sec-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
}

.sports-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-top: 24px;
  max-width: 42ch;
}

.sports-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.sport-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sport-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.sport-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}


/* ================================================
   MENU
   ================================================ */
.menu-sec {
  background: var(--surface);
}

.menu-hero-img {
  position: relative;
  height: clamp(280px, 35vh, 420px);
  overflow: hidden;
}

.menu-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    var(--surface) 0%,
    oklch(0.155 0.034 183 / 0.6) 40%,
    oklch(0.155 0.034 183 / 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vh, 48px) clamp(28px, 5vw, 80px);
}

.menu-content {
  padding: clamp(40px, 5vh, 64px) clamp(28px, 5vw, 80px) clamp(80px, 10vh, 120px);
  border-top: 1px solid var(--border-gold);
}

.menu-grid {
  display: flex;
  gap: clamp(32px, 4vw, 72px);
}

.menu-side {
  flex: 1;
  min-width: 0;
}

.menu-side-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.menu-group {
  border-top: 1px solid var(--border);
  padding: 0;
}

.menu-group:last-child { border-bottom: 1px solid var(--border); }

/* Hide default disclosure marker */
.menu-group summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-1);
  font-weight: 600;
  transition: color 0.2s var(--ease-micro);
  -webkit-tap-highlight-color: transparent;
}

.menu-group summary::-webkit-details-marker { display: none; }
.menu-group summary::marker { content: ''; display: none; }

.menu-group summary:hover {
  color: var(--gold);
}

.menu-summary-text {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

/* Custom chevron — rotates open */
.menu-chev {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  margin-bottom: 4px;
  margin-right: 2px;
  transition: transform 0.3s var(--ease-out), border-color 0.2s var(--ease-micro);
  flex-shrink: 0;
}

.menu-group[open] .menu-chev {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}

.menu-group summary:hover .menu-chev {
  border-color: var(--gold-bright);
}

/* Content area with smooth height animation */
.menu-group > dl {
  padding-bottom: 22px;
  animation: menuOpen 0.32s var(--ease-out);
  overflow: hidden;
}

@keyframes menuOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-tier {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
}

.menu-tier--accent {
  background: var(--gold);
  color: var(--surface-down);
  border-color: var(--gold);
}

.menu-happy {
  position: relative;
  border: 1px solid var(--border-gold) !important;
  border-radius: 3px;
  margin: 12px 0;
  background:
    radial-gradient(ellipse at top left, oklch(0.40 0.14 78 / 0.14), transparent 70%),
    oklch(0.10 0.012 183 / 0.4);
}

.menu-happy summary { padding-inline: 18px; }
.menu-happy > dl { padding-inline: 18px; padding-bottom: 16px; }

.menu-price {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-item {
  padding: 10px 0;
  border-bottom: 1px solid oklch(0.91 0.008 90 / 0.03);
}

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

.menu-item dt {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-1);
  line-height: 1.3;
}

.menu-item dd {
  font-size: 0.74rem;
  color: var(--text-3);
  margin-top: 1px;
}

.menu-divider {
  width: 1px;
  background: var(--border-gold);
  flex-shrink: 0;
}


/* ================================================
   GALLERY
   ================================================ */
.gallery {
  background: var(--surface-down);
  padding: clamp(80px, 12vh, 140px) clamp(16px, 3vw, 40px) clamp(40px, 6vh, 80px);
}

.gallery-head {
  max-width: 1200px;
  margin: 0 auto clamp(32px, 4vh, 52px);
  padding: 0 clamp(12px, 2vw, 40px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.g-item {
  overflow: hidden;
  position: relative;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s var(--ease);
}

.g-item:hover img {
  transform: scale(1.05);
}

.g-wide {
  grid-column: span 2;
}

.g-tall {
  grid-row: span 2;
}

/* Gallery CTA — "See More on Instagram" */
.gallery-cta {
  max-width: 1200px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding: 0 clamp(12px, 2vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.gallery-cta-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.gallery-cta-btn {
  background:
    linear-gradient(135deg,
      oklch(0.60 0.18 30) 0%,
      oklch(0.55 0.20 350) 50%,
      oklch(0.55 0.18 295) 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 0.86rem;
  box-shadow: 0 6px 24px oklch(0.50 0.20 350 / 0.35);
}

.gallery-cta-btn:hover {
  background:
    linear-gradient(135deg,
      oklch(0.65 0.20 30) 0%,
      oklch(0.60 0.22 350) 50%,
      oklch(0.60 0.20 295) 100%);
  color: #fff;
  box-shadow: 0 8px 32px oklch(0.50 0.20 350 / 0.5);
  transform: translateY(-1px);
}

.gallery-cta-btn:active { transform: scale(0.97) translateY(0); }

.gallery-cta-btn svg { width: 20px; height: 20px; fill: currentColor; }


/* ================================================
   SNOOKER
   ================================================ */
.snooker {
  background: var(--surface-down);
  padding: clamp(80px, 12vh, 160px) clamp(24px, 5vw, 80px);
  position: relative;
  border-top: 1px solid var(--border);
}

.snooker-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.snooker-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.snooker-title { margin-bottom: 28px; }

/* Spanish has longer words ("PROFESIONAL") — scale the snooker title down so it fits the 2-line layout */
html[lang="es-ES"] .snooker-title {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.snooker-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 38ch;
  margin-bottom: 32px;
}

.snooker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.snooker-img {
  overflow: hidden;
  position: relative;
}

.snooker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 5s var(--ease);
}

.snooker-img:hover img {
  transform: scale(1.04);
}

.snooker-hero {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.snooker-sub {
  aspect-ratio: 4 / 3;
}


/* ================================================
   EVENTS
   ================================================ */
.events {
  background: var(--green-deep);
  padding: clamp(72px, 10vh, 140px) 0 clamp(64px, 8vh, 120px);
  position: relative;
  overflow: hidden;
}

.events-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.20;
}

.events-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: grayscale(0.4) contrast(1.05);
}

.events::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, oklch(0.40 0.14 78 / 0.20), transparent 55%),
    linear-gradient(180deg,
      oklch(0.10 0.04 183 / 0.55) 0%,
      oklch(0.10 0.04 183 / 0.92) 60%,
      var(--green-deep) 100%);
  z-index: 0;
  pointer-events: none;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dim), transparent);
  z-index: 2;
}

.events-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

/* ---- Header row: title block + tonight feature ---- */
.events-head-row {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vh, 72px);
}

.events-head { max-width: 540px; }

.events-intro {
  margin-top: 28px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 38ch;
}

/* ---- Tonight feature card ---- */
.events-tonight {
  position: relative;
  background:
    linear-gradient(140deg, oklch(0.50 0.14 78 / 0.18), oklch(0.13 0.012 183 / 0.95)),
    var(--green-deep);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  isolation: isolate;
}

.events-tonight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% -10%, oklch(0.75 0.13 78 / 0.28), transparent 50%),
    radial-gradient(circle at -10% 110%, oklch(0.40 0.12 183 / 0.35), transparent 50%);
  z-index: -1;
}

.tonight-stripe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: oklch(0.105 0.027 183 / 0.55);
  margin-bottom: 22px;
}

.tonight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.65 0.18 25);
  box-shadow: 0 0 12px oklch(0.65 0.18 25);
  animation: pulse 2s ease-in-out infinite;
}

.tonight-eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tonight-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-1);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.tonight-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 42ch;
  margin-bottom: 24px;
}

.tonight-meta {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  padding: 18px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tonight-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tonight-meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.tonight-meta-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.tonight-cta { align-self: flex-start; }

/* ---- Events grid ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: clamp(48px, 6vh, 72px);
  background: oklch(0.91 0.008 90 / 0.06);
  padding: 1px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  overflow: hidden;
}

.ev-card {
  position: relative;
  background: oklch(0.10 0.01 183 / 0.85);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: background 0.3s var(--ease-micro),
              transform 0.3s var(--ease-micro);
  min-height: 220px;
}

.ev-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.ev-card:hover {
  background: oklch(0.13 0.012 183 / 0.95);
}

.ev-card:hover::after {
  transform: scaleX(1);
}

.ev-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.ev-card-day {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.ev-card-time {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}

.ev-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-1);
  margin-top: 4px;
}

.ev-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: auto;
}

.ev-card-foot {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.ev-card--feature {
  background:
    linear-gradient(140deg, oklch(0.40 0.14 78 / 0.18), oklch(0.10 0.012 183 / 0.85));
}

.ev-card--feature .ev-card-day { color: var(--gold-bright); }
.ev-card--feature .ev-card-foot { color: var(--gold); }

.ev-card--fight {
  background:
    linear-gradient(160deg, oklch(0.20 0.06 30 / 0.55), oklch(0.10 0.012 183 / 0.92));
}

.ev-card--fight .ev-card-day { color: oklch(0.78 0.18 30); }
.ev-card--fight .ev-card-foot { color: oklch(0.78 0.18 30 / 0.85); }

.ev-card--fight::after { background: oklch(0.65 0.20 30); }

.ev-card--cta {
  background:
    linear-gradient(135deg, oklch(0.20 0.06 183 / 0.85), oklch(0.10 0.012 183 / 0.95));
}

.ev-card--cta .ev-card-day { color: var(--gold); }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

.events-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.events-cta-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  font-style: italic;
}


/* ================================================
   FAQ
   ================================================ */
.faq {
  background: var(--surface);
  padding: clamp(80px, 12vh, 160px) clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.faq-head { position: sticky; top: 96px; }
.faq-head .sec-title { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 16px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-1);
  transition: color 0.2s var(--ease-micro);
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary > span:first-child { flex: 1; min-width: 0; }

.faq-item p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 62ch;
  animation: menuOpen 0.32s var(--ease-out);
}

.faq-item p strong { color: var(--text-1); font-weight: 600; }

@media (max-width: 960px) {
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
}


/* ================================================
   REVIEWS
   ================================================ */
.reviews {
  background: var(--surface);
  padding: clamp(80px, 12vh, 160px) clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--border-gold);
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-head {
  margin-bottom: clamp(40px, 5vh, 64px);
}

.reviews-head .sec-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 20px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-source {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.review-card {
  background: var(--surface-up);
  padding: clamp(28px, 3vh, 44px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-1);
  font-style: italic;
  font-weight: 300;
}

.review-author {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}


/* ================================================
   FIND US
   ================================================ */
.find {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 50vh;
}

.find-info {
  background: var(--surface);
  padding: clamp(56px, 8vh, 100px) clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border-gold);
}

.find-info .sec-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 28px;
}

.find-info address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 16px;
}

.find-detail {
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.find-hours {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

.find-hours strong { color: var(--gold); }

.find-links { display: flex; flex-wrap: wrap; gap: 8px; }

.find-links a {
  padding: 9px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro),
              background 0.2s var(--ease-micro);
}

.find-links a:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: oklch(0.75 0.13 78 / 0.04);
}

.find-links a:active { transform: scale(0.97); }

.find-map { min-height: 380px; }
.find-map iframe { display: block; }


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--surface-down);
  padding: clamp(56px, 8vh, 96px) clamp(28px, 5vw, 80px) clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(40px, 5vh, 56px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}

.footer-col address,
.footer-col p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-2);
}

.footer-col strong {
  color: var(--text-1);
  font-weight: 600;
}

.footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social a {
  font-size: 0.86rem;
  color: var(--text-2);
  transition: color 0.2s var(--ease-micro);
  position: relative;
  padding-left: 14px;
}

.footer-social a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold-dim);
  transition: width 0.25s var(--ease-micro), background 0.2s var(--ease-micro);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social a:hover::before {
  width: 10px;
  background: var(--gold);
}

.footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }

.footer-nav a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.2s var(--ease-micro);
}

.footer-nav a:hover { color: var(--gold); }

/* Legal links row in footer */
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-legal a {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.2s var(--ease-micro);
}

.footer-legal a:hover { color: var(--gold-dim); }


/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  max-width: 720px;
  margin: 0 auto;
  background:
    linear-gradient(160deg, oklch(0.13 0.012 183 / 0.98), oklch(0.10 0.012 183 / 0.98));
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  box-shadow: 0 20px 60px oklch(0.04 0.004 183 / 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: cookie-in 0.35s var(--ease-out);
}

.cookie-banner[hidden] { display: none; }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
}

.cookie-banner-text { min-width: 0; }

.cookie-banner-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 6px;
}

.cookie-banner-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-2);
}

.cookie-banner-desc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: background 0.2s var(--ease-micro),
              color 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro);
}

.cookie-btn:active { transform: scale(0.97); }

.cookie-btn-reject {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-strong);
}

.cookie-btn-reject:hover {
  color: var(--text-1);
  border-color: var(--text-2);
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--surface-down);
}

.cookie-btn-accept:hover {
  background: var(--gold-bright);
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 20px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn { flex: 1; }
}


/* ================================================
   BOOKING DIALOG
   ================================================ */
.booking {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 32px);
  overflow: visible;
  color: var(--text-1);
}

.booking::backdrop {
  background: oklch(0.105 0.027 183 / 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking[open] {
  animation: book-in 0.32s var(--ease-out);
}

.booking[open]::backdrop {
  animation: backdrop-in 0.32s ease-out;
}

@keyframes book-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.booking-card {
  position: relative;
  background:
    linear-gradient(160deg, oklch(0.13 0.012 183 / 0.98), oklch(0.10 0.012 183 / 0.98));
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 80px oklch(0.04 0.004 183 / 0.6);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  cursor: pointer;
  transition: color 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro),
              background 0.2s var(--ease-micro);
}

.booking-close:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: oklch(0.75 0.13 78 / 0.08);
}

.booking-head {
  margin-bottom: 22px;
  max-width: 90%;
}

.booking-head .kicker { margin-bottom: 10px; }

.booking-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.05;
}

.booking-sub {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.5;
}

.booking-tabs {
  display: flex;
  gap: 4px;
  background: oklch(0.105 0.027 183 / 0.6);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4px;
  margin-bottom: 22px;
}

.booking-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-3);
  padding: 10px 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s var(--ease-micro),
              color 0.2s var(--ease-micro);
}

.booking-tab:hover { color: var(--text-1); }

.booking-tab.is-active {
  background: var(--gold);
  color: var(--surface-down);
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.bf { display: flex; flex-direction: column; gap: 6px; }
.bf-full { grid-column: 1 / -1; }

.bf-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bf-label em {
  color: var(--gold);
  font-style: normal;
}

.bf-opt {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-3);
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: none;
}

.bf input,
.bf select,
.bf textarea {
  width: 100%;
  background: oklch(0.105 0.027 183 / 0.5);
  border: 1px solid var(--border-strong);
  color: var(--text-1);
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s var(--ease-micro),
              background 0.2s var(--ease-micro);
}

.bf input::placeholder,
.bf textarea::placeholder { color: var(--text-3); opacity: 0.7; }

.bf input:focus,
.bf select:focus,
.bf textarea:focus {
  border-color: var(--gold);
  background: oklch(0.105 0.027 183 / 0.8);
}

.bf select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a89c75' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.bf textarea {
  resize: vertical;
  min-height: 56px;
  font-family: inherit;
}

.bf input:invalid:not(:placeholder-shown) {
  border-color: oklch(0.65 0.18 25);
}

/* Hide fields not relevant to current tab */
.bf[hidden] { display: none; }

.booking-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  background: #25d366;
  color: #06231b;
  font-size: 0.86rem;
  padding: 16px 24px;
}

.booking-submit:hover {
  background: #1fb755;
  box-shadow: 0 4px 24px oklch(0.55 0.18 155 / 0.4);
}

.booking-submit svg { fill: #06231b; }

.booking-trust {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .booking-fields { grid-template-columns: 1fr; }
  .booking-card { padding: 24px 20px; }
  .booking-head h2 { font-size: 1.4rem; }
  .booking-tab { font-size: 0.62rem; padding: 9px 6px; letter-spacing: 0.05em; }
}


/* ================================================
   MENU ALLERGENS NOTE
   ================================================ */
.menu-allergens {
  max-width: 1200px;
  margin: clamp(40px, 6vh, 56px) auto 0;
  padding: 22px clamp(20px, 3vw, 32px);
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--text-1);
  border-top: 1px solid var(--border-gold);
  font-style: italic;
}

.menu-allergens strong {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ================================================
   REVIEWS — clickable source links + leave review CTA
   ================================================ */
.reviews-source a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-decoration-color: oklch(0.50 0.09 92 / 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-micro), text-decoration-color 0.2s var(--ease-micro);
}

.reviews-source a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.reviews-cta {
  margin-top: clamp(40px, 6vh, 56px);
  padding-top: clamp(32px, 4vh, 44px);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.reviews-cta-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: oklch(0.10 0.005 183 / 0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
  transition: border-color 0.2s var(--ease-micro),
              background 0.2s var(--ease-micro),
              transform 0.2s var(--ease-micro);
}

.reviews-cta-btn:hover {
  border-color: var(--gold-dim);
  background: oklch(0.13 0.012 183 / 0.85);
  transform: translateY(-1px);
}

.reviews-cta-btn:active { transform: scale(0.97); }

.reviews-cta-btn svg {
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .reviews-cta-buttons { flex-direction: column; width: 100%; }
  .reviews-cta-btn { justify-content: center; width: 100%; }
}


/* ================================================
   FIND US — Open in Maps CTA
   ================================================ */
.find-maps-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 22px;
  background: oklch(0.105 0.027 183 / 0.5);
  border: 1px solid var(--border-strong);
  border-radius: var(--r);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
  transition: border-color 0.2s var(--ease-micro), background 0.2s var(--ease-micro);
}

.find-maps-cta:hover {
  border-color: var(--gold-dim);
  background: oklch(0.10 0.005 183 / 0.7);
}

.find-maps-cta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}


/* ================================================
   LIGHTBOX (gallery image viewer)
   ================================================ */
.lightbox {
  border: none;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: transparent;
  color: var(--text-1);
  overflow: hidden;
}

.lightbox::backdrop {
  background: oklch(0.04 0.003 183 / 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox[open] { animation: lb-in 0.25s var(--ease-out); }
.lightbox[open]::backdrop { animation: lb-bg-in 0.25s ease-out; }

@keyframes lb-in {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes lb-bg-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px oklch(0.02 0 0 / 0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: oklch(0.105 0.027 183 / 0.75);
  border: 1px solid var(--border-strong);
  color: var(--text-1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro),
              transform 0.2s var(--ease-micro);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: oklch(0.13 0.012 183 / 0.9);
  border-color: var(--gold-dim);
  color: var(--gold);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active { transform: translateY(-50%) scale(0.95); }
.lightbox-close:active { transform: scale(0.92); }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-1);
  background: oklch(0.105 0.027 183 / 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Cursor hint on gallery items */
.g-item {
  cursor: zoom-in;
}

@media (max-width: 560px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .lightbox-img { max-height: 80vh; }
  .lightbox-counter { font-size: 0.66rem; padding: 6px 12px; bottom: 14px; }
}


/* ================================================
   CHATBOT — Floating button + dialog
   ================================================ */
.chat-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--surface-down);
  border: none;
  border-radius: 999px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 6px 24px oklch(0.50 0.14 78 / 0.4),
    0 1px 4px oklch(0.04 0 0 / 0.5);
  transition: transform 0.25s var(--ease-micro),
              box-shadow 0.25s var(--ease-micro),
              padding 0.25s var(--ease-micro);
  -webkit-tap-highlight-color: transparent;
}

.chat-fab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px oklch(0.50 0.14 78 / 0.5),
    0 2px 6px oklch(0.04 0 0 / 0.5);
}

.chat-fab:active { transform: scale(0.97); }

.chat-fab .chat-fab-icon-open { display: none; }
.chat-fab.is-open .chat-fab-icon-closed { display: none; }
.chat-fab.is-open .chat-fab-icon-open { display: block; }
.chat-fab.is-open .chat-fab-label { display: none; }
.chat-fab.is-open { padding: 14px; }

@media (max-width: 560px) {
  .chat-fab { bottom: 88px; left: 16px; padding: 12px 16px 12px 14px; font-size: 0.7rem; }
  .chat-fab-label { display: none; }
  .chat-fab { padding: 14px; }
}

/* Dialog */
.chat-dialog {
  position: fixed;
  inset: auto auto 16px 16px;
  width: min(400px, calc(100vw - 32px));
  height: min(640px, calc(100vh - 32px));
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  background:
    linear-gradient(180deg, oklch(0.13 0.012 183 / 0.98), oklch(0.10 0.012 183 / 0.98));
  color: var(--text-1);
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow:
    0 30px 80px oklch(0.04 0 0 / 0.6),
    0 4px 16px oklch(0.04 0 0 / 0.4);
}

.chat-dialog[open] { display: flex; }

.chat-dialog::backdrop { background: transparent; }

.chat-dialog[open] { animation: chat-in 0.3s var(--ease-out); }

@keyframes chat-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .chat-dialog {
    inset: 8px 8px 8px 8px;
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    border-radius: 10px;
  }
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, oklch(0.50 0.14 78 / 0.10), transparent 60%),
    oklch(0.10 0.012 183 / 0.85);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--surface-down);
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}

.chat-header-text { flex: 1; min-width: 0; }

.chat-header-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-1);
  margin: 0;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin: 2px 0 0;
}

.chat-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(0.68 0.15 150);
  box-shadow: 0 0 6px oklch(0.68 0.15 150);
  animation: pulse 2.4s ease-in-out infinite;
}

.chat-clear,
.chat-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro),
              background 0.2s var(--ease-micro);
  flex-shrink: 0;
}

.chat-clear:hover,
.chat-close:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: oklch(0.75 0.13 78 / 0.06);
}

/* Messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}

.chat-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-wrap: break-word;
  animation: msg-in 0.25s var(--ease-out);
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-msg-bot {
  align-self: flex-start;
  background: oklch(0.16 0.014 183 / 0.85);
  border: 1px solid var(--border);
  color: var(--text-1);
  border-bottom-left-radius: 4px;
}

.chat-msg-user {
  align-self: flex-end;
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--surface-down);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-msg-bot strong { color: var(--gold); font-weight: 600; }

.chat-msg-bot a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Typing indicator */
.chat-typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px;
  align-self: flex-start;
  background: oklch(0.16 0.014 183 / 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typing 1.4s infinite ease-in-out;
}

.chat-typing span:nth-child(1) { animation-delay: 0s; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* Suggestions */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}

.chat-suggestion {
  background: oklch(0.105 0.027 183 / 0.55);
  border: 1px solid var(--border-strong);
  color: var(--text-2);
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s var(--ease-micro),
              border-color 0.2s var(--ease-micro),
              background 0.2s var(--ease-micro);
}

.chat-suggestion:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: oklch(0.10 0.005 183 / 0.7);
}

/* Form */
.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 8px;
  border-top: 1px solid var(--border);
  background: oklch(0.105 0.027 183 / 0.55);
}

.chat-input {
  flex: 1;
  background: oklch(0.10 0.005 183 / 0.8);
  border: 1px solid var(--border-strong);
  color: var(--text-1);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s var(--ease-micro);
}

.chat-input::placeholder { color: var(--text-3); }

.chat-input:focus {
  border-color: var(--gold-dim);
}

.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--surface-down);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-micro),
              box-shadow 0.2s var(--ease-micro);
}

.chat-send:hover {
  box-shadow: 0 4px 16px oklch(0.50 0.14 78 / 0.35);
}

.chat-send:active { transform: scale(0.95); }

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-footer-note {
  text-align: center;
  font-size: 0.66rem;
  color: var(--text-3);
  padding: 0 16px 10px;
  letter-spacing: 0.02em;
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px oklch(0.5 0.15 155 / 0.35);
  transition: transform 0.2s var(--ease-micro),
              box-shadow 0.2s var(--ease-micro);
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px oklch(0.5 0.15 155 / 0.45);
}

.wa-float:active { transform: scale(0.97); }


/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out),
              filter 0.75s var(--ease-out);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ---- Image wipe reveal (vertical, bottom → top) ---- */
.reveal-img {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease-out);
  will-change: clip-path;
}
.reveal-img.visible {
  clip-path: inset(0 0 0 0);
}

/* ---- Gold rule draw-in (animated horizontal divider) ---- */
.reveal-rule {
  position: relative;
  display: block;
  height: 1px;
  background: transparent;
  overflow: hidden;
}
.reveal-rule::after {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  transition: inset 1.4s var(--ease-out);
}
.reveal-rule.visible::after { inset: 0 0 0 0; }

/* ---- Stat counter, mono-numerals during animation to avoid layout shift ---- */
.sport-stat-num,
.about-stat-num {
  font-variant-numeric: tabular-nums;
}

/* ---- Ken-burns: subtle infinite scale for hero images ---- */
@keyframes kenburns-soft {
  0%   { transform: scale(1.0) translateZ(0); }
  50%  { transform: scale(1.045) translateZ(0); }
  100% { transform: scale(1.0) translateZ(0); }
}

.kenburns,
.about-hero-media img,
.hero-media img,
.menu-hero-img img {
  animation: kenburns-soft 18s ease-in-out infinite;
}


/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .anim-up { opacity: 1; transform: none; filter: none; }
  .reveal-img { clip-path: inset(0 0 0 0); }
  .reveal-rule::after { inset: 0 0 0 0; }
  .kenburns,
  .about-hero-media img,
  .hero-media img,
  .menu-hero-img img { animation: none; }
  #noise { display: none; }
}


/* ================================================
   RESPONSIVE — 960px
   ================================================ */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--surface-down);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 100;
  }

  .nav-links.open { opacity: 1; pointer-events: auto; }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-1);
  }

  .nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(4px, 3px);
  }
  .nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(4px, -3px);
  }

  .marquee { --marquee-duration: 30s; }
  .marquee-group { gap: 20px; padding-right: 20px; }
  .marquee-group span { font-size: 0.68rem; letter-spacing: 0.14em; }

  .sports { grid-template-columns: 1fr; }
  .sports-img { aspect-ratio: 1 / 1; min-height: auto; max-height: 70vh; }

  .sports-stats { flex-wrap: wrap; gap: 20px; }

  .menu-grid { flex-direction: column; }
  .menu-divider { width: 100%; height: 1px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .g-wide { grid-column: span 2; }

  .snooker-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .snooker-text { max-width: 540px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .events-head-row {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  .events-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .find { grid-template-columns: 1fr; }
  .find-info { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .find-map { min-height: 280px; }
}


/* ================================================
   RESPONSIVE — 560px
   ================================================ */
@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.5rem); }

  .hero-actions { flex-direction: column; }
  .btn-solid, .btn-ghost { width: 100%; justify-content: center; }

  .sec-title { font-size: clamp(2.4rem, 10vw, 4rem); }

  .sports-body .sec-title { font-size: clamp(2rem, 9vw, 3.2rem); }

  .nav-logo-name { display: none; }

  .marquee { padding: 12px 0; --marquee-duration: 24s; }
  .marquee-group { gap: 16px; padding-right: 16px; }
  .marquee-group span { font-size: 0.62rem; letter-spacing: 0.12em; }

  .gallery { padding-inline: 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 3px;
  }
  .g-wide { grid-column: span 1; }

  .events-grid { grid-template-columns: 1fr; }
  .ev-card { min-height: 180px; }
  .tonight-meta { flex-wrap: wrap; gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
}

/* ============================================================
   HERO SOUND-ON SPLASH
   Injected on load (once per session) so the very first tap can
   carry the trusted user gesture that unmutes the hero video.
   ============================================================ */

html.splash-on,
html.splash-on body { overflow: hidden; }

.hero-splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: radial-gradient(120% 100% at 50% 60%, rgba(8, 18, 14, 0.55) 0%, rgba(0, 0, 0, 0.86) 65%, #000 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: heroSplashIn 480ms cubic-bezier(.22,.61,.36,1) both;
}

.hero-splash.is-leaving {
  animation: heroSplashOut 520ms cubic-bezier(.4,.0,.2,1) forwards;
  pointer-events: none;
}

.hero-splash-vignette {
  position: absolute;
  inset: -10%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(200, 162, 84, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-splash-inner {
  position: relative;
  text-align: center;
  padding: 32px 28px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-splash-kicker {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #c8a254);
  opacity: 0.92;
  animation: heroSplashRise 700ms 80ms cubic-bezier(.22,.61,.36,1) both;
}

.hero-splash-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
  animation: heroSplashRise 760ms 160ms cubic-bezier(.22,.61,.36,1) both;
}

.hero-splash-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--gold, #c8a254);
  margin: 4px 0 8px;
  animation: heroSplashRise 800ms 240ms cubic-bezier(.22,.61,.36,1) both;
}

.hero-splash-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  margin-top: 16px;
  border: 1.5px solid var(--gold, #c8a254);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200, 162, 84, 0.18), rgba(200, 162, 84, 0.06));
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 12px 38px -8px rgba(200, 162, 84, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: heroSplashRise 800ms 340ms cubic-bezier(.22,.61,.36,1) both, heroSplashPulse 2.4s 1.2s ease-in-out infinite;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero-splash:hover .hero-splash-cta {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(200, 162, 84, 0.30), rgba(200, 162, 84, 0.10));
  box-shadow: 0 18px 46px -8px rgba(200, 162, 84, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-splash-cta-icon {
  width: 18px;
  height: 18px;
  color: var(--gold, #c8a254);
  flex-shrink: 0;
}

.hero-splash-sound {
  font-family: 'Barlow', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  animation: heroSplashRise 800ms 460ms cubic-bezier(.22,.61,.36,1) both;
}

@keyframes heroSplashIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroSplashOut {
  to {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(8px);
  }
}
@keyframes heroSplashRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSplashPulse {
  0%, 100% { box-shadow: 0 12px 38px -8px rgba(200, 162, 84, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04); }
  50%      { box-shadow: 0 18px 50px -6px rgba(200, 162, 84, 0.78), inset 0 0 0 1px rgba(255, 255, 255, 0.10); }
}

@media (max-width: 600px) {
  .hero-splash-cta {
    padding: 13px 22px;
    font-size: 0.84rem;
    letter-spacing: 0.15em;
  }
  .hero-splash-inner { gap: 10px; padding: 24px 18px; }
}

/* ============================================================
   GAMES / WHAT YOU'LL FIND INSIDE
   6 walk-in equipment cards, gold counts + bold labels.
   ============================================================ */

.games {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--surface-1, #0a1812) 0%, var(--surface-2, #050d09) 100%);
  border-top: 1px solid rgba(200, 162, 84, 0.10);
  border-bottom: 1px solid rgba(200, 162, 84, 0.10);
  overflow: hidden;
}

.games::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(200, 162, 84, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.games-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.games-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.games-lead {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  margin: 22px auto 0;
  max-width: 600px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 162, 84, 0.18);
  border: 1px solid rgba(200, 162, 84, 0.20);
}

.game-card {
  position: relative;
  padding: 44px 32px 36px;
  background: var(--surface-1, #0a1812);
  text-align: left;
  transition: background 320ms ease, transform 320ms ease;
}

.game-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold, #c8a254);
  transition: width 360ms cubic-bezier(.22,.61,.36,1);
}

.game-card:hover {
  background: rgba(200, 162, 84, 0.06);
}

.game-card:hover::after {
  width: 100%;
}

.game-card-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--gold, #c8a254);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.game-card-label {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}

.game-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
}

.games-foot {
  text-align: center;
  margin-top: 44px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #c8a254);
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .games { padding: 64px 16px; }
  .games-head { margin-bottom: 40px; }
  .games-lead { font-size: 0.98rem; margin-top: 16px; }
  .games-grid { grid-template-columns: 1fr; }
  .game-card { padding: 32px 22px 28px; }
  .game-card-num { font-size: 2.8rem; margin-bottom: 12px; }
  .game-card-label { font-size: 1.05rem; }
  .games-foot { margin-top: 32px; letter-spacing: 0.16em; font-size: 0.7rem; }
}

/* ================================================
   HERO REDESIGN — emblem-led heritage crest
   (distinct from the original bottom-left video hero)
   ================================================ */
.hero { align-items: center; justify-content: center; text-align: center; }

/* Dim + emerald-grade the background video so the emblem reads */
.hero-media video,
.hero-media img {
  filter: brightness(0.42) saturate(1.15) contrast(1.02);
  object-position: center 40%;
}

/* Emerald vignette instead of the old flat bottom fade */
.hero-fade {
  background:
    radial-gradient(120% 90% at 50% 38%, transparent 0%, oklch(0.105 0.027 183 / 0.55) 58%, var(--surface-down) 100%),
    linear-gradient(to bottom, oklch(0.105 0.027 183 / 0.55) 0%, oklch(0.105 0.027 183 / 0.25) 40%, oklch(0.105 0.027 183 / 0.85) 100%);
}

/* Warm gold glow blooming behind the emblem */
.hero-glow {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 46%;
  width: min(82vw, 680px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, oklch(0.75 0.13 78 / 0.20) 0%, oklch(0.75 0.13 78 / 0.07) 38%, transparent 66%);
  pointer-events: none;
  filter: blur(6px);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(96px, 14vh, 150px) clamp(22px, 6vw, 56px) clamp(40px, 7vh, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-loc {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Emblem centerpiece */
.hero-title { margin: 0; line-height: 0; width: 100%; display: flex; justify-content: center; }
.hero-emblem {
  width: min(74vw, 360px);
  max-width: 360px;
  height: auto;
  margin: 4px auto 10px;
  filter: drop-shadow(0 10px 34px oklch(0.04 0.02 183 / 0.75))
          drop-shadow(0 0 26px oklch(0.75 0.13 78 / 0.22));
  animation: hero-emblem-float 7s ease-in-out infinite;
}
@keyframes hero-emblem-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Deco rule with centered diamond */
.hero-rule {
  width: min(340px, 70%);
  height: auto;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px auto 18px;
}
.hero-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, var(--gold-dim));
}
.hero-rule span:last-child { --dir: left; }
.hero-rule i {
  color: var(--gold);
  font-size: 0.6rem;
  font-style: normal;
  line-height: 1;
}

.hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(1.5rem, 4.4vw, 2.9rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-hours {
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  color: var(--text-2);
  margin-bottom: 30px;
}
.hero-hours strong { color: var(--text-1); font-weight: 600; }

.hero-actions { justify-content: center; }

/* Optional standing-mascot character (drop a transparent PNG at img/mascot.png).
   Auto-removed via onerror if the file isn't present. */
.hero-mascot {
  position: absolute;
  z-index: 1;
  right: clamp(-40px, 1vw, 40px);
  bottom: 0;
  height: min(78vh, 620px);
  width: auto;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 12px 40px oklch(0.04 0.02 183 / 0.6));
}
@media (max-width: 980px) { .hero-mascot { display: none; } }

@media (max-width: 600px) {
  .hero-emblem { width: min(78vw, 300px); }
  .hero-inner { padding-top: 104px; }
}

/* =====================================================
   REDESIGN LAYER — MT Pockets own identity
   (diverges from the inherited template: editorial indexed
    headings, expo clip-reveal motion, sweep-fill buttons)
   ===================================================== */
:root {
  --ease-expo: cubic-bezier(0.16, 1, 0.30, 1);
  --ease-power: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Editorial section headings ---------- */
.sec-title {
  text-transform: none;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-wrap: balance;
}
.sec-title em,
.sec-title .text-gold {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  width: clamp(20px, 5vw, 40px);
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.65;
}
.sec-eyebrow b {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold-dim);
}

/* ---------- New reveal: expo rise + curtain clip, no blur ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(0 0 8% 0);
  filter: none;
  transition: opacity 0.85s var(--ease-expo),
              transform 0.95s var(--ease-expo),
              clip-path 0.95s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}
.stagger > .reveal:nth-child(n) { transition-delay: calc((var(--si, 0)) * 1ms); }

/* ---------- Buttons: squared, condensed, gold sweep-fill ---------- */
.btn-solid,
.btn-ghost {
  border-radius: 1px;
  padding: 16px 38px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.16em;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--ease-expo),
              color 0.4s var(--ease-expo),
              border-color 0.4s var(--ease-expo),
              box-shadow 0.4s var(--ease-expo),
              transform 0.2s var(--ease-micro);
}
.btn-ghost {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 0%;
  background-position: 50% 100%;
}
.btn-ghost:hover {
  color: var(--surface-down);
  border-color: var(--gold);
  background-color: transparent;
  background-size: 100% 100%;
}
.btn-solid {
  box-shadow: inset 0 0 0 1px oklch(0.30 0.05 78 / 0.5);
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px oklch(0.75 0.13 78 / 0.30), inset 0 0 0 1px oklch(1 0 0 / 0.25);
}

/* ---------- Marquee: heritage ticker, pause on hover ---------- */
.marquee { border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.marquee-track:hover { animation-play-state: paused; }
.marquee-group span { font-family: 'Barlow Condensed', 'Barlow', sans-serif; letter-spacing: 0.18em; }
.marquee-dot { color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}


/* ===== Real Google review cards (overrides + additions) ===== */
.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 18px;
  margin: 44px auto 8px;
  max-width: 1100px;
}
.review-card {
  position: relative;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  gap: 14px;
  text-align: left;
  padding: 28px 24px 22px;
  justify-content: flex-start;
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; line-height: 1; }
.review-text { flex: 1; text-wrap: pretty; }
.review-foot {
  border-top: 1px solid var(--border);
  padding-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-author { font-size: 1.02rem; letter-spacing: 0; text-transform: none; color: var(--text-1); }
.review-meta { font-size: 0.78rem; color: var(--text-3); letter-spacing: 0.02em; }
.review-src {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }


/* =====================================================
   OVERDRIVE LAYER — premium motion & flow
   Compositor-only (transform/opacity/clip-path).
   Scroll-driven where supported, IO fallback everywhere.
   ===================================================== */

/* ---------- Scroll progress hairline ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 1200;
  background: linear-gradient(to right, var(--gold-dim), var(--gold) 60%, var(--gold-bright));
  transform: scaleX(var(--scroll-p, 0));
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ---------- Nav: elevated states ---------- */
.nav {
  transition: transform 0.5s var(--ease-expo), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: oklch(0.105 0.027 183 / 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 oklch(0.75 0.13 78 / 0.14), 0 12px 40px oklch(0.04 0.02 183 / 0.45);
}
.nav.is-hidden { transform: translateY(-100%); }

/* ---------- Ghosted section numerals ---------- */
section[data-num] { position: relative; }
section[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: clamp(8px, 4vw, 40px);
  right: clamp(-10px, 1vw, 40px);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(7rem, 22vw, 19rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.75 0.13 78 / 0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
section[data-num] > * { position: relative; z-index: 1; }

/* ---------- Hero: scroll choreography + shine ---------- */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3vh, 28px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.cue-label {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  overflow: hidden;
  position: relative;
}
.cue-line::after {
  content: "";
  position: absolute;
  inset: -34px 0 auto 0;
  height: 34px;
  background: linear-gradient(to bottom, transparent, var(--gold-bright));
  animation: cue-drop 2.2s var(--ease-expo) infinite;
}
@keyframes cue-drop { to { transform: translateY(68px); } }

/* Brass shine sweep across the emblem, once on load, again on hover */
.hero-title { perspective: 900px; }
.hero-emblem { position: relative; }
@keyframes emblem-arrive {
  from { opacity: 0; transform: translateY(26px) scale(0.94); filter: brightness(0.7); }
  60%  { filter: brightness(1.18); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: brightness(1); }
}
.loaded .hero-emblem { animation: emblem-arrive 1.4s var(--ease-expo) 0.15s backwards, hero-emblem-float 7s ease-in-out 1.8s infinite; }

/* Scroll-driven: hero content recedes as you leave, emblem drifts up slower (depth) */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-inner {
      animation: hero-recede linear both;
      animation-timeline: scroll(root);
      animation-range: 0 90vh;
    }
    @keyframes hero-recede {
      to { transform: translateY(-9vh) scale(0.96); opacity: 0.15; }
    }
    .hero-media {
      animation: hero-bg-sink linear both;
      animation-timeline: scroll(root);
      animation-range: 0 100vh;
    }
    @keyframes hero-bg-sink {
      to { transform: translateY(7vh) scale(1.06); }
    }
    .hero-scroll-cue {
      animation: cue-fade linear both;
      animation-timeline: scroll(root);
      animation-range: 0 22vh;
    }
    @keyframes cue-fade { to { opacity: 0; } }
  }
}

/* ---------- Title line-mask reveals ---------- */
.sec-title .tl {
  display: block;
  overflow: clip;
  /* room for descenders/ascenders inside the clip, cancelled out of layout */
  padding-block: 0.08em 0.18em;
  margin-block: -0.08em -0.18em;
}
.sec-title .tl > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--ease-expo);
}
.sec-title.visible .tl > span,
.reveal.visible .sec-title .tl > span { transform: translateY(0); }
.sec-title .tl:nth-child(2) > span { transition-delay: 0.09s; }
.sec-title .tl:nth-child(3) > span { transition-delay: 0.18s; }
/* titles handled by line-mask skip the generic clip reveal */
.sec-title.tl-ready { opacity: 1 !important; transform: none !important; clip-path: none !important; }

/* ---------- Interlude: full-bleed quote breather ---------- */
.interlude {
  position: relative;
  min-height: 72svh;
  display: grid;
  place-items: center;
  overflow: clip;
  isolation: isolate;
}
.interlude-media { position: absolute; inset: -12% 0; z-index: 0; }
.interlude-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.38) saturate(1.1);
}
.interlude::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(90% 70% at 50% 50%, transparent 0%, oklch(0.105 0.027 183 / 0.65) 90%),
    linear-gradient(to bottom, var(--surface-down), transparent 18% 82%, var(--surface-down));
}
.interlude-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: clamp(90px, 16vh, 150px) clamp(24px, 6vw, 60px);
  text-align: center;
  margin: 0;
}
.interlude-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 5.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-1);
  text-wrap: balance;
}
.interlude-quote em { font-style: italic; color: var(--gold); }
.interlude-cite {
  margin-top: 26px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .interlude-media img {
      animation: interlude-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes interlude-drift {
      from { transform: translateY(-6%); }
      to   { transform: translateY(6%); }
    }
  }
}

/* ---------- Gallery: mosaic + hover life ---------- */
.g-item { overflow: clip; }
.g-item img {
  transition: transform 0.9s var(--ease-expo), filter 0.9s var(--ease-expo);
  will-change: transform;
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.09 0.025 183 / 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.g-item { position: relative; }
.g-item:hover img { transform: scale(1.055); filter: saturate(1.12) brightness(1.05); }
.g-item:hover::after { opacity: 1; }
@media (min-width: 700px) {
  .g-big { grid-column: span 2; grid-row: span 2; }
}

/* ---------- Cards: layered lift ---------- */
.game-card, .ev-card, .review-card {
  transition: transform 0.55s var(--ease-expo), border-color 0.55s var(--ease-expo), box-shadow 0.55s var(--ease-expo), background 0.55s var(--ease-expo);
}
.game-card:hover, .ev-card:hover, .review-card:hover {
  transform: translateY(-6px);
  border-color: oklch(0.75 0.13 78 / 0.45);
  background: oklch(0.215 0.042 183);
  box-shadow:
    0 2px 6px oklch(0.04 0.02 183 / 0.35),
    0 14px 34px oklch(0.04 0.02 183 / 0.45),
    0 0 0 1px oklch(0.75 0.13 78 / 0.10);
}

/* ---------- Menu groups: smooth open + row hover ---------- */
@supports (interpolate-size: allow-keywords) {
  .menu-group { interpolate-size: allow-keywords; }
  .menu-group::details-content {
    opacity: 0;
    block-size: 0;
    overflow-y: clip;
    transition: content-visibility 0.55s allow-discrete, opacity 0.55s var(--ease-expo), block-size 0.55s var(--ease-expo);
  }
  .menu-group[open]::details-content { opacity: 1; block-size: auto; }
}
.menu-item { transition: background 0.3s var(--ease-micro), padding-left 0.35s var(--ease-expo); }
.menu-item:hover { background: oklch(0.75 0.13 78 / 0.045); }

/* ---------- Buttons: magnetic base (JS sets --mx/--my) ---------- */
@media (pointer: fine) {
  .btn-solid, .btn-ghost, .nav-book {
    transform: translate(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px));
    transition: transform 0.35s var(--ease-expo), background-size 0.5s var(--ease-expo),
                color 0.4s var(--ease-expo), border-color 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
  }
}

/* ---------- Ambient drift behind sections ---------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    body::before {
      content: "";
      position: fixed;
      inset: -20%;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(42% 34% at 18% 22%, oklch(0.34 0.078 183 / 0.35), transparent 70%),
        radial-gradient(36% 30% at 84% 74%, oklch(0.45 0.09 78 / 0.10), transparent 70%);
      animation: ambient-drift linear both;
      animation-timeline: scroll(root);
    }
    @keyframes ambient-drift {
      from { transform: translateY(4%) rotate(0.001deg); }
      to   { transform: translateY(-7%) rotate(0.001deg); }
    }
  }
}

/* ---------- Reduced motion: calm everything ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .cue-line::after { animation: none; }
  .loaded .hero-emblem { animation: none; }
  .sec-title .tl > span { transform: none; transition: none; }
  .g-item img, .game-card, .ev-card, .review-card { transition: none; }
}


/* Overdrive mobile fit: cue only where there's room; loc clears the sound toggle */
@media (max-width: 740px) {
  .hero-scroll-cue { display: none; }
}
@media (max-width: 600px) {
  .hero-loc { font-size: 0.7rem; letter-spacing: 0.24em; text-indent: 0.24em; padding-inline: 52px; }
}




/* =====================================================
   MENU CARD — engraved dark card, like the physical menu
   (deep green, double gold frame, gold detailing)
   ===================================================== */
.menu-content {
  background:
    radial-gradient(140% 80% at 50% 0%, oklch(0.14 0.035 183), transparent 60%),
    oklch(0.085 0.024 183);
  position: relative;
}
.menu-content::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.8vw, 24px);
  border: 1px solid oklch(0.75 0.13 78 / 0.34);
  pointer-events: none;
}
.menu-content::after {
  content: "";
  position: absolute;
  inset: calc(clamp(10px, 1.8vw, 24px) + 5px);
  border: 1px solid oklch(0.75 0.13 78 / 0.12);
  pointer-events: none;
}
.menu-content .menu-side-title {
  color: var(--gold);
  text-shadow: 0 0 22px oklch(0.75 0.13 78 / 0.35);
}
.menu-content .menu-group summary:hover .menu-summary-text { color: var(--gold-bright); }
.menu-content .menu-price { font-weight: 700; }
.menu-content .menu-item:hover { background: oklch(0.75 0.13 78 / 0.05); }


/* =====================================================
   STRUCTURE DIVERGENCE — fact rail, line-up, story intro
   ===================================================== */

/* ---- Static fact rail (replaces scrolling ticker) ---- */
.fact-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 18px clamp(16px, 4vw, 40px);
  background: var(--green-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.fact-rail span {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(0.72rem, 1.4vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
.fact-rail i { color: var(--gold); font-style: normal; font-size: 0.55rem; }
@media (max-width: 640px) {
  .fact-rail span:nth-child(n+7) { display: none; }  /* keep it one tidy line on phones */
  .fact-rail i:nth-of-type(n+3) { display: none; }
}

/* ---- Editorial line-up (replaces events card grid) ---- */
.lineup {
  max-width: 980px;
  margin: 48px auto 8px;
  border-top: 1px solid var(--border-strong);
}
.lineup-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(14px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(20px, 3vh, 30px) 6px;
  border-bottom: 1px solid var(--border-strong);
  transition: background 0.4s var(--ease-expo), padding-left 0.4s var(--ease-expo);
}
.lineup-row:hover { background: oklch(0.75 0.13 78 / 0.045); padding-left: 14px; }
.lu-tag {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lu-main h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-bottom: 4px;
}
.lineup-row--feature .lu-main h3 { font-style: italic; color: var(--gold); }
.lu-main p { font-size: 0.92rem; color: var(--text-2); max-width: 56ch; }
.lu-meta {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .lineup-row { grid-template-columns: 1fr auto; }
  .lu-tag { grid-column: 1 / -1; }
}

/* ---- Story intro (replaces the giant-year statement) ---- */
.story-intro {
  padding: clamp(84px, 12vh, 150px) clamp(24px, 6vw, 80px);
  background: var(--surface);
}
.story-intro-inner { max-width: 1100px; margin: 0 auto; }
.story-lead .sec-eyebrow { justify-content: flex-start; }
.story-lead .sec-eyebrow::before { display: none; }
.story-lead .about-h2 { margin-bottom: clamp(34px, 5vh, 56px); }
.story-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.story-body { font-size: clamp(1rem, 1.6vw, 1.14rem); line-height: 1.75; color: var(--text-2); max-width: 62ch; }
.story-facts { border-top: 1px solid var(--border-gold); }
.story-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--border);
}
.story-facts dt {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-facts dd { font-size: 0.9rem; color: var(--text-1); text-align: right; }
@media (max-width: 760px) { .story-cols { grid-template-columns: 1fr; } }

/* ---- Numbered offer rows (replace icon-card grid) ---- */
.offer-list { margin-top: clamp(36px, 6vh, 60px); border-top: 1px solid var(--border-strong); }
.offer-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(16px, 4vw, 48px);
  padding: clamp(24px, 4vh, 40px) 4px;
  border-bottom: 1px solid var(--border-strong);
}
.offer-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--gold-dim);
  line-height: 1;
}
.offer-row h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}
.offer-row p { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; max-width: 62ch; }
@media (max-width: 560px) { .offer-row { grid-template-columns: 54px 1fr; } }


/* =====================================================
   MOTION AMPLIFICATION — visible choreography, all browsers
   ===================================================== */

/* Reveals: bigger travel + expo ease (was subtle) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(46px);
    clip-path: none;
    transition: opacity 0.9s var(--ease-expo), transform 1.05s var(--ease-expo);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Staggered cascades wherever siblings reveal together */
  .lineup .lineup-row:nth-child(1) { transition-delay: 0.00s; }
  .lineup .lineup-row:nth-child(2) { transition-delay: 0.08s; }
  .lineup .lineup-row:nth-child(3) { transition-delay: 0.16s; }
  .lineup .lineup-row:nth-child(4) { transition-delay: 0.24s; }
  .lineup .lineup-row:nth-child(5) { transition-delay: 0.32s; }
  .lineup .lineup-row:nth-child(6) { transition-delay: 0.40s; }
  .gallery-grid .g-item:nth-child(3n+2) { transition-delay: 0.10s; }
  .gallery-grid .g-item:nth-child(3n+3) { transition-delay: 0.20s; }
  .reviews-grid .review-card:nth-child(2) { transition-delay: 0.10s; }
  .reviews-grid .review-card:nth-child(3) { transition-delay: 0.20s; }
  .reviews-grid .review-card:nth-child(4) { transition-delay: 0.30s; }
  .games-grid .game-card:nth-child(even) { transition-delay: 0.12s; }
  .offer-list .offer-row:nth-child(2) { transition-delay: 0.10s; }
  .offer-list .offer-row:nth-child(3) { transition-delay: 0.20s; }
  .offer-list .offer-row:nth-child(4) { transition-delay: 0.30s; }

  /* Images arrive with a soft scale settle */
  .g-item.reveal, .snooker-img.reveal { transform: translateY(46px) scale(0.97); }
  .g-item.reveal.visible, .snooker-img.reveal.visible { transform: translateY(0) scale(1); }

  /* Ghost numerals drift with scroll (JS-driven, all browsers) */
  section[data-num]::before {
    transform: translateY(calc(var(--num-drift, 0) * 1px));
    will-change: transform;
  }

  /* Fact rail items cascade in on load */
  .loaded .fact-rail span, .loaded .fact-rail i {
    animation: rail-in 0.8s var(--ease-expo) backwards;
  }
  .loaded .fact-rail span:nth-child(1) { animation-delay: 0.7s; }
  .loaded .fact-rail i:nth-child(2)    { animation-delay: 0.8s; }
  .loaded .fact-rail span:nth-child(3) { animation-delay: 0.9s; }
  .loaded .fact-rail i:nth-child(4)    { animation-delay: 1.0s; }
  .loaded .fact-rail span:nth-child(5) { animation-delay: 1.1s; }
  .loaded .fact-rail i:nth-child(6)    { animation-delay: 1.2s; }
  .loaded .fact-rail span:nth-child(7) { animation-delay: 1.3s; }
  .loaded .fact-rail i:nth-child(8)    { animation-delay: 1.4s; }
  .loaded .fact-rail span:nth-child(9) { animation-delay: 1.5s; }
  @keyframes rail-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
