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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #08080f;
  color: #e8e0d5;
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden { display: none !important; }

/* ── Age Gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: #08080f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-box {
  text-align: center;
  max-width: 400px;
  padding: 48px 40px;
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: 2px;
  background: rgba(244, 114, 182, 0.03);
}

.age-gate-icon {
  margin-bottom: 24px;
}
.age-gate-icon svg {
  width: 48px;
  height: 48px;
  display: inline-block;
}

.age-gate-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.age-gate-sub {
  font-size: 0.9rem;
  color: #8a8078;
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f472b6, #f43f5e);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
  margin-bottom: 20px;
}
.age-btn:hover { opacity: 0.9; }

.age-gate-refuse {
  font-size: 0.78rem;
  color: #4a4440;
  letter-spacing: 0.02em;
}

/* ── Funnel Page ── */
.funnel-page { min-height: 100vh; }

/* ── Hero ── */
.funnel-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 8vw 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial background */
.funnel-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(244, 63, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.funnel-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.funnel-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, 0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  font-weight: 500;
}

.funnel-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.funnel-headline em {
  font-style: italic;
  color: #f8c0c8;
}

.funnel-sub {
  font-size: 1.05rem;
  color: #9e9389;
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.funnel-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.funnel-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f472b6, #f43f5e);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.funnel-cta-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.funnel-cta-lg {
  padding: 20px 56px;
  font-size: 1.1rem;
}

.funnel-cta-note {
  font-size: 0.75rem;
  color: #5a5550;
  letter-spacing: 0.04em;
}

/* Hero Image */
.funnel-hero-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funnel-img-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.funnel-hero-img img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

/* ── Value Props ── */
.funnel-values {
  padding: 100px 8vw;
  background: linear-gradient(180deg, #08080f 0%, #0e0c14 100%);
}

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

.funnel-section-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f472b6;
  margin-bottom: 40px;
  font-weight: 500;
}

.funnel-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.funnel-value-card {
  padding: 32px;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.funnel-value-card:hover {
  border-color: rgba(244, 114, 182, 0.4);
  background: rgba(244, 114, 182, 0.03);
}

.funnel-value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: #f472b6;
  opacity: 0.8;
}

.funnel-value-icon svg {
  width: 100%;
  height: 100%;
}

.funnel-value-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.funnel-value-card p {
  font-size: 0.9rem;
  color: #8a8078;
  line-height: 1.7;
}

/* ── Final CTA ── */
.funnel-final-cta {
  padding: 120px 8vw;
  text-align: center;
  position: relative;
}

.funnel-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(244, 63, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.funnel-final-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.funnel-final-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f472b6;
  margin-bottom: 20px;
  font-weight: 500;
}

.funnel-final-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  font-style: italic;
}

.funnel-final-sub {
  font-size: 0.95rem;
  color: #8a8078;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── Gallery ── */
.funnel-gallery {
  padding: 100px 8vw;
  background: #0e0c14;
  text-align: center;
}

.funnel-gallery-inner {
  max-width: 900px;
  margin: 0 auto;
}

.funnel-gallery-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 48px;
  font-style: italic;
}

.funnel-gallery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}

.funnel-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.funnel-gallery-hero-img {
  display: flex;
}

.funnel-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.funnel-gallery-item:not(.funnel-gallery-hero-img) img {
  aspect-ratio: 2/3;
}

.funnel-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(transparent, rgba(8, 8, 15, 0.9));
  color: #f8c0c8;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  text-align: left;
}

.funnel-gallery-sub {
  font-size: 0.9rem;
  color: #8a8078;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .funnel-gallery { padding: 80px 6vw; }
  .funnel-gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .funnel-gallery-item:not(.funnel-gallery-hero-img) { display: none; }
  .funnel-gallery-hero-img img { aspect-ratio: 4/3; max-height: 400px; }
}

@media (max-width: 480px) {
  .funnel-gallery-grid { grid-template-columns: 1fr; }
  .funnel-gallery-item:not(.funnel-gallery-hero-img) { display: block; }
  .funnel-gallery-item:not(.funnel-gallery-hero-img) img { aspect-ratio: 3/4; }
}

/* ── Footer ── */
.funnel-footer {
  padding: 60px 8vw;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.funnel-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.funnel-footer-18 {
  font-size: 0.78rem;
  color: #f472b6;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.funnel-footer-disclaimer {
  font-size: 0.75rem;
  color: #4a4440;
  line-height: 1.7;
  margin-bottom: 24px;
}

.funnel-footer-copy {
  font-size: 0.72rem;
  color: #3a3632;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .funnel-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .funnel-hero {
    padding: 80px 6vw 60px;
    align-items: flex-start;
  }

  .funnel-hero-img { order: -1; }
  .funnel-hero-img img { max-width: 280px; margin: 0 auto; }

  .funnel-values { padding: 80px 6vw; }
  .funnel-values-grid { grid-template-columns: 1fr; gap: 16px; }

  .funnel-final-cta { padding: 80px 6vw; }

  .funnel-cta-wrap { align-items: flex-start; }
}

@media (max-width: 480px) {
  .funnel-hero-img img { max-width: 220px; }
  .age-gate-box { padding: 36px 24px; }
  .funnel-footer { padding: 48px 6vw; }
}