:root {
  --green-900: #173c2b;
  --green-800: #205339;
  --green-700: #2c7a4b;
  --green-500: #76b82a;
  --blue-600: #1d7fb8;
  --sky-100: #eaf6ff;
  --cream: #f7f4ec;
  --paper: #ffffff;
  --muted: #f3f8f4;
  --text: #1f2d27;
  --subtext: #5f7068;
  --line: #dfe9e3;
  --shadow: 0 18px 60px rgba(23, 60, 43, 0.12);
  --radius: 28px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  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(--text);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--green-900);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 233, 227, 0.8);
}

.institutional-strip {
  background: var(--green-900);
  color: white;
  font-size: 0.86rem;
}

.strip-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  flex-wrap: wrap;
}

.navbar {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 260px;
  height: auto;
}

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

.menu a {
  text-decoration: none;
  font-weight: 700;
  color: var(--green-900);
  padding: 12px 13px;
  border-radius: 999px;
}

.menu a:hover,
.menu a:focus {
  background: var(--muted);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--green-900);
  display: block;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(44, 122, 75, 0.22);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 16px 34px rgba(44, 122, 75, 0.28);
}

.button-secondary {
  color: var(--green-900);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-small {
  min-height: auto;
  padding: 10px 16px !important;
  color: white !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 58px;
  background:
    radial-gradient(circle at 78% 14%, rgba(29, 127, 184, 0.16), transparent 32%),
    radial-gradient(circle at 12% 24%, rgba(118, 184, 42, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  color: var(--green-900);
  line-height: 1.1;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  letter-spacing: -0.07em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.45rem);
  letter-spacing: -0.045em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  max-width: 720px;
  color: var(--subtext);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

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

.hero-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 233, 227, 0.9);
  box-shadow: var(--shadow);
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px dashed rgba(44, 122, 75, 0.28);
  pointer-events: none;
}

.card-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  color: white;
  background: var(--green-700);
  font-size: 38px;
  font-weight: 700;
}

.facts {
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.facts div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.facts dt {
  font-weight: 900;
  color: var(--green-800);
}

.facts dd {
  margin: 0;
  color: var(--subtext);
}

.hero-wave {
  height: 60px;
}

.logos-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.placeholder-logo {
  min-height: 84px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.placeholder-logo span {
  font-weight: 900;
  color: var(--green-900);
}

.placeholder-logo small {
  color: var(--subtext);
  margin-top: 4px;
}

.section {
  padding: 92px 0;
}

.section.muted {
  background: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.rich-text p {
  margin-top: 0;
  color: var(--subtext);
  font-size: 1.07rem;
}

.objective-grid,
.impact-grid,
.partner-grid,
.news-grid {
  display: grid;
  gap: 22px;
}

.objective-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

.objective-card,
.partner-card,
.news-card,
.impact-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(23, 60, 43, 0.06);
}

.objective-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green-700);
  font-weight: 900;
}

.objective-card p,
.partner-card p,
.news-card p,
.impact-grid article p,
.process-step p,
.timeline article p,
.highlight-panel p {
  margin: 0;
  color: var(--subtext);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--subtext);
  font-size: 1.08rem;
  margin: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 16px;
  background: var(--sky-100);
  color: var(--blue-600);
  font-weight: 900;
}

.highlight-panel {
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  background: var(--green-900);
  color: white;
}

.highlight-panel h3,
.highlight-panel p {
  color: white;
}

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

.partner-grid {
  grid-template-columns: repeat(3, 1fr);
}

.timeline-section {
  background:
    linear-gradient(90deg, rgba(23, 60, 43, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fff 100%);
  background-size: 70px 70px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 2px;
  background: var(--line);
}

.timeline article {
  position: relative;
  padding: 58px 24px 0 0;
}

.timeline article:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 0 0 8px white;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-700);
  font-weight: 900;
}

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

.news-date {
  margin: 0 0 14px !important;
  color: var(--green-700) !important;
  font-weight: 900;
}

.news-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-700);
  font-weight: 900;
  text-decoration: none;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(118, 184, 42, 0.16), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(29, 127, 184, 0.14), transparent 28%),
    var(--green-900);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  padding: 42px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--green-900);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(118, 184, 42, 0.24);
  border-color: var(--green-500);
}

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

.site-footer {
  background: #10291e;
  color: rgba(255, 255, 255, 0.82);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.9fr;
  gap: 42px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px;
}

.site-footer h2 {
  color: white;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

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

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1020px) {
  .hero-grid,
  .two-col,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline:before {
    left: 10px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline article {
    padding: 0 0 0 48px;
  }

  .timeline article:before {
    top: 3px;
    left: 0;
  }
}

@media (max-width: 800px) {
  .menu-toggle {
    display: flex;
  }

  .navbar {
    min-height: 74px;
  }

  .brand img {
    width: 220px;
  }

  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    display: block;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    padding: 28px;
  }

  .logo-row,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight-panel {
    flex-direction: column;
    align-items: start;
  }
}

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

  .strip-inner {
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .objective-grid,
  .process,
  .impact-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .section {
    padding: 68px 0;
  }

  .contact-card {
    padding: 26px;
  }
}
