:root {
  --green-950: #063b28;
  --green-900: #075f3b;
  --green-800: #0f8a45;
  --green-700: #0b7a3d;
  --green-600: #18a558;
  --green-500: #5fcf8e;
  --green-100: #f2fff7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 59, 40, 0.16);
  --soft-shadow: 0 14px 40px rgba(6, 59, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--green-950);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--green-800);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--green-950);
}

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

section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--green-700);
  content: "";
}

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

.section-title h2 {
  margin: 10px 0 14px;
  color: var(--green-950);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-title p {
  margin: 0;
  color: var(--green-900);
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--green-800);
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.btn-outline {
  background: var(--white);
  color: var(--green-800);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--green-800);
  color: var(--white);
}

.btn-white {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-900);
}

.btn-white:hover,
.btn-white:focus {
  border-color: var(--white);
  background: var(--green-100);
  color: var(--green-950);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  transform: translateY(-140%);
  border: 2px solid var(--green-800);
  background: var(--white);
  color: var(--green-950);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 138, 69, 0.16);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, box-shadow 180ms ease;
}

#header.header-scrolled,
#header.header-inner-pages {
  padding: 10px 0;
  box-shadow: 0 12px 34px rgba(6, 59, 40, 0.12);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-950);
  font-weight: 900;
  line-height: 1.05;
}

.logo img {
  width: 46px;
  height: 46px;
}

.logo span {
  max-width: 145px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.navbar a:hover,
.navbar a:focus,
.navbar a.active {
  background: var(--green-100);
  color: var(--green-950);
}

.navbar .nav-cta {
  background: var(--green-800);
  color: var(--white);
}

.navbar .nav-cta:hover,
.navbar .nav-cta:focus {
  background: var(--green-950);
  color: var(--white);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-800);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font-size: 1.45rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 126px 0 72px;
  background: var(--green-950);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 1;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 59, 40, 0.9) 0%, rgba(6, 59, 40, 0.62) 42%, rgba(6, 59, 40, 0.18) 68%, rgba(6, 59, 40, 0) 100%);
  content: "";
}

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

.hero-content {
  max-width: 900px;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 9vw, 7.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 30px;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
  margin-top: 44px;
}

.proof-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.proof-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.quick-actions {
  padding: 42px 0 10px;
  background: var(--white);
}

.quick-actions-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.action-card,
.program-card,
.value-card,
.impact-card,
.contact-card {
  border: 2px solid var(--green-800);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-950);
  box-shadow: var(--soft-shadow);
}

.action-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.action-card:hover,
.action-card:focus {
  transform: translateY(-4px);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.icon-circle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-size: 1.3rem;
}

.action-card h2,
.program-card h3,
.value-card h3,
.impact-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 1.08rem;
  font-weight: 900;
}

.action-card p,
.program-card p,
.value-card p,
.impact-card p,
.contact-card p {
  margin: 0;
  color: var(--green-900);
}

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

.green-photo {
  overflow: hidden;
  border: 2px solid var(--green-800);
  border-radius: 8px;
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.green-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.about-photo {
  aspect-ratio: 4 / 5;
}

.copy-block p {
  color: var(--green-900);
  font-size: 1.03rem;
}

.copy-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.copy-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--green-900);
  font-weight: 700;
}

.copy-list i {
  margin-top: 4px;
  color: var(--green-800);
}

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

.green-band .section-eyebrow,
.green-band .section-title h2,
.green-band .section-title p {
  color: var(--white);
}

.green-band .section-eyebrow::before {
  background: var(--white);
}

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

.program-card {
  min-height: 100%;
  padding: 24px;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

.program-card:hover {
  transform: translateY(-5px);
  background: var(--green-100);
}

.program-card i,
.value-card i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-size: 1.25rem;
}

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

.value-card {
  padding: 22px;
  box-shadow: none;
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.impact-card {
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.impact-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none;
}

.impact-card-content {
  padding: 24px;
}

.impact-meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--green-800);
  font-weight: 900;
}

.contact-section {
  background: var(--green-100);
}

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

.contact-card {
  padding: 24px;
  text-align: left;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  border: 2px solid var(--green-800);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.newsletter-panel h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 1.55rem;
  font-weight: 900;
}

.newsletter-panel p {
  margin: 0;
  color: var(--green-900);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.newsletter-field {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 2px solid var(--green-800);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.newsletter-field::placeholder {
  color: var(--green-700);
}

.newsletter-field:focus {
  box-shadow: 0 0 0 4px rgba(15, 138, 69, 0.18);
}

.newsletter-message {
  min-height: 24px;
  margin-top: 10px;
  color: var(--green-900);
  font-weight: 800;
}

.newsletter-message.is-error {
  color: var(--green-950);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.blog-hero {
  min-height: 58vh;
  padding: 144px 0 80px;
}

.breadcrumb-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 800;
}

.breadcrumb-line a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.article-stack {
  display: grid;
  gap: 34px;
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: 22px;
  border: 2px solid var(--green-800);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.article-feature .green-photo {
  min-height: 100%;
  box-shadow: none;
}

.article-feature-content {
  padding: 8px 0;
}

.article-feature h2 {
  margin: 0 0 14px;
  color: var(--green-950);
  font-size: clamp(1.65rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.05;
}

.article-feature p {
  color: var(--green-900);
}

.article-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.article-details li {
  padding: 7px 12px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.85rem;
  font-weight: 900;
}

.site-footer {
  background: var(--green-950);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--white);
}

.footer-brand img {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
}

.footer-brand h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 950;
}

.footer-links ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  font-size: 1.15rem;
}

.social-links a:hover,
.social-links a:focus {
  background: var(--white);
  color: var(--green-950);
}

.footer-newsletter .newsletter-form {
  display: grid;
}

.footer-newsletter .newsletter-field {
  border-color: var(--white);
  color: var(--green-950);
}

.footer-newsletter .newsletter-message {
  color: var(--white);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  border: 2px solid var(--green-800);
  border-radius: 999px;
  opacity: 0;
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--soft-shadow);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top:hover,
.back-to-top:focus {
  transform: translateY(-3px);
  background: var(--green-800);
  color: var(--white);
}

@media (max-width: 1024px) {
  .navbar ul {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 2px solid var(--green-800);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .navbar.navbar-mobile ul {
    display: flex;
  }

  .navbar a {
    justify-content: center;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .quick-actions-grid,
  .program-grid,
  .values-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .impact-layout,
  .newsletter-panel,
  .article-feature {
    grid-template-columns: 1fr;
  }
}

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

  section {
    padding: 70px 0;
  }

  .logo span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-proof,
  .quick-actions-grid,
  .program-grid,
  .values-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    display: grid;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .article-feature {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
