:root {
  --bg: #f7f4ee;
  --fg: #1a1a18;
  --accent: #2d5a27;
  --accent-light: #3d7a37;
  --gold: #c4932a;
  --muted: #6b6b60;
  --border: #d8d4c8;
  --surface: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Hero */
.hero {
  padding: 6rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 50%, rgba(45, 90, 39, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(196, 147, 42, 0.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 14em;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-rule {
  width: 4rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding-right: 3rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 14ch;
}
.stat-divider {
  width: 1px;
  height: 3.5rem;
  background: var(--border);
  margin-right: 3rem;
  flex-shrink: 0;
}

/* Mission */
.mission {
  padding: 6rem 2.5rem;
  background: var(--fg);
  color: var(--bg);
}
.mission-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.mission-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.mission-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 20em;
}
.mission-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(247, 244, 238, 0.7);
  max-width: 58ch;
}

/* Approach */
.approach {
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.approach-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.approach-step {}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.step-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Scoring */
.scoring {
  padding: 6rem 2.5rem;
  background: var(--surface);
}
.scoring-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.scoring-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.scoring-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.15;
}
.scoring-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.scoring-col p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1rem;
}
.scoring-facts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
}
.fact {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.fact-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 0.2rem;
}

/* Method */
.method {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.method-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.method-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.method-quote-block {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--gold);
}
.method-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.method-attr {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.method-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 60ch;
}
.method-body p + p {
  margin-top: 1rem;
}

/* Closing */
.closing {
  padding: 7rem 2.5rem;
  background: var(--fg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 2rem;
  max-width: 22em;
}
.closing-body {
  font-size: 1rem;
  color: rgba(247, 244, 238, 0.6);
  max-width: 56ch;
  line-height: 1.75;
}

/* Footer */
.footer {
  padding: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--fg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 0.25rem;
}
.footer-sub {
  font-size: 0.8rem;
  color: rgba(247, 244, 238, 0.4);
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(247, 244, 238, 0.35);
}
.footer-link {
  color: rgba(247, 244, 238, 0.5);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .mission, .approach, .scoring, .method, .closing { padding: 4rem 1.5rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .scoring-body-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .scoring-facts { padding-left: 1.5rem; }
}