/* TARGET IMAGE LIMIT: 9 */

/* =====================================================
   DESIGN SYSTEM – Northern Party Pros
   Aesthetic: Dark Luxury / Art Deco
   Palette: Charcoal, Gold, Forest Green, Cream
   Fonts: Cormorant Garamond (headers), DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --black:        #080808;
  --charcoal:     #111111;
  --charcoal-2:   #1a1a1a;
  --charcoal-3:   #222222;
  --gold:         #C9A84C;
  --gold-light:   #E2C97E;
  --gold-dark:    #9A7A2A;
  --green:        #1C3A2A;
  --green-light:  #254D38;
  --cream:        #F5E6C8;
  --cream-light:  #FAF5EA;
  --white:        #FFFFFF;
  --text-primary: #F0E6D0;
  --text-muted:   #9A9080;
  --text-subtle:  #5A5248;
  --border:       rgba(201,168,76,0.2);
  --border-strong:rgba(201,168,76,0.5);
  --glass-bg:     rgba(17,17,17,0.85);
  --glass-border: rgba(201,168,76,0.15);
  --radius:       4px;
  --radius-lg:    8px;
  --radius-xl:    12px;
  --shadow-gold:  0 0 40px rgba(201,168,76,0.12);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.6);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:        1200px;
  --section-py:   96px;
  --header-h:     80px;
  /* Color system */
  --success:      #2A6B45;
  --success-light:#3A9060;
  --warning:      #B8860B;
  --error:        #8B2020;
  --error-light:  #C0392B;
  --neutral-100:  #1e1e1e;
  --neutral-200:  #2a2a2a;
  --neutral-300:  #3a3a3a;
  --neutral-400:  #5a5a5a;
  --neutral-500:  #808080;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Utilities ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-py { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-subtitle.center { margin: 0 auto; }
