:root {
  --green: #2d6a4f;
  --green-light: #52b788;
  --cream: #faf7f0;
  --warm: #e9c46a;
  --text: #1a1a1a;
  --muted: #6b7280;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

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

.hero-left::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: var(--green);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--warm);
}

.hero-tagline {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250,247,240,0.75);
  max-width: 380px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px;
  background: var(--cream);
  position: relative;
}

.hero-stat-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat {
  border-left: 2px solid var(--green-light);
  padding-left: 24px;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.stat:nth-child(1) { animation-delay: 0.4s; }
.stat:nth-child(2) { animation-delay: 0.6s; }
.stat:nth-child(3) { animation-delay: 0.8s; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250,247,240,0.5);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(250,247,240,0.3);
}

.mission {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 8px;
}

.mission-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--text);
}

.mission-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #3d3d3d;
  margin-bottom: 20px;
}

.mission-text p:last-child { margin-bottom: 0; }

.divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-light), transparent);
}

.how {
  padding: 120px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}

.how h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

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

.step {
  background: white;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step:hover { transform: translateY(-4px); }

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step:hover::before { transform: scaleX(1); }

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: var(--cream);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  -webkit-text-stroke: 1px #e5e5e5;
}

.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--green);
}

.step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.values {
  background: var(--green);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.values::before {
  content: 'COMMUNITY';
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-size: 200px;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.values h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--cream);
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-item {
  border-top: 1px solid rgba(82,183,136,0.4);
  padding-top: 32px;
}

.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.value-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--warm);
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,247,240,0.7);
}

.cta {
  padding: 140px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta h2 em {
  font-style: italic;
  color: var(--green);
}

.cta p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 48px;
}

.cta-number {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  padding: 20px 48px;
  letter-spacing: 0.05em;
}

.cta-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

footer {
  background: #111;
  color: rgba(255,255,255,0.4);
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

footer strong { color: rgba(255,255,255,0.7); font-weight: 400; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left { animation: fadeUp 0.8s 0.1s both; }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left::after { display: none; }
  .hero-right { padding: 60px 40px; }
  .hero-left { padding: 80px 40px; min-height: 60vh; }
  .mission, .how, .values { padding: 80px 40px; }
  .mission { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .how-header { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
