:root {
  --bg: #FAF7F2;
  --fg: #1a1a1a;
  --green: #1B4332;
  --amber: #C8973E;
  --cream: #F5EFE6;
  --muted: #6B6B6B;
  --border: #E2D9CC;
  --white: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
}

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

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  padding: 80px 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  background: var(--bg);
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.badge-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* IMPACT */
.impact {
  background: var(--cream);
  padding: 80px 48px;
}
.impact-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 48px;
}
.section-heading.light { color: var(--bg); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.impact-item {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.impact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.impact-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.impact-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* JOURNEY */
.journey {
  background: var(--green);
  padding: 80px 48px;
}
.journey-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.journey-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-top: 48px;
  flex-shrink: 0;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14px;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
}

/* PROMISE */
.promise {
  padding: 80px 48px;
  background: var(--bg);
}
.promise-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.promise-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 40px;
}
.promise-values {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.value-pill {
  padding: 8px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--cream);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
}
.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .hero-right { display: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .journey-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 12px 0; margin: 0 auto; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
  .nav { padding: 16px 24px; }
}
@media (max-width: 480px) {
  .impact, .journey, .promise, .closing { padding: 48px 24px; }
  .impact-item, .step { padding: 20px; }
}