:root {
  --ink: #17312d;
  --muted: #5c6c67;
  --paper: #fbfaf6;
  --soft: #eef3ec;
  --mint: #dfeadf;
  --green: #28624f;
  --green-dark: #173f36;
  --gold: #d89d43;
  --clay: #ad6043;
  --white: #ffffff;
  --line: rgba(23, 49, 45, 0.14);
  --shadow: 0 18px 50px rgba(23, 49, 45, 0.16);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.header-cta,
.donate-card {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.7) 49%),
    linear-gradient(135deg, var(--green), var(--gold));
}

.nav-links {
  gap: 28px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.header-cta {
  justify-self: end;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(40, 98, 79, 0.18);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.87) 30%, rgba(251, 250, 246, 0.26) 62%, rgba(251, 250, 246, 0.08) 100%),
    linear-gradient(0deg, rgba(23, 49, 45, 0.14), rgba(23, 49, 45, 0.04));
}

.hero-content {
  width: min(610px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 58px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 30px;
  color: #31423e;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-form button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary,
.contact-form button {
  background: var(--green);
  color: var(--white);
}

.button-secondary,
.donate-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 49, 45, 0.18);
  color: var(--green-dark);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.intro-band {
  position: relative;
  z-index: 2;
  padding: 28px 0 78px;
  background: var(--paper);
}

.path-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -68px;
}

.path-card,
.program-grid article,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.path-card {
  min-height: 214px;
  padding: 28px;
}

.path-icon {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, var(--paper) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--green), var(--gold));
}

.path-icon.support {
  background:
    radial-gradient(circle at 50% 50%, var(--paper) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--clay), var(--gold));
}

.path-icon.partner {
  background:
    linear-gradient(90deg, transparent 45%, var(--paper) 46% 55%, transparent 56%),
    linear-gradient(135deg, var(--green-dark), var(--green));
}

.path-card h2,
.program-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.path-card p,
.program-grid p,
.mission p,
.split-cta p,
.contact-layout p {
  color: var(--muted);
  line-height: 1.65;
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: 44px 0 96px;
}

.mission h2,
.section-heading h2,
.split-cta h2,
.contact-layout h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.mission-copy p:last-child {
  max-width: 680px;
  font-size: 1.08rem;
}

.impact-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.impact-panel div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-panel div:last-child {
  border-bottom: 0;
}

.impact-panel strong {
  color: var(--gold);
  font-size: 1.8rem;
}

.impact-panel span {
  font-weight: 800;
}

.program-band {
  padding: 92px 0;
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.program-grid article {
  min-height: 210px;
  padding: 30px;
  box-shadow: none;
}

.program-grid article:first-child {
  border-top: 6px solid var(--gold);
}

.program-grid article:nth-child(2) {
  border-top: 6px solid var(--green);
}

.program-grid article:nth-child(3) {
  border-top: 6px solid var(--clay);
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding: 98px 0;
}

.split-cta p {
  font-size: 1.1rem;
}

.donate-band {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(216, 157, 67, 0.2), rgba(40, 98, 79, 0.1)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
}

.donate-layout h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.donate-layout p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.donate-card {
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.donate-card span {
  color: #dce8dd;
  font-weight: 750;
}

.donate-card strong {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-band {
  padding: 86px 0;
  background: var(--green-dark);
  color: var(--white);
}

.contact-band .eyebrow,
.contact-band p {
  color: #dce8dd;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 8vw, 100px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.93) 38%, rgba(251, 250, 246, 0.28) 76%, rgba(251, 250, 246, 0.04) 100%),
      linear-gradient(90deg, rgba(23, 49, 45, 0.1), rgba(23, 49, 45, 0.04));
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    margin: 0 auto;
    padding-bottom: 44px;
  }

  h1 {
    max-width: 9ch;
  }

  .path-grid,
  .mission,
  .section-heading,
  .program-grid,
  .split-cta,
  .donate-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .path-grid {
    margin-top: -34px;
  }

  .mission,
  .split-cta {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 11px 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-image {
    object-position: 66% top;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 3.08rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .path-card,
  .program-grid article,
  .contact-form {
    padding: 22px;
  }

  .mission h2,
  .section-heading h2,
  .split-cta h2,
  .contact-layout h2 {
    font-size: 2.2rem;
  }

  .program-band,
  .donate-band,
  .contact-band {
    padding: 64px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
