

/* ── NAV ──────────────────────────────────────── */

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 22, 35, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── LAYOUT ──────────────────────────────────── */

/* ── TYPOGRAPHY ──────────────────────────────── */

.heading-xl {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--coral);
  margin-bottom: 32px;
}

.heading-hero {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--coral);
}

.heading-hero .coral-lt { color: var(--coral-lt); }

.heading-statement {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.body-text em { font-style: italic; }

.body-text-wide em { font-style: italic; }

.pull-quote-lg {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--green-lt);
  max-width: 900px;
}

.pull-quote-lg .coral { color: var(--coral); }

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 124px 0 40px;
  position: relative;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--coral);
}

/* ── FRAMING NOTE ────────────────────────────── */

/* ── CITATION BADGES ─────────────────────────── */

/* ── STAT CARDS ──────────────────────────────── */

.stats-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--coral);
}

.stat-unit {
  font-family: var(--sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--cream-muted);
  margin-left: 4px;
}

/* ── CYCLE COLUMNS ───────────────────────────── */
.cycles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.cycle-statement {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
}

/* ── HONEST READING NOTE ─────────────────────── */
.honest-note {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--coral-lt);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.honest-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-muted);
}

.honest-note strong {
  color: var(--cream);
  font-weight: 500;
}

/* ── REFERENCES ──────────────────────────────── */

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

/* ── ANIMATIONS ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  
  
  

  

  

  .stats-grid-2 {
    grid-template-columns: 1fr;
  }

  .cycles-grid {
    grid-template-columns: 1fr;
  }

  

  

  

  
  
}

@media (max-width: 600px) {
  
  
  
  .hero { padding: 88px 0 32px; }
}

/* Accessibility & motion preferences */

@media (prefers-reduced-motion: reduce){
  
  
  .fade-up{opacity:1 !important;transform:none !important}
}
