/* =============================================
   THEDIMEZONE — DESIGN SYSTEM
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  /* Core palette */
  --bg-void:      #040406;
  --bg-deep:      #08080d;
  --bg-surface:   #0e0e16;
  --bg-card:      #13131e;
  --bg-card-hover:#1a1a28;
  --border:       #1e1e2e;
  --border-light: #2a2a3e;

  /* Gold spectrum */
  --gold:         #d4a853;
  --gold-bright:  #f0c96e;
  --gold-pale:    #f5dfa0;
  --gold-dim:     #9a7832;
  --gold-glow:    rgba(212,168,83,0.25);

  /* Rose accent */
  --rose:         #c45c7a;
  --rose-bright:  #e07090;
  --rose-glow:    rgba(196,92,122,0.2);

  /* Text */
  --text:         #f0eef8;
  --text-soft:    #b0acbe;
  --text-muted:   #6a6680;
  --text-faint:   #3a384a;

  /* Status */
  --green:        #4ecb71;
  --red:          #e05555;

  /* Fonts */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Radii & shadows */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --shadow: 0 20px 60px rgba(0,0,0,0.7);
  --glow-gold: 0 0 40px var(--gold-glow), 0 0 80px rgba(212,168,83,0.1);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.display { font-family: var(--font-display); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50%       { box-shadow: 0 0 50px var(--gold-glow), 0 0 100px rgba(212,168,83,0.15); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.anim-fade-up  { animation: fadeUp 0.8s ease both; }
.anim-delay-1  { animation-delay: 0.15s; }
.anim-delay-2  { animation-delay: 0.3s; }
.anim-delay-3  { animation-delay: 0.45s; }
.anim-delay-4  { animation-delay: 0.6s; }

/* =============================================
   AGE GATE
   ============================================= */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-void);
}
#age-gate.hidden { display: none; }

/* Animated background for age gate */
#age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212,168,83,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(196,92,122,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.age-gate-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 60px 52px;
  max-width: 520px;
  width: 94%;
  text-align: center;
  box-shadow: var(--shadow), 0 0 0 1px rgba(212,168,83,0.08) inset;
  animation: fadeIn 0.6s ease;
}

/* Top accent line */
.age-gate-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-gate-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 28px;
}

.age-gate-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.age-gate-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.age-gate-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto 28px;
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.age-gate-body {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.age-gate-body strong { color: var(--gold); font-weight: 600; }
.age-gate-body a { color: var(--text-muted); text-decoration: underline; }
.age-gate-body a:hover { color: var(--gold); }

.age-gate-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.btn-enter {
  flex: 1;
  max-width: 200px;
  padding: 16px 24px;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
  background-size: 200% auto;
  color: #050408;
  animation: pulse-glow 3s ease-in-out infinite;
}
.btn-enter:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-exit {
  flex: 1;
  max-width: 200px;
  padding: 16px 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: var(--text-muted);
}
.btn-exit:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(224,85,85,0.06);
}

.age-gate-legal {
  font-size: 0.7rem;
  color: var(--text-faint);
  line-height: 1.8;
}
.age-gate-legal a { color: var(--text-faint); text-decoration: underline; }
.age-gate-legal a:hover { color: var(--gold-dim); }

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8888;
  background: rgba(13,13,20,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner.hidden { display: none; }

.cookie-text { flex: 1; font-size: 0.8rem; color: var(--text-muted); min-width: 220px; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; }

.btn-cookie-accept {
  padding: 8px 20px;
  background: var(--gold);
  color: #050408;
  border: none;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--gold-bright); }

.btn-cookie-decline {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--text); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 76px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
}

