/* ==============================================
   Rocky O'Sullivans — Editorial Premium
   ============================================== */

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

:root {
  --gold: oklch(0.72 0.14 90);
  --gold-bright: oklch(0.80 0.15 85);
  --gold-dim: oklch(0.62 0.09 92);
  --gold-ultra-dim: oklch(0.48 0.06 92);
  --green: oklch(0.22 0.06 152);
  --green-deep: oklch(0.16 0.05 152);
  --surface: oklch(0.11 0.005 152);
  --surface-up: oklch(0.14 0.005 152);
  --surface-down: oklch(0.07 0.004 152);
  --surface-warm: oklch(0.12 0.008 80);
  --text-1: oklch(0.93 0.008 90);
  --text-2: oklch(0.74 0.010 90);
  --text-3: oklch(0.62 0.008 90);
  --border: oklch(0.91 0.008 90 / 0.07);
  --border-strong: oklch(0.91 0.008 90 / 0.14);
  --border-gold: oklch(0.72 0.14 90 / 0.25);
  --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: 'Cinzel', 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.72 0.14 90 / 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.07 0.004 152 / 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: 'Cinzel', 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.07 0.004 152 / 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: 'Cinzel', 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 {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      var(--surface-down) 0%,
      oklch(0.07 0.004 152 / 0.80) 30%,
      oklch(0.07 0.004 152 / 0.35) 55%,
      oklch(0.07 0.004 152 / 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.07 0.004 152 / 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.07 0.004 152 / 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 152 / 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.07 0.004 152 / 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: 'Cinzel', 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: 'Cinzel', 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: 'Cinzel', 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.07 0.004 152 / 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.07 0.004 152 / 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.72 0.14 90 / 0.18);
  border-bottom: 1px solid oklch(0.72 0.14 90 / 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: 'Cinzel', 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: 'Cinzel', 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 55%;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    var(--surface) 0%,
    oklch(0.11 0.005 152 / 0.6) 40%,
    oklch(0.11 0.005 152 / 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: 'Cinzel', 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: 'Cinzel', 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: 'Cinzel', 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 90 / 0.14), transparent 70%),
    oklch(0.10 0.012 152 / 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: 'Cinzel', 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 90 / 0.20), transparent 55%),
    linear-gradient(180deg,
      oklch(0.10 0.04 152 / 0.55) 0%,
      oklch(0.10 0.04 152 / 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 90 / 0.18), oklch(0.13 0.012 152 / 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.72 0.14 90 / 0.28), transparent 50%),
    radial-gradient(circle at -10% 110%, oklch(0.40 0.12 152 / 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.07 0.004 152 / 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: 'Cinzel', 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: 'Cinzel', 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: 'Cinzel', 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 152 / 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 152 / 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: 'Cinzel', 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: 'Cinzel', 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 90 / 0.18), oklch(0.10 0.012 152 / 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 152 / 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 152 / 0.85), oklch(0.10 0.012 152 / 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: 'Cinzel', 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: 'Cinzel', 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.72 0.14 90 / 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: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-h {
  font-family: 'Cinzel', 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 152 / 0.98), oklch(0.10 0.012 152 / 0.98));
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  box-shadow: 0 20px 60px oklch(0.04 0.004 152 / 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: 'Cinzel', 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.07 0.004 152 / 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 152 / 0.98), oklch(0.10 0.012 152 / 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 152 / 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.72 0.14 90 / 0.08);
}

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

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

.booking-head h2 {
  font-family: 'Cinzel', 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.07 0.004 152 / 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.07 0.004 152 / 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.07 0.004 152 / 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: 'Cinzel', 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 152 / 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 152 / 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.07 0.004 152 / 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 152 / 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 152 / 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.07 0.004 152 / 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 152 / 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: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-1);
  background: oklch(0.07 0.004 152 / 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: 'Cinzel', 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 90 / 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 90 / 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 152 / 0.98), oklch(0.10 0.012 152 / 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 90 / 0.10), transparent 60%),
    oklch(0.10 0.012 152 / 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: 'Cinzel', 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.72 0.14 90 / 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 152 / 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 152 / 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.07 0.004 152 / 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 152 / 0.7);
}

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

.chat-input {
  flex: 1;
  background: oklch(0.10 0.005 152 / 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 90 / 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; }
}
