/* ============================================================
   TWO BROWN BOYS SIARGAO — MASTER STYLESHEET
   Design System: Cinematic Nightlife × Island Energy
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,800&family=Barlow:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Color Palette */
  --black:          #0a0908;
  --espresso:       #111010;
  --charcoal:       #1a1816;
  --charcoal-mid:   #211f1d;
  --charcoal-light: #2c2927;
  --charcoal-border:#333030;

  --amber:          #e8961e;
  --amber-light:    #f5a828;
  --amber-glow:     rgba(232,150,30,0.18);
  --amber-soft:     rgba(232,150,30,0.08);

  --chili:          #c8391a;
  --chili-light:    #e0431f;
  --chili-glow:     rgba(200,57,26,0.22);

  --lime:           #7ec850;
  --lime-dim:       #5a9438;

  --white:          #f5f0ea;
  --white-muted:    #c8c0b4;
  --white-dim:      #7a7068;

  /* Typography */
  --font-headline:  'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --font-ui:        'Inter', sans-serif;

  /* Spacing */
  --section-pad:    clamp(64px, 8vw, 120px);
  --container:      1280px;
  --gutter:         clamp(20px, 4vw, 48px);

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:       0.22s;
  --dur-med:        0.45s;
  --dur-slow:       0.75s;

  /* Shadows */
  --shadow-card:    0 8px 40px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.35);
  --shadow-amber:   0 0 40px rgba(232,150,30,0.22), 0 0 80px rgba(232,150,30,0.08);
  --shadow-chili:   0 0 40px rgba(200,57,26,0.22);
  --glow-amber:     0 0 20px rgba(232,150,30,0.4), 0 0 60px rgba(232,150,30,0.12);
  --glow-chili:     0 0 20px rgba(200,57,26,0.4);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--espresso);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-light); }

/* ── Selection ── */
::selection { background: var(--amber); color: var(--black); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Typography Scale ── */
.display-1 {
  font-family: var(--font-headline);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display-2 {
  font-family: var(--font-headline);
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display-3 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.headline {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.subheadline {
  font-family: var(--font-headline);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.body-lg { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; }
.body-md { font-size: clamp(14px, 1.2vw, 17px); line-height: 1.65; }
.body-sm { font-size: 13px; line-height: 1.55; }
.label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Color Utilities ── */
.text-amber { color: var(--amber); }
.text-chili { color: var(--chili-light); }
.text-lime  { color: var(--lime); }
.text-muted { color: var(--white-muted); }
.text-dim   { color: var(--white-dim); }
.text-white { color: var(--white); }

/* ── Section Spacing ── */
.section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.section-sm { padding: calc(var(--section-pad) * 0.6) 0; position: relative; overflow: hidden; }

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease-cinematic);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-cinematic);
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(232,150,30,0.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,150,30,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(245,240,234,0.3);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-chili {
  background: var(--chili);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(200,57,26,0.35);
}
.btn-chili:hover {
  background: var(--chili-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,57,26,0.5);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }

/* ── Dividers ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--charcoal-border), transparent);
  margin: 0;
}
.divider-amber {
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.3;
}

/* ── Noise Texture Overlay ── */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ── Gradient Overlays ── */
.gradient-bottom {
  background: linear-gradient(to bottom, transparent 0%, var(--espresso) 100%);
}
.gradient-top {
  background: linear-gradient(to top, transparent 0%, var(--espresso) 100%);
}

/* ── ============================================================
   NAVBAR
   ============================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--dur-med) var(--ease-cinematic);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(10,9,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,150,30,0.12);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo .logo-main {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color var(--dur-fast) ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width var(--dur-med) var(--ease-cinematic);
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--dur-fast) ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white-muted);
  transition: color var(--dur-fast) ease;
  padding: 8px 24px;
}
.nav-mobile a:hover { color: var(--amber); }

/* ── ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated gradient cinema background */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232,150,30,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(200,57,26,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(10,9,8,0.8) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,9,8,0.3) 0%, rgba(10,9,8,0.6) 60%, rgba(10,9,8,0.95) 100%);
  z-index: 2;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  z-index: 1;
  transform: scale(1.05);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.1) translateX(-1.5%); }
}