.gold-text { color: var(--gold); }
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}
.divider.center { margin: 24px auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.btn-ghost {
  color: var(--gold);
  padding-left: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost::after {
  content: ' →';
  transition: margin 0.3s;
}
.btn-ghost:hover::after { margin-left: 4px; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 890;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-bg2.jpg'); /* IMAGE 1 */
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.2) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: var(--header-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(201,168,76,0.08);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(240,230,208,0.8);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--charcoal-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-size: 1.8rem;
  color: var(--gold-light);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── Games Cards ─── */
.games-section { background: var(--charcoal); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.game-card {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 40px 28px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  cursor: pointer;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.game-card:nth-child(1)::before { background: radial-gradient(ellipse at top left, rgba(201,168,76,0.1), transparent 70%); }
.game-card:nth-child(2)::before { background: radial-gradient(ellipse at top right, rgba(28,58,42,0.3), transparent 70%); }
.game-card:nth-child(3)::before { background: radial-gradient(ellipse at bottom, rgba(201,168,76,0.08), transparent 70%); }
.game-card:nth-child(4)::before { background: radial-gradient(ellipse at center, rgba(28,58,42,0.25), transparent 70%); }
.game-card:hover::before { opacity: 1; }
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}
.game-card-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  transition: border-color 0.35s, background 0.35s;
}
.game-card:hover .game-card-icon {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.16), transparent);
}
.game-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.game-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.game-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.game-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.game-card-feature::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.game-card-accent {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent, rgba(201,168,76,0.06));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* ─── Event Styles ─── */
.events-section { background: var(--black); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.event-tile {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 48px 40px;
  transition: all 0.35s ease;
  overflow: hidden;
}
.event-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.event-tile:hover::after { transform: scaleX(1); }
.event-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.event-tile-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  opacity: 0.04;
  pointer-events: none;
}
.event-tile-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 24px; right: 32px;
  line-height: 1;
  pointer-events: none;
}
.event-tile-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.event-tile-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.15;
}
.event-tile-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.event-tile-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-tile-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.event-tile-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Why Us ─── */
.why-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(28,58,42,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 8px; }
.why-item-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-item-body {}
.why-item-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.why-item-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.why-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-feature-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why-feature-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}
.why-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
}
.why-feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.why-feature-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── How It Works ─── */
.how-section { background: var(--black); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  pointer-events: none;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.how-step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--charcoal-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.how-step:hover .how-step-circle {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 24px rgba(201,168,76,0.2);
}
.how-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.how-step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Testimonials ─── */
.testimonials-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(28,58,42,0.15), transparent 70%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.35s ease;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--green), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 2px;
}
.testimonial-stars {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

/* ─── Cities ─── */
.cities-section {
  background: var(--black);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cities-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 32px;
}
.cities-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.city-item {
  padding: 8px 28px;
  border-right: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.city-item:last-child { border-right: none; }
.city-item:hover { color: var(--gold); }

/* ─── Footer ─── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}
.footer-contact {
  background: var(--black);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.footer-contact-info { }
.footer-contact-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}
.footer-contact-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(201,168,76,0.06);
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.contact-detail-value a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.form-control {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  resize: none;
}
.form-control::placeholder { color: var(--text-subtle); }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-control.error { border-color: var(--error-light); }
.form-error {
  font-size: 12px;
  color: var(--error-light);
  display: none;
}
.form-error.show { display: block; }
.form-submit-row { display: flex; align-items: center; gap: 16px; }
.btn-submit {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(42,107,69,0.4);
  background: rgba(42,107,69,0.08);
  border-radius: var(--radius-lg);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 16px; }
.form-success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.form-success-text { font-size: 14px; color: var(--text-muted); }

/* Footer Bottom */
.footer-bottom-section {
  padding: 56px 0 40px;
}
.footer-bottom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
  display: block;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bar-copy {
  font-size: 12px;
  color: var(--text-subtle);
}
.footer-bar-links { display: flex; gap: 24px; }
.footer-bar-links a {
  font-size: 12px;
  color: var(--text-subtle);
  transition: color 0.25s;
}
.footer-bar-links a:hover { color: var(--text-muted); }
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ─── Age Gate ─── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}
.age-gate.active { display: flex; }
.age-gate-inner {
  max-width: 440px;
  width: 100%;
}
.age-gate-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.age-gate-logo span { color: var(--gold); }
.age-gate-diamond {
  width: 80px; height: 80px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), transparent);
  transform: rotate(45deg);
}
.age-gate-diamond span { transform: rotate(-45deg); display: block; }
.age-gate-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.age-gate-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.age-gate-note {
  font-size: 11px;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 420px;
  background: var(--charcoal-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  z-index: 8000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hidden { display: none; }
.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.cookie-banner-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-toggle-label { font-size: 13px; color: var(--text-primary); }
.cookie-toggle-label small { display: block; font-size: 11px; color: var(--text-subtle); margin-top: 2px; }
.toggle-switch {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--neutral-300);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
}
input:checked + .toggle-slider { background: var(--gold); }
input:checked + .toggle-slider::before { transform: translateX(18px); }
input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: 10px 20px; font-size: 12px; }

/* ─── Page Banner ─── */
.page-banner {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 64px;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06), transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(28,58,42,0.15), transparent 60%);
  pointer-events: none;
}
.page-banner-content { position: relative; }
.page-banner-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-banner-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-subtle);
  margin-bottom: 20px;
}
.breadcrumb a { transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border-strong); }

/* ─── Art Deco Pattern (CSS only) ─── */
.deco-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.deco-line::before, .deco-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}
.deco-line::after { background: linear-gradient(90deg, var(--border-strong), transparent); }
.deco-line-icon { color: var(--gold); font-size: 1rem; }

