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

:root {
  --cream: #FAF3E8;
  --sand: #E8D5C4;
  --terracotta: #C4622D;
  --terracotta-dark: #A3501F;
  --forest: #1A2E1A;
  --forest-light: #2A4A2A;
  --ink: #2C1810;
  --ink-muted: #6B5A52;
  --white: #FFFFFF;
  --serif: 'DM Serif Text', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* === NAVIGATION === */
.nav {
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* === HERO === */
.hero {
  padding: 80px 48px 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1.5px solid var(--terracotta);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 480px;
  font-weight: 300;
}

/* Hero art — abstract geometric pattern */
.hero-art {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-circle-1 {
  width: 380px;
  height: 380px;
  background: var(--terracotta);
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  opacity: 0.12;
}

.hero-circle-2 {
  width: 260px;
  height: 260px;
  background: var(--forest);
  top: 50%;
  left: 50%;
  transform: translate(-30%, -55%);
  opacity: 0.15;
}

.hero-circle-3 {
  width: 160px;
  height: 160px;
  background: var(--sand);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.5;
  border: 2px solid var(--terracotta);
}

.hero-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(26,46,26,0.3);
}

.badge-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
}

.badge-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
  opacity: 0.8;
}

.hero-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--sand) 60%, var(--cream) 100%);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--forest);
  padding: 80px 48px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--cream);
  font-style: italic;
  text-align: center;
}

/* === OUTCOMES === */
.outcomes {
  padding: 80px 48px;
  background: var(--cream);
}

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

.outcomes-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.outcome {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.outcome-divider {
  width: 1px;
  height: 80px;
  background: var(--sand);
  flex-shrink: 0;
}

.outcome-value {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-label {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 48px;
  background: var(--sand);
}

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

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--forest);
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26,46,26,0.15);
}

.step:first-child {
  border-top: 1px solid rgba(26,46,26,0.15);
}

.step-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--sand);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content {
  flex: 1;
  padding-top: 4px;
}

.step-title {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}

.how-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.how-note p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--cream);
}

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

.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--terracotta);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 1.125rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--forest);
  padding: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(250,243,232,0.6);
  font-weight: 300;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,243,232,0.4);
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-art {
    height: 300px;
  }

  .outcomes-grid {
    flex-direction: column;
    gap: 32px;
  }

  .outcome-divider {
    display: none;
  }

  .nav, .hero, .manifesto, .outcomes, .how, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2.25rem; }
  .step-number { font-size: 2rem; width: 56px; }
  .step { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}