.hero-ambient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 2;
  animation: ambient-pulse 8s ease-in-out infinite;
}
.hero-ambient-1 {
  background: rgba(232,150,30,0.15);
  bottom: -100px;
  left: -100px;
}
.hero-ambient-2 {
  background: rgba(200,57,26,0.1);
  top: -100px;
  right: -100px;
  animation-delay: -4s;
}
@keyframes ambient-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}

/* Scanline effect */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: clamp(60px, 10vh, 120px);
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(232,150,30,0.4);
  border-radius: 2px;
  background: rgba(232,150,30,0.08);
  margin-bottom: 24px;
}
.hero-badge span {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(52px, 9.5vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title .line-1 { color: var(--white); display: block; }
.hero-title .line-2 { color: var(--amber); display: block; }
.hero-title .line-3 { color: var(--white); display: block; opacity: 0.85; }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 20px);
  color: var(--white-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(245,240,234,0.1);
  padding-top: 28px;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(245,240,234,0.1);
}
.hero-proof-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-proof-item .icon {
  font-size: 18px;
  color: var(--amber);
}
.hero-proof-item .text {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

/* ── ============================================================
   WHY SECTION
   ============================================================ */

.why-section {
  background: linear-gradient(180deg, var(--espresso) 0%, var(--charcoal) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-editorial-block .big-quote {
  font-family: var(--font-headline);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.why-editorial-block .big-quote em {
  font-style: italic;
  color: var(--amber);
}

.why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.why-pill {
  padding: 8px 16px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: all var(--dur-fast) ease;
}
.why-pill:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-soft);
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--dur-fast) ease;
  cursor: default;
}
.why-feature-item:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-border);
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-soft);
  border: 1px solid rgba(232,150,30,0.2);
  border-radius: 3px;
  font-size: 20px;
  flex-shrink: 0;
  transition: all var(--dur-fast) ease;
}
.why-feature-item:hover .why-feature-icon {
  background: var(--amber);
  box-shadow: var(--glow-amber);
}
.why-feature-icon svg, .why-feature-icon span { font-size: 20px; }
.why-feature-body h4 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}
.why-feature-body p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ── ============================================================
   MENU / CRAVINGS CARDS
   ============================================================ */

.cravings-section {
  background: var(--charcoal);
}

.cravings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cravings-grid .card-wide {
  grid-column: span 2;
}

.craving-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  transition: transform var(--dur-med) var(--ease-cinematic),
              box-shadow var(--dur-med) ease;
  cursor: default;
  aspect-ratio: 4/3;
}
.cravings-grid .card-wide {
  aspect-ratio: 16/8;
}
.craving-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-amber);
}
.craving-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease-cinematic);
}
.craving-card:hover .craving-card-img {
  transform: scale(1.07);
}
.craving-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,0.95) 0%,
    rgba(10,9,8,0.5) 40%,
    transparent 70%
  );
  z-index: 2;
}
.craving-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}
.craving-card-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  display: block;
}
.craving-card-name {
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.craving-card-desc {
  font-size: 12px;
  color: var(--white-muted);
  line-height: 1.5;
  max-width: 280px;
}
.craving-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  background: var(--amber);
  color: var(--black);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}

/* Menu CTA bar */
.menu-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.menu-cta-bar p {
  font-size: 14px;
  color: var(--white-muted);
}
.menu-cta-bar p strong { color: var(--white); }

/* ── ============================================================
   SPORTS & BILLIARDS SECTION
   ============================================================ */

.sports-section {
  background: var(--black);
  overflow: hidden;
}

.sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.sports-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.sports-visual-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1607013251379-e6eecfffe234?w=900&q=80');
  background-size: cover;
  background-position: center;
}
.sports-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,9,8,0.7) 0%,
    transparent 100%
  );
}
.sports-content {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal);
}

.sports-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}
.sports-stat .number {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.sports-stat .label {
  color: var(--white-dim);
  font-size: 11px;
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.sports-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.sports-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white-muted);
}
.sports-feature::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── ============================================================
   LATE NIGHT SECTION
   ============================================================ */