/* ─── Sections shared ─── */
.section-header { margin-bottom: 0; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header.centered .divider { margin: 24px auto; }

/* ─── Packages ─── */
.packages-section { background: var(--charcoal); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.package-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.package-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}
.package-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.package-header {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border);
}
.package-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.package-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.package-price { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 4px; }
.package-price-from { font-size: 12px; color: var(--text-subtle); align-self: center; }
.package-price-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.package-price-note { font-size: 12px; color: var(--text-subtle); }
.package-body { padding: 28px 32px; }
.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.package-feature-icon { color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.package-feature.disabled { opacity: 0.35; }
.package-feature.disabled .package-feature-icon { color: var(--text-subtle); }

/* ─── About ─── */
.about-section { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-image-badge {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--charcoal-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}
.about-image-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-image-badge-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.about-content-section { margin-bottom: 48px; }
.about-content-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.about-content-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-chip {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--charcoal-3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.value-chip:hover { border-color: var(--border-strong); color: var(--cream); }
.value-chip-icon { font-size: 1.2rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.35s;
}
.team-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.team-avatar {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
}
.team-avatar.av1 { background: linear-gradient(135deg, #1C3A2A, #2A6B45); }
.team-avatar.av2 { background: linear-gradient(135deg, #3A2A1C, #7A5A2A); }
.team-avatar.av3 { background: linear-gradient(135deg, #1C2A3A, #2A4A6B); }
.team-avatar.av4 { background: linear-gradient(135deg, #3A1C2A, #6B2A4A); }
.team-info { padding: 20px; }
.team-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--cream); margin-bottom: 4px; }
.team-title { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── FAQ ─── */
.faq-section { background: var(--charcoal); }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold); }
.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  line-height: 1;
  padding-bottom: 1px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── Legal Pages ─── */
.legal-section { background: var(--charcoal); }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--cream);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 4px;
}
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content .legal-box {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-updated {
  display: inline-block;
  font-size: 12px;
  color: var(--text-subtle);
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

/* ─── Games Page ─── */
.game-detail {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.game-detail:nth-child(even) { background: var(--black); }
.game-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.game-detail-image {
  position: relative;
  overflow: hidden;
}
.game-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.game-detail:hover .game-detail-image img { transform: scale(1.03); }
.game-detail-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.3), transparent);
  pointer-events: none;
}
.game-detail:nth-child(even) .game-detail-inner { direction: rtl; }
.game-detail:nth-child(even) .game-detail-image-overlay {
  background: linear-gradient(to left, rgba(8,8,8,0.3), transparent);
}
.game-detail:nth-child(even) .game-detail-content { direction: ltr; }
.game-detail-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.game-detail-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.game-detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.game-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.game-spec {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(201,168,76,0.04);
}
.game-spec-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.game-spec-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.game-disclaimer {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: var(--text-subtle);
  letter-spacing: 0.03em;
}
.game-disclaimer strong { color: var(--gold); }

/* ─── Events Page ─── */
.event-detail {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.event-detail:nth-child(even) { background: var(--black); }
.event-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.event-detail:nth-child(even) .event-detail-inner { direction: rtl; }
.event-detail:nth-child(even) .event-detail-content { direction: ltr; }
.event-detail-image {
  position: relative;
  overflow: hidden;
}
.event-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-detail:hover .event-detail-image img { transform: scale(1.03); }
.event-detail-no-img {
  width: 100%; height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.event-detail-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-detail-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.event-detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.event-detail-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.event-detail-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.event-detail-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 10px; margin-top: 4px; }
/* Fundraiser no-image style */
.fundraiser-pattern {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201,168,76,0.04) 20px,
      rgba(201,168,76,0.04) 21px
    ),
    linear-gradient(135deg, #1C3A2A 0%, #0d0d0d 100%);
}

/* ─── Scroll animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .how-grid::before { display: none; }
  .footer-bottom-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .game-detail-inner,
  .event-detail-inner { grid-template-columns: 1fr; min-height: auto; }
  .game-detail:nth-child(even) .game-detail-inner { direction: ltr; }
  .event-detail:nth-child(even) .event-detail-inner { direction: ltr; }
  .game-detail-image,
  .event-detail-image { height: 300px; }
  .event-detail-no-img { min-height: 240px; }
  .game-detail-content,
  .event-detail-content { padding: 48px 32px; }
  .why-grid,
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-badge { right: 16px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; --header-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .game-detail-specs { grid-template-columns: 1fr; }
  .cities-list { gap: 8px; }
  .city-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .games-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 11px; }
  .package-card.featured { transform: none; }
}
