/* CauseOps — Forest green, cream, amber. Editorial mission-driven. */
:root {
  --bg: #faf8f5;
  --fg: #1a1a18;
  --accent: #1a4a3a;
  --amber: #e8a838;
  --muted: #6b6b63;
  --border: #e2e0d8;
  --surface: #ffffff;
}

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

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

h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 140px 40px 100px;
  background: var(--accent);
  color: #fff;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(42px, 6vw, 78px);
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 40px;
}
.stat { padding-right: 48px; }
.stat-number {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 40px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 300; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  margin-right: 48px;
}

/* MANIFESTO */
.manifesto { padding: 100px 40px; }
.manifesto-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 64px; align-items: start; }
.manifesto-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 10px;
}
.manifesto-headline {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--accent);
  margin-bottom: 32px;
  grid-column: 2;
}
.manifesto-body {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
  grid-column: 2;
  font-weight: 300;
}
.manifesto-pull {
  grid-column: 2;
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
}
.manifesto-pull p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
}
.pull-mark {
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

/* HOW */
.how { padding: 100px 40px; background: var(--surface); border-top: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.how-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--accent);
  margin-bottom: 72px;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.cap {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.cap:first-child { padding-left: 0; }
.cap:last-child { border-right: none; padding-right: 0; }
.cap-icon { color: var(--accent); margin-bottom: 20px; }
.cap h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.cap p { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* OUTCOMES */
.outcomes { padding: 100px 40px; background: var(--bg); border-top: 1px solid var(--border); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.outcome { }
.outcome-number {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.5; }

/* CLOSING */
.closing { padding: 100px 40px; background: var(--accent); color: #fff; }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  max-width: 760px;
  margin-bottom: 32px;
}
.closing-body { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 640px; font-weight: 300; line-height: 1.7; }

/* FOOTER */
.footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Instrument Serif', Georgia, serif; font-size: 18px; color: var(--accent); }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 6px; }
.footer-note { font-size: 13px; color: var(--muted); font-style: italic; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 72px; }
  .hero-stats { flex-direction: column; align-items: start; gap: 28px; }
  .stat-divider { display: none; }
  .manifesto-inner { display: block; }
  .manifesto-tag { margin-bottom: 16px; }
  .manifesto-headline, .manifesto-body, .manifesto-pull { grid-column: auto; }
  .manifesto-pull { margin-top: 24px; }
  .capabilities { grid-template-columns: 1fr; }
  .cap { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .cap:last-child { border-bottom: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .how { padding: 72px 24px; }
  .manifesto { padding: 72px 24px; }
  .outcomes { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
}