/* ===== BASE ===== */
:root {
  --cream: #F8F4ED;
  --cream-dark: #F0EAE0;
  --green-dark: #1A3D2E;
  --green: #2D5A4A;
  --green-light: #3A7A5E;
  --green-pale: #C8DFCC;
  --green-bg: #E8F0EC;
  --amber: #E89B4A;
  --amber-light: #F5D9A8;
  --terracotta: #C17C5A;
  --text: #1A2A22;
  --text-mid: #4A5E54;
  --text-light: #7A9A8E;
}

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

html { scroll-behavior: smooth; }

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

/* grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 90, 74, 0.08);
}

.nav-inner { display: flex; align-items: baseline; gap: 12px; }

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.02em;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--green);
  color: var(--cream);
  border-radius: 24px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 48px 120px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
}

.hero-shape-1 {
  width: 480px;
  height: 480px;
  right: -80px;
  top: -60px;
  animation: float1 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 280px;
  height: 280px;
  right: 120px;
  top: 180px;
  animation: float2 11s ease-in-out infinite;
}

.hero-shape-3 {
  width: 320px;
  height: 200px;
  left: -60px;
  bottom: 80px;
  animation: float1 9s ease-in-out infinite reverse;
}

.hero-leaf {
  position: absolute;
}

.hero-leaf-1 {
  width: 60px;
  height: 100px;
  right: 380px;
  top: 60px;
  animation: sway 6s ease-in-out infinite;
}

.hero-leaf-2 {
  width: 50px;
  height: 80px;
  right: 240px;
  top: 220px;
  animation: sway 8s ease-in-out infinite reverse;
}

.hero-plant {
  position: absolute;
  width: 80px;
  height: 200px;
  left: 80px;
  bottom: 60px;
  animation: sway 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(14px) rotate(-1.5deg); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-left: 48px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}

.pillar-icon {
  display: flex;
  align-items: center;
  color: var(--green);
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 48px;
  background: var(--cream-dark);
}

.hiw-header {
  margin-bottom: 72px;
  max-width: 600px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(45, 90, 74, 0.12);
}

.hiw-step {
  padding: 48px 40px;
  border-right: 1px solid rgba(45, 90, 74, 0.08);
  border-bottom: 1px solid rgba(45, 90, 74, 0.08);
}

.hiw-step:nth-child(2n) { border-right: none; }
.hiw-step:nth-child(3) { border-bottom: none; }
.hiw-step:nth-child(4) { border-bottom: none; }

.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.step-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

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

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

.feature-card {
  background: var(--cream-dark);
  border: 1px solid rgba(45, 90, 74, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.08);
}

.feature-card-large {
  grid-column: span 2;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 48px;
  background: var(--green-dark);
}

.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.outcomes-quote {
  margin-bottom: 72px;
}

.outcomes-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.outcomes-quote cite {
  font-size: 0.875rem;
  color: var(--green-pale);
  font-style: normal;
  letter-spacing: 0.05em;
}

.outcomes-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 64px;
  border-top: 1px solid rgba(248, 244, 237, 0.12);
}

.stat {}

.stat-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.65);
  line-height: 1.5;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 48px 120px;
  background: var(--cream);
}

.manifesto-content {
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.manifesto-closing {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  color: var(--green);
  font-style: italic;
  font-weight: 400;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(45, 90, 74, 0.12);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  padding: 72px 48px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248, 244, 237, 0.1);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.5);
  line-height: 1.65;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {}

.footer-col-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.4);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--cream); }

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(248, 244, 237, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 72px 24px 80px; }
  .hero-content { padding-left: 0; }
  .hero-headline { font-size: 2.2rem; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
  .outcomes-stats { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
  .manifesto, .howitworks, .features, .outcomes { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero-pillars { flex-direction: column; gap: 12px; }
}
