:root {
  --green: #0f6b4f;
  --green-dark: #083d31;
  --gold: #d69d2f;
  --coral: #c95d4a;
  --ink: #14211d;
  --muted: #60706a;
  --paper: #fbfaf6;
  --mist: #eef5f1;
  --white: #ffffff;
  --line: #dfe8e2;
  --shadow: 0 20px 60px rgba(20, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  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, 250, 246, 0.94);
  box-shadow: 0 10px 28px rgba(20, 33, 29, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(8, 61, 49, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 0.72rem;
  opacity: 0.78;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: var(--mist);
}

.nav-cta {
  margin-left: 4px;
  color: var(--white);
  background: var(--coral);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

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

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 61, 49, 0.88) 0%, rgba(8, 61, 49, 0.68) 42%, rgba(8, 61, 49, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 61, 49, 0.28), rgba(8, 61, 49, 0.06));
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 88px);
  padding-top: 64px;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 10vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover {
  background: #ae4d3e;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.intro,
.programs,
.impact,
.support,
.contact {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) 1fr;
  gap: clamp(28px, 7vw, 88px);
  background: var(--white);
}

.intro h2,
.section-heading h2,
.impact h2,
.support h2,
.contact h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro > p,
.impact p,
.support p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.programs {
  background: var(--mist);
}

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

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

.program-card {
  padding: 28px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 33, 29, 0.06);
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 7px;
  color: var(--green-dark);
  background: #f2d99c;
  font-weight: 800;
}

.program-card h3,
.support-panel h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.program-card p {
  margin: 0;
  color: var(--muted);
}

.impact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  background: var(--green-dark);
  color: var(--white);
}

.impact p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

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

.impact-list div {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.impact-list strong,
.impact-list span {
  display: block;
}

.impact-list strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.impact-list span {
  color: rgba(255, 255, 255, 0.76);
}

.support {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 440px);
  gap: clamp(30px, 6vw, 72px);
  background: var(--white);
}

.support-copy p {
  max-width: 680px;
  margin-top: 22px;
}

.support-panel {
  align-self: start;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.support-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding-left: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 520px);
  gap: clamp(30px, 7vw, 82px);
  background: var(--paper);
}

.contact p {
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 33, 29, 0.07);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.92rem;
}

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

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.78);
  background: #0a2e27;
}

.site-footer p {
  margin: 0;
}

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

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

  .nav-toggle {
    display: block;
    color: currentColor;
  }

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

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 61, 49, 0.9), rgba(8, 61, 49, 0.48)),
      linear-gradient(0deg, rgba(8, 61, 49, 0.38), rgba(8, 61, 49, 0.12));
  }

  .hero-content {
    margin: 0 auto;
  }

  .intro,
  .impact,
  .support,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