.site-nav.scrolled {
  background: rgba(4,4,6,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

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

.btn-nav-login {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.btn-nav-login:hover { color: var(--gold); }

.btn-nav-join {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #050408;
  border-radius: var(--r-sm);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
}
.btn-nav-join:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #050408;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* =============================================
   HERO — TOUR PAGE
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Layered background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,83,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(196,92,122,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(100,80,200,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 60%, var(--bg-void) 100%);
}

/* Decorative grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

/* Horizontal accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.3), transparent);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-label::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-title .line1 { display: block; color: var(--text); }

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 30%, var(--gold-bright) 55%, var(--gold) 80%, var(--gold-dim) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(19,19,30,0.6);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-stat {
  flex: 1;
  min-width: 140px;
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  background-size: 200% auto;
  color: #050408;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
  color: #050408;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 40px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,83,0.06);
  transform: translateY(-2px);
}

.btn-rose {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #a03355 0%, var(--rose) 50%, var(--rose-bright) 100%);
  background-size: 200% auto;
  color: #fff;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--rose-glow);
}
.btn-rose:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--rose-glow);
  color: #fff;
}

/* =============================================
   SECTION LAYOUT
   ============================================= */
.section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
}

/* =============================================
   HERO PHOTO BACKGROUND
   ============================================= */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.62) saturate(0.95);
  transform: scale(1.04);
}

/* Gradient vignette over the photo */
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,4,6,0.35) 0%,
      rgba(4,4,6,0.05) 35%,
      rgba(4,4,6,0.3) 70%,
      rgba(4,4,6,0.88) 100%
    ),
    linear-gradient(to right,
      rgba(4,4,6,0.25) 0%,
      transparent 35%,
      transparent 65%,
      rgba(4,4,6,0.25) 100%
    );
}

/* Ensure hero content sits above photo */
.hero-bg,
.hero-inner { position: relative; z-index: 1; }

/* diagonal divider */
.section-dark {
  background: var(--bg-deep);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: 130px 24px;
  margin: -40px 0;
  z-index: 1;
}

/* =============================================
   PREVIEW GRID
   ============================================= */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.preview-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s;
}
.preview-card:hover { transform: scale(1.02); border-color: var(--gold-dim); }

/* Large featured card */
.preview-card.large {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Content placeholder (replace with real images) */
.preview-thumb {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: blur(7px) brightness(0.75);
  transform: scale(1.1);
  transition: filter 0.4s;
}

/* Slightly more blur for the most explicit shots */
.preview-thumb--heavy {
  filter: blur(12px) brightness(0.65) saturate(0.95);
  transform: scale(1.12);
}

/* Gradient overlay */
.preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(4,4,6,0.8) 100%
  );
}

/* Lock overlay */
.preview-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 10px;
}

.preview-lock-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212,168,83,0.12);
  border: 1px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.preview-card:hover .preview-lock-icon {
  background: rgba(212,168,83,0.25);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.preview-lock-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
}

