/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy: #1B2B4B;
  --navy-dark: #0F1A2E;
  --green: #2D5A3D;
  --green-light: #3A7A50;
  --gold: #8B7D3C;
  --gold-light: #C4A84A;
  --cream: #F5F2EC;
  --text: #2A2A2A;
  --text-light: #666;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; color: var(--text);
  background: var(--white); line-height: 1.6;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 99999;
  background: var(--gold); color: var(--white); padding: 12px 24px;
  font-size: 14px; font-weight: 700; border-radius: 0 0 8px 8px;
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===== NAV ===== */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 80px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none; letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 24px; background: var(--navy);
  color: var(--white) !important; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--green) !important; }

/* Mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s ease; }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 32px;
  flex-direction: column; gap: 0;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 18px; font-weight: 600; color: var(--navy);
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
}

body { padding-top: 80px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--green) 100%);
  padding: 100px 6% 80px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,125,60,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold-light); text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px; font-weight: 700; color: var(--white);
  line-height: 1.15; max-width: 800px; margin: 0 auto 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; background: var(--gold);
  color: var(--white); border-radius: 6px; border: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,125,60,0.3); }
.btn-outline {
  padding: 14px 32px; background: transparent;
  color: var(--white); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ===== SECTION COMMON ===== */
.section { padding: 80px 6%; }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 48px;
}
.section-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px; font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  font-size: 16px; color: var(--text-light); line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* ===== THE ISSUE ===== */
.issue-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1100px; margin: 0 auto;
}
.issue-card {
  padding: 32px; background: var(--white);
  border-radius: 12px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.issue-card-num {
  font-family: 'Playfair Display', serif; font-size: 36px;
  font-weight: 700; color: var(--gold); margin-bottom: 12px;
}
.issue-card h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.issue-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex; justify-content: center; gap: 64px;
  padding: 48px 6%; background: var(--navy);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--gold-light);
}
.stat-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

/* ===== TWO LANES ===== */
.lanes { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin: 0 auto; }
.lane {
  padding: 40px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}
.lane-icon { font-size: 32px; margin-bottom: 16px; }
.lane h3 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 700; color: var(--navy); margin-bottom: 12px;
}
.lane p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center; padding: 80px 6%;
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  color: var(--white);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px; color: rgba(255,255,255,0.75);
  max-width: 500px; margin: 0 auto 32px; line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.5);
  padding: 48px 6% 32px; text-align: center;
}
.footer-logo img { height: 18px; margin-bottom: 12px; opacity: 0.4; }
.footer-text { font-size: 13px; line-height: 1.8; max-width: 500px; margin: 0 auto 24px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .issue-grid { grid-template-columns: 1fr; max-width: 500px; }
  .lanes { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 60px 24px 48px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 48px 24px; }
  .section-title { font-size: 28px; }
  .stats-bar { gap: 32px; padding: 32px 24px; }
  .stat-num { font-size: 32px; }
  .footer { padding: 32px 24px 24px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
