:root {
  --bg: #FAF7F2;
  --fg: #1A1A18;
  --green: #2C4A3E;
  --terracotta: #C4622D;
  --sand: #E8DDD0;
  --muted: #7A7469;
  --white: #FFFFFF;
}

* { 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;
}

h1, h2, h3, blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Nav */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 32px 48px;
  border-bottom: 1px solid var(--sand);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 96px;
  align-items: center;
}
.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--green);
  margin-bottom: 24px;
}
.hero-body {
  color: var(--muted);
  font-size: 17px;
  max-width: 440px;
}

/* Hero graphic — pergola/deck abstraction */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-graphic {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.bar {
  position: absolute;
  border-radius: 2px;
}
.bar-1 { width: 60%; height: 8px; top: 20%; left: 10%; background: var(--green); opacity: 0.15; }
.bar-2 { width: 40%; height: 6px; top: 32%; left: 10%; background: var(--green); opacity: 0.1; }
.bar-3 { width: 55%; height: 8px; top: 44%; left: 10%; background: var(--green); opacity: 0.12; }
.bar-4 { width: 30%; height: 6px; top: 56%; left: 10%; background: var(--green); opacity: 0.08; }
.louver-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
  z-index: 2;
}
.louver {
  width: 32px;
  height: 28px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
  transform-origin: bottom center;
  animation: louver-anim 3s ease-in-out infinite;
}
.louver:nth-child(1) { animation-delay: 0s; }
.louver:nth-child(2) { animation-delay: 0.15s; }
.louver:nth-child(3) { animation-delay: 0.3s; }
.louver:nth-child(4) { animation-delay: 0.45s; }
.louver:nth-child(5) { animation-delay: 0.6s; }
.louver:nth-child(6) { animation-delay: 0.75s; }
@keyframes louver-anim {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
}
.post {
  width: 8px;
  height: 36px;
  background: var(--green);
  border-radius: 2px;
  position: absolute;
  bottom: 12px;
}
.post:first-of-type { left: 20%; }
.post:last-of-type { right: 20%; }
.deck-line {
  width: 90%;
  height: 6px;
  background: var(--terracotta);
  border-radius: 2px;
  position: absolute;
  bottom: 12px;
  left: 5%;
}
.hero-caption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.feature-mark {
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 19px;
  color: var(--green);
  margin-bottom: 10px;
}
.feature p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--green);
  text-align: center;
}
.manifesto blockquote {
  font-size: clamp(20px, 2.8vw, 30px);
  color: var(--bg);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.4;
}
.manifesto-body {
  font-size: 16px;
  color: var(--sand);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  background: var(--sand);
}
.outcomes-headline {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.outcome-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 96px 48px;
  text-align: center;
  background: var(--bg);
}
.closing h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--green);
  margin-bottom: 16px;
}
.closing p {
  font-size: 18px;
  color: var(--muted);
}

/* Footer */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--sand);
  background: var(--white);
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-note {
  font-size: 12px;
  color: var(--sand);
  color: #B0A89C;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 24px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .features {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px;
  }
  .manifesto { padding: 64px 24px; }
  .outcomes { padding: 48px 24px; }
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .closing { padding: 64px 24px; }
  footer { padding: 32px 24px; }
}