/* ─── Tokens ─── */
:root {
  --cream:    #FAF8F5;
  --forest:   #2C5F2E;
  --forest-dark: #1E4620;
  --amber:    #E6A817;
  --stone:    #6B6560;
  --ink:      #1A1714;
  --border:   rgba(44,95,46,0.12);
  --card-bg:  #FFFFFF;
  --serif:    'Fraunces', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ─── */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 0.85rem;
  color: var(--stone);
}

/* ─── Hero ─── */
.hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__lede {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero__sub {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 20px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hero__cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__stat-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  position: relative;
}
.hero__stat-block--accent {
  background: var(--forest);
  border-color: var(--forest);
}
.hero__stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.hero__stat-block--accent .hero__stat-number { color: #FFFFFF; }
.hero__stat-label {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
}
.hero__stat-block--accent .hero__stat-label { color: rgba(255,255,255,0.75); }

/* ─── Proof strip ─── */
.proof {
  padding: 32px 0;
  background: var(--forest);
}
.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.proof__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.proof__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.proof__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
}
.proof__icon { color: var(--amber); flex-shrink: 0; }

/* ─── Services ─── */
.services {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services__inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.services__header { margin-bottom: 48px; }
.services__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.services__sub {
  font-size: 0.95rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.65;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.services__card:hover {
  box-shadow: 0 8px 32px rgba(44,95,46,0.08);
}
.services__card-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 16px;
}
.services__card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.services__card p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ─── Outcomes ─── */
.outcomes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.outcomes__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.outcomes__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 12px;
}
.outcomes__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.outcomes__body {
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: 28px;
  line-height: 1.65;
}
.outcomes__table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.outcomes__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 12px 16px;
  font-size: 0.88rem;
}
.outcomes__row + .outcomes__row { border-top: 1px solid var(--border); }
.outcomes__row--header {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
}
.outcomes__row:not(.outcomes__row--header) { background: var(--card-bg); }
.outcomes__quote-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
}
.outcomes__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 12px;
}
.outcomes__quote-attr {
  font-size: 0.82rem;
  color: var(--stone);
}
.outcomes__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.outcomes__tag {
  background: var(--forest);
  color: #fff;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-bottom: 20px;
}
.manifesto__body p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto__body p:last-child { margin-bottom: 0; }

/* ─── Closing ─── */
.closing {
  padding: 100px 0;
  text-align: center;
}
.closing__inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.closing__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.closing__sub {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 28px;
}
.closing__cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--forest);
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.closing__cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

/* ─── Footer ─── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
}
.footer__desc { font-size: 0.82rem; color: var(--stone); }
.footer__meta { font-size: 0.85rem; color: var(--stone); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .outcomes__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .proof__items { gap: 8px; }
  .hero { padding: 56px 0 48px; }
  .services, .outcomes, .manifesto { padding: 56px 0; }
  .closing { padding: 64px 0; }
}