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

:root {
  --navy: #0d1f2d;
  --navy-mid: #162a3a;
  --navy-light: #1e3a50;
  --gold: #c9952a;
  --gold-light: #e0b44a;
  --gold-dim: #9a7020;
  --cream: #f7f4ef;
  --cream-mid: #ede9e1;
  --cream-dark: #e2ddd3;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #8a8a8a;
  --white: #ffffff;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.header-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-geo {
  position: relative;
}

.hero-geo--left {
  background: var(--navy);
  /* Subtle geometric: diagonal rule */
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(201, 149, 42, 0.04) 60px,
      rgba(201, 149, 42, 0.04) 61px
    );
}

.hero-geo--right {
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 4rem 3rem 4rem 5rem;
  position: relative;
}

.hero-geo--right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,149,42,0.25), transparent);
}

.geo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,149,42,0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.geo-card--1 { transform: translateX(20px); opacity: 0.7; }
.geo-card--2 { transform: translateX(0px); opacity: 0.85; }
.geo-card--3 { transform: translateX(-20px); opacity: 1; }

.geo-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.geo-value {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 5rem 5rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(247,244,239,0.65);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* === PROOF === */
.proof {
  background: var(--cream);
  padding: 7rem 2rem;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.proof-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.proof-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.steps {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  align-items: start;
  gap: 0;
}

.step {
  padding: 0 2.5rem 0 0;
}

.step-divider {
  width: 1px;
  background: linear-gradient(to bottom, var(--cream-dark), transparent);
  align-self: stretch;
  margin: 0 1rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.proof-note {
  margin-top: 3rem;
  padding: 1.25rem 1.75rem;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  max-width: 560px;
}

/* === OPPORTUNITY === */
.opportunity {
  background: var(--navy);
  padding: 7rem 2rem;
}

.opportunity-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.opp-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,149,42,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.opp-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 3rem;
}

.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(201,149,42,0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.opp-stat {
  padding: 2.5rem 2rem;
  text-align: center;
}

.opp-divider {
  width: 1px;
  background: rgba(201,149,42,0.12);
}

.opp-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.opp-label {
  font-size: 0.8rem;
  color: rgba(247,244,239,0.5);
  line-height: 1.5;
}

.opp-body {
  font-size: 1.05rem;
  color: rgba(247,244,239,0.65);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--cream);
  padding: 7rem 2rem;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
}

.outcome {
  padding: 2.5rem 2.5rem;
  border-bottom: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
}

.outcome:nth-child(2) { border-right: none; }
.outcome:nth-child(3) { border-bottom: none; }
.outcome:nth-child(4) { border-bottom: none; border-right: none; }

.outcome-icon {
  margin-bottom: 1rem;
}

.outcome-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}

.outcome-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  background: var(--cream-mid);
  padding: 7rem 2rem;
  border-top: 1px solid var(--cream-dark);
}

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

.closing-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.closing-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.closing-stat {
  background: var(--navy);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.closing-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  flex-shrink: 0;
  line-height: 1;
}

.closing-stat-desc {
  font-size: 1rem;
  color: rgba(247,244,239,0.65);
  line-height: 1.6;
}

.closing-closing {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  opacity: 0.7;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  padding: 4rem 2rem 2rem;
}

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

.footer-top {
  margin-bottom: 2.5rem;
}

.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.4);
}

.footer-rule {
  height: 1px;
  background: rgba(201,149,42,0.1);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(247,244,239,0.3);
  letter-spacing: 0.02em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-bg-grid { grid-template-columns: 1fr; }
  .hero-geo--right { display: none; }
  .hero-content { padding: 4rem 2rem; max-width: 100%; }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-divider { display: none; }
  .step { padding: 0; }

  .opp-grid {
    grid-template-columns: 1fr;
  }
  .opp-divider { display: none; }
  .opp-stat {
    border-bottom: 1px solid rgba(201,149,42,0.12);
  }
  .opp-stat:last-child { border-bottom: none; }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .outcome {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }
  .outcome:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  .hero { min-height: 75vh; }
  .closing-stat { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}