/* Placeholder gradient backgrounds */
.preview-card:nth-child(1) .preview-placeholder { background: linear-gradient(160deg, #1a1020 0%, #2a1830 50%, #1a0f25 100%); }
.preview-card:nth-child(2) .preview-placeholder { background: linear-gradient(160deg, #0f1a20 0%, #162535 50%, #0f1a28 100%); }
.preview-card:nth-child(3) .preview-placeholder { background: linear-gradient(160deg, #1a150f 0%, #2a2010 50%, #1a1808 100%); }
.preview-card:nth-child(4) .preview-placeholder { background: linear-gradient(160deg, #200f18 0%, #301525 50%, #200f1a 100%); }
.preview-card:nth-child(5) .preview-placeholder { background: linear-gradient(160deg, #0f1820 0%, #142430 50%, #0f1620 100%); }
.preview-card:nth-child(6) .preview-placeholder { background: linear-gradient(160deg, #18100f 0%, #281813 50%, #18100d 100%); }
.preview-card:nth-child(7) .preview-placeholder { background: linear-gradient(160deg, #15100f 0%, #251815 50%, #15100d 100%); }

.preview-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  filter: brightness(0.6);
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(212,168,83,0.4); }

/* Top glow on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   MEMBERSHIP TIERS
   ============================================= */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tier-card:hover { transform: translateY(-6px); }

.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  transition: background 0.3s;
}
.tier-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tier-card.featured {
  border-color: rgba(212,168,83,0.4);
  background: linear-gradient(160deg, rgba(212,168,83,0.06) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 60px rgba(212,168,83,0.08), inset 0 0 60px rgba(212,168,83,0.03);
}
.tier-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tier-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #050408;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tier-name {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.tier-price-wrap { margin-bottom: 6px; }

.tier-price {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}
.tier-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.tier-price .cents { font-size: 1.6rem; }

.tier-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tier-save {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(78,203,113,0.12);
  border: 1px solid rgba(78,203,113,0.25);
  color: var(--green);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.tier-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}

.tier-features {
  list-style: none;
  margin-bottom: 36px;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid rgba(30,30,46,0.6);
  line-height: 1.5;
}
.tier-features li:last-child { border-bottom: none; }

.tier-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(78,203,113,0.15);
  border: 1px solid rgba(78,203,113,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  color: var(--green);
}

.tier-x {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(60,60,80,0.3);
  border: 1px solid rgba(80,80,100,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  color: var(--text-faint);
  opacity: 0.5;
}

.tier-features li.off { opacity: 0.4; }

.btn-tier {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-tier:hover {
  background: rgba(212,168,83,0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.tier-card.featured .btn-tier {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #050408;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.tier-card.featured .btn-tier:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 8px 32px var(--gold-glow);
}

.tier-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-faint);
}

/* Billing guarantee strip */
.billing-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding: 28px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.billing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.billing-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* =============================================
   TESTIMONIAL / SOCIAL PROOF
   ============================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  position: relative;
}

.proof-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.proof-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-style: italic;
}
.proof-text::before { content: '\201C'; color: var(--gold-dim); font-size: 1.4rem; line-height: 0; vertical-align: -0.25em; margin-right: 2px; }
.proof-text::after  { content: '\201D'; color: var(--gold-dim); font-size: 1.4rem; line-height: 0; vertical-align: -0.25em; margin-left: 2px; }

.proof-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-void);
  border-top: 1px solid var(--border);
  padding: 72px 48px 36px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.footer-2257 {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.9;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.footer-2257 strong { color: var(--text-muted); }
.footer-2257 a { color: var(--text-faint); text-decoration: underline; }
.footer-2257 a:hover { color: var(--gold); }

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

.footer-copy-text { font-size: 0.75rem; color: var(--text-faint); }

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a { font-size: 0.72rem; color: var(--text-faint); text-decoration: underline; }
.footer-legal-links a:hover { color: var(--gold); }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 110px 24px 100px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin: 40px 0 14px;
  font-weight: 600;
}

.legal-page p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.9; }
.legal-page ul, .legal-page ol { margin: 0 0 16px 24px; }
.legal-page li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.8; }

.legal-highlight {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.88rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
}
.legal-highlight strong { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-card.large { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .section { padding: 72px 20px; }
  .section-dark { clip-path: none; margin: 0; padding: 72px 20px; }
  .billing-strip { gap: 24px; padding: 24px; }
}

@media (max-width: 560px) {
  .age-gate-box { padding: 40px 28px; }
  .age-gate-buttons { flex-direction: column; align-items: center; }
  .btn-enter, .btn-exit { width: 100%; max-width: 260px; }
  .preview-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
}

/* =============================================
   COMPLIANCE BAR
   ============================================= */
.compliance-bar {
  background: #07070d;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 32px;
}

.compliance-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.compliance-bar a {
  font-size: 0.72rem;
  color: #8888aa;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 5px 14px;
  transition: color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.1);
  line-height: 1.4;
}
.compliance-bar a:last-child { border-right: none; }
.compliance-bar a:hover { color: var(--gold); text-decoration: none; }
.compliance-bar a.cta-link {
  color: var(--gold);
  font-weight: 600;
}
.compliance-bar a.cta-link:hover { color: var(--gold-bright); }

@media (max-width: 768px) {
  .compliance-bar { padding: 12px 16px; }
  .compliance-bar a { font-size: 0.68rem; padding: 4px 10px; }
}
