:root {
  --bg: #F5F2EB;
  --bg-alt: #EDE9DF;
  --fg: #1B2E1C;
  --fg-light: #3D5A3A;
  --accent: #D4A853;
  --accent-dark: #B8912E;
  --green-deep: #1B4332;
  --green-mid: #2D5A3D;
  --green-light: #3D7A52;
  --cream: #F5F2EB;
}

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

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

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(27,67,50,0.08), transparent);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  max-width: 600px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-deep);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-light);
  max-width: 440px;
  font-weight: 400;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #E8E4D8 0%, #D8D3C4 100%);
  position: relative;
}

.hero-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.hero-art svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(27,67,50,0.15));
}

/* MISSION */
.mission {
  padding: 120px 80px;
  background: var(--green-deep);
  color: #fff;
}

.mission-inner {
  max-width: 780px;
  margin: 0 auto;
}

.mission-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #E8E4D8;
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.mission-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232,228,216,0.75);
  padding-left: 31px;
}

/* REGIONS */
.regions {
  padding: 100px 80px;
  background: var(--cream);
}

.regions-header {
  max-width: 620px;
  margin-bottom: 64px;
}

.regions-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.regions-sub {
  font-size: 16px;
  color: var(--fg-light);
  line-height: 1.7;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.region-card {
  background: #fff;
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,67,50,0.1);
}

.region-icon {
  width: 48px;
  height: 48px;
  background: rgba(61,122,82,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.region-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.region-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-light);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 80px;
  background: var(--bg-alt);
}

.hiw-inner {}

.hiw-header {
  margin-bottom: 60px;
}

.hiw-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 16px;
}

.hiw-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--green-deep);
  max-width: 560px;
  line-height: 1.2;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.hiw-step {}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(27,67,50,0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-light);
}

/* PARTNERS */
.partners {
  padding: 100px 80px;
  background: var(--cream);
}

.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partners-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 20px;
}

.partners-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.partners-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-light);
  margin-bottom: 40px;
}

.partnership-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-light);
  margin-top: 6px;
}

.partner-logos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partner-logo-item {
  background: #fff;
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.partner-logo-item svg {
  width: 100%;
}

/* CLOSING */
.closing {
  padding: 120px 80px;
  background: var(--green-deep);
  color: #fff;
}

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #E8E4D8;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(232,228,216,0.7);
  margin-bottom: 72px;
}

.closing-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.cstat {
  flex: 1;
  padding: 0 40px 0 0;
}

.cstat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.cstat-label {
  font-size: 13px;
  color: rgba(232,228,216,0.6);
  line-height: 1.5;
}

.cstat-divider {
  width: 1px;
  background: rgba(232,228,216,0.15);
  align-self: stretch;
  margin: 0 40px;
}

/* FOOTER */
.footer {
  padding: 40px 80px;
  background: var(--green-deep);
  border-top: 1px solid rgba(232,228,216,0.1);
}

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

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #E8E4D8;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(232,228,216,0.5);
}

.footer-meta {
  font-size: 12px;
  color: rgba(232,228,216,0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 80px 40px 40px;
    max-width: 100%;
  }
  .hero-right {
    min-height: 320px;
  }
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .partners-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .closing-stats {
    flex-direction: column;
    gap: 40px;
  }
  .cstat-divider { display: none; }
  .cstat { padding: 0; }
}

@media (max-width: 640px) {
  .mission, .regions, .how-it-works, .partners, .closing {
    padding: 80px 24px;
  }
  .footer {
    padding: 32px 24px;
  }
  .regions-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}