:root {
  --ink: #11211f;
  --ink-2: #243432;
  --paper: #f7f4ee;
  --paper-2: #ebe5d9;
  --white: #fffdf8;
  --green: #173f36;
  --green-2: #2f6657;
  --teal: #287b78;
  --clay: #b75a3d;
  --marigold: #d69a24;
  --line: rgba(17, 33, 31, 0.16);
  --dark-line: rgba(255, 253, 248, 0.18);
  --shadow: 0 18px 42px rgba(17, 33, 31, 0.15);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: rgba(17, 33, 31, 0.75);
  line-height: 1.7;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 32px;
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(17, 33, 31, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  right: 4px;
  bottom: 4px;
  border-radius: 12px 12px 12px 2px;
  background: var(--marigold);
}

.brand span:last-child {
  max-width: 180px;
  line-height: 1.12;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav a {
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(17, 33, 31, 0.74);
}

.nav a:hover,
.nav a.is-active {
  background: rgba(23, 63, 54, 0.08);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--green);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--green);
}

.button-outline {
  border-color: rgba(255, 253, 248, 0.62);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line);
  color: var(--green);
  background: transparent;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 72px 0;
  color: var(--white);
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 33, 31, 0.92), rgba(17, 33, 31, 0.54), rgba(17, 33, 31, 0.18));
  z-index: 1;
}

.page-hero img,
.page-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 30, 28, 0.94), rgba(13, 30, 28, 0.66), rgba(13, 30, 28, 0.18));
  z-index: 1;
}

.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 88px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--clay);
  letter-spacing: 0;
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  color: #f5c76a;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 4.65rem;
  max-width: 780px;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-content p,
.page-hero p {
  max-width: 650px;
  margin-top: 22px;
  font-size: 1.22rem;
  color: rgba(255, 253, 248, 0.84);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 30, 28, 0.84);
  border-top: 1px solid var(--dark-line);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-proof-grid div {
  padding: 21px 24px;
  border-right: 1px solid var(--dark-line);
}

.hero-proof-grid div:last-child {
  border-right: 0;
}

.hero-proof-grid strong {
  display: block;
  font-size: 1.25rem;
}

.hero-proof-grid span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.45;
}

.band {
  padding: 86px 0;
}

.band-tight {
  padding: 56px 0;
}

.band-dark {
  background: var(--green);
  color: var(--white);
}

.band-dark p {
  color: rgba(255, 253, 248, 0.76);
}

.band-paper {
  background: var(--paper);
}

.band-white {
  background: var(--white);
}

.band-muted {
  background: var(--paper-2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 17px;
  font-size: 1.06rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 390px;
  background: #d8d2c8;
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(17, 33, 31, 0.86);
  color: var(--white);
  line-height: 1.45;
  font-size: 0.92rem;
}

.program-grid,
.team-grid,
.resource-grid,
.metric-grid,
.partner-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.program-card,
.team-card,
.resource-card,
.metric-card,
.partner-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.band-dark .card,
.band-dark .program-card,
.band-dark .metric-card,
.band-dark .value-card {
  background: rgba(255, 253, 248, 0.07);
  border-color: var(--dark-line);
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.program-card-media {
  height: 168px;
  background: var(--green);
  overflow: hidden;
}

.program-card-media img,
.program-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card-body,
.resource-card,
.metric-card,
.partner-card,
.value-card {
  padding: 24px;
}

.program-card-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

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

.focus-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.focus-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green);
}

.focus-card-media img,
.focus-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 13px;
  padding: 24px;
}

.focus-card-body p {
  margin: 0;
}

.focus-card-body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(183, 90, 61, 0.12);
  color: var(--clay);
  font-weight: 900;
  font-size: 0.78rem;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.focus-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(40, 123, 120, 0.1);
  color: var(--green-2);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.field-story {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 42px;
  align-items: center;
}

.field-story-copy p + p {
  margin-top: 14px;
}

.story-collage {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.story-card {
  position: relative;
  min-height: 214px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--green);
  box-shadow: var(--shadow);
}

.story-card.large {
  min-height: 448px;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.story-card.portrait img {
  object-position: center top;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 33, 31, 0), rgba(17, 33, 31, 0.72));
}

