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

:root {
  --green-deep:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --cream:        #FDFAF5;
  --cream-dark:   #F0EBE1;
  --amber:        #C8963E;
  --amber-light:  #E8C07A;
  --amber-dark:   #A07628;
  --charcoal:     #1A1A1A;
  --muted:        #6B6B6B;
  --stripe-dark:  #1A5430;
  --stripe-light: #2D7A4E;
}

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

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

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero-left {
  background: var(--green-deep);
  padding: 72px 64px 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}

.eyebrow-dash {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber);
}

.hero-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-lede {
  font-size: 18px;
  color: rgba(253, 250, 245, 0.72);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.3);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-light);
  width: fit-content;
}

.badge-icon {
  font-size: 10px;
  color: var(--amber);
}

/* Hero right — lawn stripes */
.hero-right {
  position: relative;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.lawn-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.stripe {
  flex: 1;
  transition: filter 0.3s;
}

.s1  { background: #1E5430; }
.s2  { background: #2A6840; }
.s3  { background: #1E5430; }
.s4  { background: #2A6840; }
.s5  { background: #1E5430; }
.s6  { background: #2A6840; }
.s7  { background: #1E5430; }
.s8  { background: #2A6840; }
.s9  { background: #1E5430; }
.s10 { background: #2A6840; }

.hero-stat-cluster {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(27, 67, 50, 0.95);
  border-top: 1px solid rgba(200, 150, 62, 0.3);
}

.stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(200, 150, 62, 0.2);
}

.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.55);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--green-mid);
  padding: 80px 72px;
}

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

.manifesto-text {
  font-size: 22px;
  line-height: 1.7;
  color: var(--cream);
  font-weight: 400;
}

.manifesto-text strong {
  color: var(--amber-light);
}

/* === FEATURES === */
.features {
  background: var(--cream);
  padding: 100px 72px;
}

.features-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  max-width: 560px;
  letter-spacing: -0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}

.feature-card {
  background: var(--cream);
  padding: 48px 40px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fff;
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

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

.outcomes-inner {
  max-width: 820px;
}

.outcome-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
}

.outcome-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.outcome-text {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.65;
}

.outcome-divider {
  height: 1px;
  background: rgba(27, 67, 50, 0.12);
}

/* === CLOSING === */
.closing {
  background: var(--green-deep);
  padding: 120px 72px;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}

.closing-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 18px;
  color: rgba(253, 250, 245, 0.6);
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  padding: 32px 72px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-tag {
  font-size: 13px;
  color: rgba(253, 250, 245, 0.4);
}

.footer-note {
  font-size: 13px;
  color: rgba(253, 250, 245, 0.3);
}

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

  .hero-right {
    min-height: 320px;
    order: -1;
  }

  .hero-left {
    padding: 56px 32px;
  }

  .manifesto {
    padding: 60px 32px;
  }

  .manifesto-text {
    font-size: 18px;
  }

  .features {
    padding: 60px 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .outcomes {
    padding: 60px 32px;
  }

  .outcome-row {
    grid-template-columns: 72px 1fr;
    gap: 24px;
  }

  .outcome-number {
    font-size: 36px;
  }

  .closing {
    padding: 80px 32px;
  }

  .footer {
    padding: 24px 32px;
  }

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 40px;
  }

  .hero-stat-cluster {
    flex-direction: column;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(200, 150, 62, 0.2);
  }

  .stat:last-child {
    border-bottom: none;
  }
}