.latenight-section {
  position: relative;
  background: var(--black);
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.latenight-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1470338745628-171cf53de3a8?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.25;
}
.latenight-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,9,8,0.98) 0%, rgba(10,9,8,0.5) 60%, rgba(10,9,8,0.7) 100%),
    radial-gradient(ellipse 80% 80% at 10% 50%, rgba(232,150,30,0.1) 0%, transparent 60%);
}

.latenight-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}
.latenight-time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.latenight-clock {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  border: 1px solid rgba(232,150,30,0.3);
  padding: 6px 14px;
  border-radius: 2px;
  background: rgba(232,150,30,0.06);
}

.latenight-big-text {
  font-family: var(--font-headline);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.latenight-big-text .accent { color: var(--amber); }

.latenight-strip {
  display: flex;
  gap: 0;
  margin-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.latenight-strip::-webkit-scrollbar { display: none; }
.latenight-strip-item {
  padding: 16px 24px;
  border-left: 1px solid rgba(245,240,234,0.1);
  flex-shrink: 0;
}
.latenight-strip-item:first-child { border-left: none; padding-left: 0; }
.latenight-strip-item .time-label {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--amber);
  display: block;
}
.latenight-strip-item .time-desc {
  font-size: 11px;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 2px;
}

/* ── ============================================================
   REVIEWS SECTION
   ============================================================ */

.reviews-section {
  background: var(--charcoal);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  flex-shrink: 0;
}
.rating-badge .number {
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.rating-badge .stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2px;
}
.rating-badge .count {
  font-size: 11px;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.rating-badge .source-note {
  font-size: 9px;
  color: var(--white-dim);
  opacity: 0.6;
  margin-top: 2px;
  display: block;
}

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

.review-card {
  padding: 28px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  position: relative;
  transition: all var(--dur-fast) ease;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-headline);
  font-size: 80px;
  font-weight: 900;
  color: rgba(232,150,30,0.08);
  line-height: 1;
}
.review-card:hover {
  border-color: rgba(232,150,30,0.2);
  background: var(--charcoal-light);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-stars span { color: var(--amber); font-size: 13px; }
.review-text {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-soft);
  border: 1px solid rgba(232,150,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 800;
  color: var(--amber);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  display: block;
}
.review-meta {
  font-size: 11px;
  color: var(--white-dim);
  display: block;
}

/* ── ============================================================
   INSTAGRAM / SOCIAL WALL
   ============================================================ */

.social-section {
  background: var(--black);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: 40px;
}
.social-grid .social-tall {
  grid-row: span 2;
}

.social-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--charcoal-mid);
  aspect-ratio: 1/1;
  cursor: pointer;
}
.social-card.social-tall { aspect-ratio: auto; }

.social-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease-cinematic);
}
.social-card:hover .social-card-img { transform: scale(1.08); }

.social-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-med) ease;
}
.social-card:hover .social-card-overlay {
  background: rgba(10,9,8,0.65);
}
.social-card-overlay .ig-icon {
  font-size: 28px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--dur-med) var(--ease-spring);
}
.social-card:hover .ig-icon {
  opacity: 1;
  transform: scale(1);
}

.social-cta {
  text-align: center;
  margin-top: 40px;
}
.social-handle {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  transition: color var(--dur-fast) ease;
}
.social-handle:hover { color: var(--amber); }

/* ── ============================================================
   VISIT / MAP SECTION
   ============================================================ */

.visit-section {
  background: var(--charcoal);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-map-container {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--charcoal-border);
}
.visit-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.9);
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-soft);
  border: 1px solid rgba(232,150,30,0.2);
  border-radius: 3px;
  font-size: 18px;
  flex-shrink: 0;
}
.visit-info-text h4 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.visit-info-text p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.55;
}
.visit-info-text p strong { color: var(--white); }

.visit-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.hours-note {
  font-size: 11px;
  color: var(--white-dim);
  font-style: italic;
  margin-top: 6px;
  display: block;
}

/* ── ============================================================
   FINAL CTA / FOOTER HERO
   ============================================================ */