.story-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 13px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.story-stack {
  display: grid;
  gap: 14px;
}

.consent-note {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 6px;
  background: rgba(183, 90, 61, 0.1);
  color: rgba(17, 33, 31, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.program-card-body p,
.team-card p,
.resource-card p,
.metric-card p,
.partner-card p,
.value-card p {
  margin-top: 10px;
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
  color: rgba(17, 33, 31, 0.76);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.band-dark .mini-list li {
  color: rgba(255, 253, 248, 0.76);
}

.band-dark .mini-list li::before {
  background: var(--marigold);
}

.team-card {
  padding: 12px;
}

.team-photo {
  aspect-ratio: 1 / 1.08;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo.contain img {
  object-fit: contain;
  background: linear-gradient(180deg, #e8e1d5, #f7f4ee);
}

.team-card h3 {
  margin-top: 18px;
}

.team-card p {
  font-weight: 800;
  color: var(--green-2);
  line-height: 1.35;
}

.team-card small {
  display: block;
  margin-top: 12px;
  color: rgba(17, 33, 31, 0.68);
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.band-dark .process {
  background: rgba(255, 253, 248, 0.07);
  border-color: var(--dark-line);
}

.process-step {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.band-dark .process-step {
  border-color: var(--dark-line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span,
.metric-card span,
.resource-card span,
.partner-card span,
.value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(183, 90, 61, 0.12);
  color: var(--clay);
  font-weight: 900;
  font-size: 0.78rem;
}

.process-step h3 {
  margin-top: 26px;
}

.band-dark .process-step h3 {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature-row strong {
  font-size: 1.05rem;
}

.quote-band {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0;
}

.quote-band blockquote {
  margin: 0;
  max-width: 980px;
  font-size: 2.2rem;
  line-height: 1.22;
  font-weight: 800;
}

.quote-band p {
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.72);
}

.stats-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.stats-wall-main {
  padding: 34px;
  background: var(--green);
  color: var(--white);
}

.stats-wall-main p {
  color: rgba(255, 253, 248, 0.78);
}

.stats-wall-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats-wall-side div {
  padding: 28px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-wall-side div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stats-wall strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.article-row span {
  color: var(--clay);
  font-weight: 900;
  font-size: 0.84rem;
}

.article-row p {
  margin-top: 6px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(17, 33, 31, 0.76);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(40, 123, 120, 0.34);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.92rem;
  color: rgba(17, 33, 31, 0.62);
}

.cta-panel {
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-panel p {
  color: rgba(255, 253, 248, 0.76);
  margin-top: 12px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0 28px;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 253, 248, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 30px;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.source-list {
  display: grid;
  gap: 12px;
}

.source-list a {
  color: var(--teal);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .site-header {
    padding: 0 20px;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    grid-template-columns: 1fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-proof {
    position: relative;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-content {
    padding: 76px 0 52px;
  }

  .hero-proof-grid,
  .program-grid,
  .focus-grid,
  .resource-grid,
  .metric-grid,
  .partner-grid,
  .value-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split-reverse,
  .field-story,
  .stats-wall {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 30px));
  }

  .site-header {
    min-height: 68px;
  }

  .brand span:last-child {
    max-width: 145px;
    font-size: 0.95rem;
  }

  .page-hero {
    min-height: 390px;
    padding: 56px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content p,
  .page-hero p {
    font-size: 1.04rem;
  }

  .hero-proof-grid,
  .program-grid,
  .focus-grid,
  .resource-grid,
  .metric-grid,
  .partner-grid,
  .value-grid,
  .team-grid,
  .process,
  .form-grid,
  .stats-wall-side {
    grid-template-columns: 1fr;
  }

  .story-collage {
    grid-template-columns: 1fr;
  }

  .story-card.large,
  .story-card {
    min-height: 270px;
  }

  .hero-proof-grid div,
  .process-step,
  .stats-wall-side div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof-grid div:last-child,
  .process-step:last-child,
  .stats-wall-side div:last-child {
    border-bottom: 0;
  }

  .band {
    padding: 62px 0;
  }

  .media-frame {
    min-height: 300px;
  }

  .feature-row,
  .article-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-band blockquote {
    font-size: 1.55rem;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}
