:root {
  --cream: #FAF7F0;
  --cream-dark: #F0EBE0;
  --forest: #2D5016;
  --forest-light: #3D6B1E;
  --amber: #C8943A;
  --amber-light: #E0AC52;
  --charcoal: #1A1A1A;
  --warm-gray: #6B6358;
  --border: rgba(45, 80, 22, 0.15);
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  padding: 80px 48px 96px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 480px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.body-diagram {
  width: 100%;
  max-width: 240px;
}

.body-diagram svg {
  width: 100%;
  height: auto;
}

.stat-row {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: center;
  line-height: 1.4;
}

/* ── EVIDENCE ──────────────────────────────── */
.evidence {
  background: var(--forest);
  padding: 80px 48px;
}

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

.evidence-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-main {
  margin-bottom: 36px;
}

.testimonial-main p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

.cred-line {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 20px;
}

.cred-text {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.5);
}

/* ── PHILOSOPHY ────────────────────────────── */
.philosophy {
  padding: 96px 48px;
  background: var(--cream);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  font-style: italic;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-heading.centered {
  text-align: center;
  margin-bottom: 56px;
}

.philosophy-body {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.three-pillars {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 100%;
  height: auto;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── MECHANICS ─────────────────────────────── */
.mechanics {
  padding: 96px 48px;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 280px;
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.step-connector svg {
  width: 100%;
  height: 80px;
}

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

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

.outcomes-header {
  margin-bottom: 56px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.outcome-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--cream-dark);
}

.outcome-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

.outcomes-quote {
  background: var(--forest);
  padding: 48px 56px;
  text-align: center;
}

.outcomes-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 16px;
}

.quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
}

/* ── CLOSING ───────────────────────────────── */
.closing {
  padding: 96px 48px;
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.chain-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.chain-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.chain-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  max-width: 240px;
}

.chain-numbers span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.chain-caption {
  font-size: 0.75rem;
  color: var(--warm-gray);
  text-align: center;
  font-style: italic;
}

.closing-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.85;
  max-width: 540px;
}

/* ── FOOTER ────────────────────────────────── */
.site-footer {
  padding: 48px;
  background: var(--charcoal);
}

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

.footer-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(250, 247, 240, 0.4);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(250, 247, 240, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-copy {
  width: 100%;
  font-size: 0.7rem;
  color: rgba(250, 247, 240, 0.3);
  margin-top: 8px;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .philosophy-inner,
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chain-display {
    order: -1;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step-connector {
    display: none;
  }

  .stat-row {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero { padding: 56px 24px 72px; }
  .evidence { padding: 56px 24px; }
  .philosophy { padding: 64px 24px; }
  .mechanics { padding: 64px 24px; }
  .outcomes { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .site-footer { padding: 32px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