.footer-hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
}
.footer-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(232,150,30,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 0%, rgba(200,57,26,0.08) 0%, transparent 50%);
}
.footer-hero-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  margin: 0 auto 32px;
}
.footer-hero-text {
  font-family: var(--font-headline);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}
.footer-hero-text span { color: var(--amber); }
.footer-hero-sub {
  color: var(--white-muted);
  font-size: clamp(14px, 1.5vw, 18px);
  max-width: 400px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}
.footer-hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ── ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-border);
  padding: 48px 0 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-main {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  line-height: 1;
}
.footer-brand .logo-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 4px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 3px;
  font-size: 15px;
  color: var(--white-muted);
  transition: all var(--dur-fast) ease;
}
.footer-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}
.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--white-dim);
  transition: color var(--dur-fast) ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-col p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 6px;
}
.footer-col p strong { color: var(--white-muted); }

.footer-bottom {
  border-top: 1px solid var(--charcoal-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 11px; color: var(--white-dim); }
.footer-disclaimer {
  font-size: 10px;
  color: var(--white-dim);
  opacity: 0.5;
  max-width: 500px;
}

/* ── ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,9,8,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--charcoal-border);
  padding: 10px var(--gutter) 10px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.mobile-action-inner {
  display: flex;
  gap: 8px;
}
.mobile-action-inner .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 11px;
}

/* ── ============================================================
   MENU PAGE STYLES
   ============================================================ */

.menu-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 60px;
}
.menu-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,1) 0%,
    rgba(10,9,8,0.7) 40%,
    rgba(10,9,8,0.4) 100%
  );
}

.menu-sticky-nav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(17,16,16,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--charcoal-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-sticky-nav::-webkit-scrollbar { display: none; }
.menu-nav-inner {
  display: flex;
  gap: 0;
  min-width: max-content;
}
.menu-nav-btn {
  padding: 16px 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 2px solid transparent;
  transition: all var(--dur-fast) ease;
  white-space: nowrap;
}
.menu-nav-btn:hover,
.menu-nav-btn.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.menu-category {
  padding: 80px 0 40px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.menu-category-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.menu-category-count {
  padding: 4px 10px;
  background: var(--amber-soft);
  border: 1px solid rgba(232,150,30,0.2);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  font-family: var(--font-ui);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-item-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--dur-fast) ease;
}
.menu-item-card:hover {
  border-color: rgba(232,150,30,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.menu-item-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.menu-item-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-slow) var(--ease-cinematic);
}
.menu-item-card:hover .menu-item-img-inner { transform: scale(1.06); }
.menu-item-body {
  padding: 18px;
}
.menu-item-featured {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  display: block;
}
.menu-item-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.menu-item-desc {
  font-size: 12px;
  color: var(--white-dim);
  line-height: 1.55;
  margin-bottom: 12px;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--charcoal-border);
}
.menu-item-price {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--amber);
}
.menu-item-tag {
  padding: 4px 8px;
  background: var(--charcoal-light);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-placeholder-card {
  background: var(--charcoal-mid);
  border: 1px dashed var(--charcoal-border);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 160px;
}
.menu-placeholder-card .icon { font-size: 28px; opacity: 0.3; }
.menu-placeholder-card p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ── ============================================================
   SPORTS PAGE STYLES
   ============================================================ */

.sports-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 60px;
}
.sports-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.sports-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,1) 0%,
    rgba(10,9,8,0.7) 50%,
    rgba(10,9,8,0.5) 100%
  );
}

.sports-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.sports-feature-card {
  padding: 32px 28px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  transition: all var(--dur-fast) ease;
  position: relative;
  overflow: hidden;
}
.sports-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--dur-med) var(--ease-cinematic);
  transform-origin: left;
}
.sports-feature-card:hover::after { transform: scaleX(1); }
.sports-feature-card:hover {
  border-color: rgba(232,150,30,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.sports-feature-card .card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.sports-feature-card h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.sports-feature-card p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
}

.sports-schedule-section {
  background: var(--charcoal);
  padding: 60px 0;
}
.sports-schedule-note {
  padding: 24px 32px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-left: 3px solid var(--amber);
  border-radius: 0 4px 4px 0;
  margin-top: 32px;
}

/* ── ============================================================
   GALLERY PAGE STYLES
   ============================================================ */

.gallery-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 60px;
}
.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,1) 0%,
    rgba(10,9,8,0.7) 50%,
    rgba(10,9,8,0.4) 100%
  );
}

