:root {
  --ink: #19211e;
  --muted: #59645f;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --line: #dfe6dc;
  --green: #2f6b4f;
  --green-deep: #173d2e;
  --gold: #f2bd3a;
  --coral: #d96a4d;
  --blue: #486c8f;
  --shadow: 0 18px 50px rgba(25, 33, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 251, 247, 0.96);
  box-shadow: 0 8px 30px rgba(25, 33, 30, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.brand-name {
  max-width: 190px;
  color: currentColor;
  font-size: 0.98rem;
  line-height: 1.05;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 30px);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:not(.nav-donate) {
  opacity: 0.9;
}

.nav-donate,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-donate {
  color: var(--ink);
  background: var(--gold);
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle svg,
.program-card svg,
.contact-actions svg,
.credential-card svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 24, 18, 0.82) 0%, rgba(11, 24, 18, 0.56) 44%, rgba(11, 24, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 24, 18, 0.42), rgba(11, 24, 18, 0.04) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(48px, 9vh, 96px) clamp(20px, 5vw, 64px);
  color: #fff;
}

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

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.split,
.story,
.impact,
.donate,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mission-copy {
  display: grid;
  gap: 18px;
}

.story {
  align-items: center;
  background: #f5f1e8;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-note {
  padding: clamp(28px, 4vw, 42px);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.story-note span {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-note p {
  color: var(--green-deep);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.work-band {
  background: var(--green-deep);
  color: #fff;
}

.work-band .section-kicker,
.work-band .section p,
.team-band .section-kicker {
  color: #f7d677;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 36px;
}

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

.program-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.program-card svg {
  color: var(--gold);
}

.program-card h3,
.management-card h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
}

.program-card p,
.team-band p {
  color: rgba(255, 255, 255, 0.78);
}

.impact {
  background: #eef4eb;
}

.impact-panel {
  position: sticky;
  top: 108px;
}

.impact-panel p:last-child {
  margin-top: 22px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step span {
  color: var(--coral);
  font-size: 1.7rem;
  font-weight: 900;
}

.team-band {
  background: var(--blue);
  color: #fff;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
}

.management-card,
.board-panel {
  display: grid;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.management-card {
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.role-label {
  margin: 0;
  color: #f7d677;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.board-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
}

.avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

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

.governance .section-heading p {
  max-width: 760px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credential-card {
  min-height: 315px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 33, 30, 0.07);
}

.credential-card svg {
  color: var(--green);
}

.credential-card h3,
.governance-details h3 {
  margin: 18px 0 8px;
  font-size: 1.22rem;
}

.credential-card p,
.governance-details p {
  color: var(--muted);
}

.credential-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.credential-card dl div {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.credential-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-card dd {
  margin: 0;
  color: var(--green-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.governance-details {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 16px;
  margin-top: 16px;
}

.governance-details article {
  padding: 26px;
  border-radius: 8px;
  background: #eef4eb;
}

.advisor-list {
  columns: 2;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--green-deep);
  font-weight: 750;
}

.advisor-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.donate {
  align-items: center;
  background: var(--surface);
}

.donate p {
  margin-top: 18px;
  max-width: 650px;
}

.donate .button {
  justify-self: end;
  box-shadow: var(--shadow);
}

.join {
  background: #eef4eb;
}

.join-form {
  display: grid;
  gap: 20px;
  max-width: 980px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(25, 33, 30, 0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.join-form label {
  display: grid;
  gap: 8px;
}

.join-form label span {
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfbf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.join-form textarea {
  resize: vertical;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  outline: 3px solid rgba(242, 189, 58, 0.32);
  border-color: var(--gold);
}

.message-field {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  max-width: 520px;
  font-size: 0.94rem;
}

.contact {
  background: #f5f1e8;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.social-soon {
  min-height: 56px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: #fff;
  background: #141b18;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(32px, 8vw, 92px);
  background: var(--paper);
}

.not-found img {
  width: 84px;
  height: 84px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
}

.not-found p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 10px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-donate {
    justify-content: center;
    margin-top: 4px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    max-width: 140px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(650px, calc(100% - 40px));
    margin-right: 20px;
  }

  .split,
  .story,
  .impact,
  .donate,
  .contact {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .credential-grid,
  .governance-details,
  .team-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .board-list {
    grid-template-columns: 1fr;
  }

  .advisor-list {
    columns: 1;
  }

  .impact-panel {
    position: static;
  }

  .donate .button {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(11, 24, 18, 0.82) 0%, rgba(11, 24, 18, 0.54) 74%, rgba(11, 24, 18, 0.22) 100%);
  }

  .step {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .management-card {
    grid-template-columns: 1fr;
  }
}
