/* ==============================================
   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.50 0.09 92);
  --gold-ultra-dim: oklch(0.35 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.91 0.008 90);
  --text-2: oklch(0.58 0.010 90);
  --text-3: oklch(0.38 0.006 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); }

.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(--gold-dim);
  margin-bottom: 20px;
}

.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; }

.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); }


/* ================================================
   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; }
}


/* ================================================
   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(16px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}

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

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.05s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.10s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.15s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.20s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.25s; }


/* ================================================
   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; }
  #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; }
}