.gallery-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--charcoal-border);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: var(--charcoal-mid);
  transition: all var(--dur-fast) ease;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.gallery-masonry {
  columns: 3;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--dur-slow) var(--ease-cinematic);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-med) ease;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(10,9,8,0.55);
}
.gallery-item-overlay .icon {
  font-size: 24px;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--dur-med) var(--ease-spring);
}
.gallery-item:hover .gallery-item-overlay .icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 24px;
}
.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 3px;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  transition: all var(--dur-fast) ease;
}
.lightbox-close:hover { background: var(--amber); color: var(--black); }
.lightbox-nav {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 3px;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  transition: all var(--dur-fast) ease;
  flex-shrink: 0;
}
.lightbox-nav:hover { background: var(--amber); color: var(--black); }

/* ── ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.contact-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 60px;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(232,150,30,0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-form {
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 6px;
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form .form-sub {
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal-border);
  border-radius: 3px;
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--dur-fast) ease;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-dim); }
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  padding: 24px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  transition: all var(--dur-fast) ease;
}
.contact-card:hover {
  border-color: rgba(232,150,30,0.2);
}
.contact-card h4 {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-card p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-card a {
  font-size: 15px;
  font-weight: 600;
  color: var(--amber);
  transition: color var(--dur-fast) ease;
}
.contact-card a:hover { color: var(--amber-light); }

/* ── ============================================================
   VISIT PAGE STYLES
   ============================================================ */

.visit-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-bottom: 60px;
}
.visit-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232,150,30,0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

.big-map-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.big-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.9);
}
.map-overlay-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.9) 0%, transparent 100%);
  height: 80px;
  pointer-events: none;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.transport-card {
  padding: 24px;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-border);
  border-radius: 4px;
  text-align: center;
}
.transport-card .icon { font-size: 28px; margin-bottom: 12px; display: block; }
.transport-card h4 {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.transport-card p { font-size: 12px; color: var(--white-dim); line-height: 1.55; }

/* ── ============================================================
   ANIMATIONS & SCROLL REVEALS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-cinematic),
              transform var(--dur-slow) var(--ease-cinematic);
}
[data-reveal="left"] {
  transform: translateX(-28px);
}
[data-reveal="right"] {
  transform: translateX(28px);
}
[data-reveal="scale"] {
  transform: scale(0.94);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* ── ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .cravings-grid { grid-template-columns: repeat(2, 1fr); }
  .cravings-grid .card-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sports-grid { grid-template-columns: 1fr; }
  .sports-visual { min-height: 350px; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sports-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 2; }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */

@media (max-width: 640px) {
  .hero-proof { gap: 16px; }
  .hero-proof-item {
    padding: 0;
    margin: 0;
    border-right: none;
    width: calc(50% - 8px);
  }

  .cravings-grid { grid-template-columns: 1fr; }
  .cravings-grid .card-wide { grid-column: span 1; aspect-ratio: 4/3; }

  .reviews-grid { grid-template-columns: 1fr; }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .social-grid .social-tall { grid-row: span 1; aspect-ratio: 1/1; }

  .footer-inner { grid-template-columns: 1fr; }
  .sports-stats { gap: 20px; }
  .sports-feature-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .transport-grid { grid-template-columns: 1fr; }
  .footer-hero-text { word-break: break-word; }
  .visit-action-row { flex-direction: column; }
  .menu-cta-bar { flex-direction: column; text-align: center; }
  .sports-schedule-note { padding: 16px 20px; }
  .contact-form { padding: 24px 20px; }
  .mobile-action-bar { display: block; }
  body { padding-bottom: 72px; }
}

@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .footer-hero-ctas .btn { width: 100%; }
}
