*, *::before, *::after { box-sizing: border-box; }
    * { margin: 0; padding: 0; }

    :root {
      --teal: #079b87;
      --teal-2: #0cab97;
      --teal-dark: #087f71;
      --orange: #f4a40b;
      --ink: #172824;
      --muted: #5b6865;
      --soft: #eef9f6;
      --line: #dcefeb;
      --white: #ffffff;
      --shadow: 0 18px 44px rgba(27, 72, 65, .09);
      --shadow-soft: 0 14px 35px rgba(27, 72, 65, .075);
      --max: 1280px;
    }

    html { scroll-behavior: smooth; }

    body {
      min-width: 320px;
      font-family: "Nunito", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 0 32%, transparent 0 155px, rgba(7, 155, 135, .14) 156px 157px, transparent 158px 100%),
        var(--white);
      line-height: 1.55;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .page {
      position: relative;
      overflow: hidden;
      padding-top: 118px;
      background:
        radial-gradient(circle at -86px 52%, transparent 0 171px, rgba(7, 155, 135, .15) 172px 173px, transparent 174px),
        radial-gradient(circle at -86px 52%, transparent 0 205px, rgba(7, 155, 135, .13) 206px 207px, transparent 208px),
        #fff;
    }

    .container {
      width: min(var(--max), calc(100% - 128px));
      margin-inline: auto;
    }

    .dot-field {
      position: absolute;
      width: 128px;
      height: 184px;
      pointer-events: none;
      opacity: .52;
      background-image: radial-gradient(var(--teal-2) 1.4px, transparent 1.4px);
      background-size: 12px 12px;
      z-index: 0;
    }

    .dot-field.orange { background-image: radial-gradient(var(--orange) 1.35px, transparent 1.35px); }
    .dot-left { left: -34px; top: 172px; }
    .dot-hero { left: 625px; top: 238px; height: 315px; }
    .dot-project { right: -10px; top: 1055px; height: 96px; }
    .dot-about { left: 90px; top: 1275px; width: 126px; height: 130px; }

    .swirl {
      color: var(--teal);
      width: 84px;
      height: 28px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 27px;
      border-radius: 6px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    }

    .button:hover { transform: translateY(-1px); }
    .button.primary { color: #fff; background: var(--teal); box-shadow: 0 12px 24px rgba(7, 155, 135, .16); }
    .button.primary:hover { background: var(--teal-dark); }
    .button.outline { color: var(--orange); border-color: var(--orange); background: #fff; }
    .button.outline-teal { color: var(--teal); border-color: var(--teal); background: #fff; min-height: 42px; padding-inline: 28px; }
    .button.orange { color: #fff; background: var(--orange); min-height: 40px; padding-inline: 24px; font-size: 12px; box-shadow: 0 12px 24px rgba(244, 164, 11, .18); }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      padding: 14px 0;
      background: transparent;
      transition: padding .22s ease;
    }

    .site-header.is-scrolled .nav,
    .site-header.menu-open .nav {
      background: rgba(255, 255, 255, .94);
      border-color: rgba(220, 239, 235, .96);
      box-shadow: 0 14px 34px rgba(23, 40, 36, .08);
      backdrop-filter: blur(12px);
    }

    .nav {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      width: min(var(--max), calc(100% - 128px));
      margin: 0 auto;
      padding: 10px 18px;
      border: 1px solid transparent;
      border-radius: 24px;
      background: transparent;
      transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      width: 120px;
      flex: 0 0 auto;
    }

    .brand img {
      width: 99px;
      height: auto;
      mix-blend-mode: multiply;
    }

    .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 32px;
      list-style: none;
      flex: 1;
    }

    .menu a {
      position: relative;
      display: inline-flex;
      padding: 11px 0;
      font-size: 13px;
      font-weight: 800;
      color: #1d2624;
    }

    .menu a.active { color: var(--teal); }
    .menu a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 3px;
      height: 2px;
      background: var(--teal);
      border-radius: 999px;
    }

    .donate-top {
      flex: 0 0 auto;
      min-height: 38px;
      padding-inline: 24px;
      font-size: 12px;
      border-radius: 5px;
    }

    .hero {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 545px) minmax(440px, 1fr);
      gap: 58px;
      align-items: center;
      padding: 39px 0 70px;
    }

    .eyebrow {
      margin-bottom: 16px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .hero h1 {
      max-width: 545px;
      color: var(--teal);
      font-size: clamp(42px, 4vw, 51px);
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 520px;
      margin: 25px 0 33px;
      color: #41524e;
      font-size: 16px;
      line-height: 1.8;
      font-weight: 600;
    }

    .hero-actions { display: flex; gap: 24px; align-items: center; }
    .hero .swirl { margin-top: 45px; margin-left: 8px; }

    .hero-media {
      position: relative;
      min-height: 478px;
      margin-top: 1px;
    }

    .hero-media::before {
      content: "";
      position: absolute;
      left: -39px;
      top: 18px;
      width: 61px;
      height: 287px;
      background: var(--teal);
      border-radius: 17px 0 0 17px;
      z-index: 0;
    }

    .hero-frame {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 464px;
      border-radius: 24px;
      overflow: hidden;
      background: #d9eee9;
      box-shadow: var(--shadow-soft);
    }

    .hero-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-outline {
      position: absolute;
      right: -38px;
      bottom: 18px;
      width: 240px;
      height: 288px;
      border: 1.5px solid rgba(7, 155, 135, .24);
      border-radius: 18px;
      z-index: 0;
    }

    .hero-curve {
      position: absolute;
      right: -110px;
      bottom: 18px;
      width: 560px;
      height: 150px;
      z-index: 2;
      pointer-events: none;
    }

    .section-heading {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .section-heading .eyebrow { margin-bottom: 4px; font-size: 13px; }
    .section-heading h2 {
      color: var(--teal);
      font-size: clamp(28px, 2.4vw, 34px);
      line-height: 1.2;
      font-weight: 900;
    }

    .section-heading .swirl { margin: 17px auto 0; width: 66px; height: 20px; }

    .pillars {
      position: relative;
      padding: 0 0 72px;
      z-index: 1;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
      margin-top: 27px;
    }

    .pillar-card {
      min-height: 348px;
      overflow: hidden;
      padding: 0 0 30px;
      text-align: center;
      background: #fff;
      border: 1px solid rgba(21, 107, 94, .07);
      border-radius: 12px;
      box-shadow: var(--shadow-soft);
    }

    .program-card-image {
      width: 100%;
      height: 165px;
      object-fit: cover;
      margin-bottom: 26px;
    }

    .pillar-card svg[data-lucide] {
      width: 74px;
      height: 74px;
      margin-bottom: 21px;
      color: var(--teal);
      stroke-width: 1.55;
    }

    .pillar-card h3 {
      color: var(--teal);
      font-size: 26px;
      line-height: 1.14;
      font-weight: 900;
      min-height: 60px;
      display: grid;
      place-items: center;
      padding-inline: 28px;
    }

    .pillar-card p {
      margin: 13px auto 24px;
      max-width: 300px;
      padding-inline: 28px;
      color: #344642;
      font-size: 15px;
      line-height: 1.67;
      font-weight: 600;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--teal);
      font-size: 14px;
      font-weight: 900;
    }

    .text-link svg[data-lucide] { width: 17px; height: 17px; stroke-width: 2; margin: 0; }

    .about-shell {
      position: relative;
      z-index: 1;
      padding: 0 0 60px;
    }

    .about {
      display: grid;
      grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
      gap: 67px;
      align-items: center;
      padding: 25px 58px 37px 32px;
      border-radius: 0 0 20px 20px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .about-image {
      position: relative;
      padding: 24px 0 31px;
    }

    .about-image::before {
      content: "";
      position: absolute;
      right: -23px;
      bottom: 0;
      width: 96px;
      height: 208px;
      border-radius: 13px;
      background: var(--teal);
      z-index: 0;
    }

    .about-image::after {
      content: "";
      position: absolute;
      left: -10px;
      top: 0;
      width: 145px;
      height: 140px;
      background-image: radial-gradient(var(--orange) 1.35px, transparent 1.35px);
      background-size: 11px 11px;
      opacity: .43;
      z-index: 0;
    }

    .about-image img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 432px;
      object-fit: cover;
      object-position: center;
      border-radius: 4px 16px 4px 4px;
      box-shadow: 0 14px 35px rgba(21, 70, 63, .12);
    }

    .about-image .dots {
      position: absolute;
      right: 20px;
      bottom: -4px;
      width: 165px;
      height: 94px;
      background-image: radial-gradient(var(--teal) 1.35px, transparent 1.35px);
      background-size: 11px 11px;
      opacity: .34;
      z-index: 2;
    }

    .about-copy { padding-top: 13px; }
    .about-copy .eyebrow { margin-bottom: 12px; font-size: 13px; }
    .about-copy h2 {
      max-width: 520px;
      color: var(--teal);
      font-size: 32px;
      line-height: 1.16;
      font-weight: 900;
    }

    .about-copy p:not(.eyebrow) {
      max-width: 612px;
      margin-top: 20px;
      color: #273834;
      font-size: 15px;
      line-height: 1.75;
      font-weight: 600;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin: 40px 0 29px;
      border-top: 0;
    }

    .stat {
      min-height: 115px;
      padding: 0 22px;
      text-align: center;
      border-right: 1px solid rgba(20, 80, 73, .17);
    }

    .stat:last-child { border-right: 0; }
    .stat svg[data-lucide] {
      width: 45px;
      height: 45px;
      margin-bottom: 12px;
      color: var(--teal);
      stroke-width: 1.8;
    }

    .stat strong {
      display: block;
      color: var(--teal);
      font-size: 23px;
      line-height: 1;
      font-weight: 900;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: #5e6d69;
      font-size: 12.5px;
      line-height: 1.25;
      font-weight: 700;
    }

    .impact-home,
    .map-home,
    .partners-home {
      position: relative;
      z-index: 1;
      padding: 0 0 67px;
    }

    .impact-stats {
      margin: 30px auto 0;
      padding: 24px 18px;
      background: #fff;
      border: 1px solid rgba(21, 107, 94, .07);
      border-radius: 14px;
      box-shadow: var(--shadow-soft);
    }

    .interactive-map {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
      gap: 28px;
      align-items: stretch;
      margin-top: 30px;
    }

    .map-stage {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      background: #eef9f6;
      border: 1px solid rgba(21, 107, 94, .08);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
    }

    .leaflet-map {
      width: 100%;
      min-height: 360px;
      height: 100%;
      border-radius: 16px;
      z-index: 1;
    }

    .leaflet-map .leaflet-control-attribution {
      font-size: 10px;
    }

    .map-marker {
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      color: #fff;
      background: var(--teal);
      border: 3px solid #fff;
      border-radius: 999px;
      box-shadow: 0 12px 28px rgba(7, 155, 135, .28);
    }

    .map-marker.is-active {
      background: var(--orange);
      box-shadow: 0 16px 34px rgba(244, 164, 11, .28);
    }

    .map-marker svg,
    .map-marker i {
      width: 18px;
      height: 18px;
    }

    .map-details {
      padding: 28px;
      background: #fff;
      border: 1px solid rgba(21, 107, 94, .08);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
    }

    .map-details h3 {
      color: #1a2926;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 900;
    }

    .map-details p:not(.eyebrow) {
      margin-top: 14px;
      color: #5f6e6b;
      font-size: 14px;
      line-height: 1.7;
      font-weight: 700;
    }

    .map-location-list {
      display: grid;
      gap: 10px;
      margin-top: 24px;
    }

    .map-location-list button {
      min-height: 40px;
      padding: 0 14px;
      color: var(--teal);
      background: #eef9f6;
      border: 1px solid rgba(7, 155, 135, .16);
      border-radius: 8px;
      font: inherit;
      font-size: 13px;
      font-weight: 900;
      text-align: left;
      cursor: pointer;
    }

    .map-location-list button.is-active {
      color: #fff;
      background: var(--teal);
      border-color: var(--teal);
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 20px;
      margin-top: 28px;
    }

    .partner-card {
      display: grid;
      place-items: center;
      min-height: 86px;
      padding: 18px;
      color: #6f7d7a;
      background: #fff;
      border: 1px solid rgba(21, 107, 94, .08);
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(26, 75, 67, .055);
      font-size: 13px;
      font-weight: 900;
      text-align: center;
    }

    .partner-card img {
      max-width: 100%;
      max-height: 52px;
      object-fit: contain;
      filter: grayscale(.1);
    }

    .partners-action {
      display: flex;
      justify-content: center;
      margin-top: 18px;
    }

    .projects {
      position: relative;
      z-index: 1;
      padding: 0 0 67px;
    }

    .projects-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 29px;
    }

    .projects-title .eyebrow { margin-bottom: 5px; font-size: 13px; }
    .projects-title h2 {
      color: var(--teal);
      font-size: 31px;
      line-height: 1.2;
      font-weight: 900;
    }

    .projects-title .swirl { margin-top: 19px; width: 70px; height: 22px; }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .project-card {
      display: grid;
      grid-template-columns: 122px minmax(0, 1fr);
      min-height: 202px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(21, 107, 94, .08);
      border-radius: 11px;
      box-shadow: 0 14px 35px rgba(26, 75, 67, .075);
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project-content { padding: 24px 18px 20px; }

    .tag {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--teal);
      font-size: 9.5px;
      line-height: 1;
      text-transform: uppercase;
      font-weight: 900;
    }

    .tag::before {
      content: "";
      width: 4px;
      height: 13px;
      background: var(--teal);
      border-radius: 4px;
    }

    .project-card h3 {
      margin-top: 17px;
      color: #1a2926;
      font-size: 16px;
      line-height: 1.24;
      font-weight: 900;
    }

    .project-card p {
      margin: 12px 0 18px;
      color: #5f6e6b;
      font-size: 10.8px;
      line-height: 1.5;
      font-weight: 700;
    }

    .project-card .text-link { font-size: 12px; gap: 8px; }
    .project-card .text-link svg[data-lucide] { width: 14px; height: 14px; }

    .home-news {
      position: relative;
      z-index: 1;
      padding: 0 0 67px;
    }

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

    .home-news-card {
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(21, 107, 94, .08);
      border-radius: 12px;
      box-shadow: 0 14px 35px rgba(26, 75, 67, .075);
    }

    .home-news-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .home-news-content {
      padding: 22px;
    }

    .home-news-card h3 {
      margin-top: 14px;
      color: #1a2926;
      font-size: 18px;
      line-height: 1.25;
      font-weight: 900;
    }

    .home-news-card p {
      margin: 11px 0 18px;
      color: #5f6e6b;
      font-size: 13px;
      line-height: 1.55;
      font-weight: 700;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 38px;
    }

    .slider-dots span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #cedbd8;
    }

    .slider-dots span:first-child { width: 27px; background: var(--teal); }

    .cta {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr repeat(3, .7fr);
      align-items: center;
      gap: 38px;
      margin-bottom: 54px;
      padding: 38px 43px 35px;
      color: #fff;
      background: linear-gradient(105deg, var(--teal) 0%, #05a893 55%, #079b87 100%);
      border-radius: 14px;
      box-shadow: 0 20px 42px rgba(7, 155, 135, .22);
    }

    .cta h2 {
      max-width: 365px;
      color: #fff;
      font-size: 34px;
      line-height: 1.23;
      font-weight: 900;
    }

    .cta .swirl {
      width: 65px;
      height: 21px;
      margin-top: 17px;
      color: #fff;
      opacity: .88;
    }

    .cta-action {
      display: grid;
      justify-items: center;
      text-align: center;
      min-height: 107px;
      padding-top: 3px;
      border-left: 1px solid rgba(255, 255, 255, .15);
    }

    .cta-action svg[data-lucide] {
      width: 44px;
      height: 44px;
      margin-bottom: 18px;
      stroke-width: 1.55;
    }

    .cta-action strong {
      display: block;
      font-size: 18px;
      line-height: 1;
      font-weight: 900;
    }

    .cta-action span {
      display: block;
      margin-top: 8px;
      font-size: 14px;
      font-weight: 700;
      opacity: .92;
    }

    .site-footer {
      position: relative;
      z-index: 1;
      overflow: hidden;
      padding: 0 0 36px;
      background: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.45fr .7fr .75fr .95fr;
      gap: 70px;
      padding: 0 12px 48px;
    }

    .footer-logo img {
      width: 130px;
      mix-blend-mode: multiply;
    }

    .footer-col h3 {
      margin-bottom: 19px;
      font-size: 14px;
      font-weight: 900;
      color: #1b2926;
    }

    .footer-col ul { list-style: none; }
    .footer-col li + li { margin-top: 13px; }

    .footer-col a,
    .footer-col p {
      color: #5f6d6a;
      font-size: 14px;
      font-weight: 700;
    }

    .socials {
      display: flex;
      gap: 22px;
      margin-top: 22px;
      color: var(--teal);
    }

    .socials a {
      display: grid;
      place-items: center;
      width: 19px;
      height: 19px;
      color: var(--teal);
      font-size: 0;
    }

    .socials svg[data-lucide] { width: 19px; height: 19px; stroke-width: 2.2; }

    .copyright {
      text-align: center;
      color: #5f6d6a;
      font-size: 13px;
      font-weight: 700;
    }

    .footer-mark {
      position: absolute;
      right: -52px;
      bottom: -4px;
      width: 306px;
      height: 188px;
      opacity: .11;
      filter: grayscale(1);
      mix-blend-mode: multiply;
      object-fit: contain;
    }

    .mobile-toggle { display: none; }

    @media (max-width: 1180px) {
      .container, .nav { width: min(var(--max), calc(100% - 48px)); }
      .nav { gap: 20px; }
      .menu { gap: 18px; }
      .menu a { font-size: 12px; }
      .button { padding-inline: 20px; }
      .hero { grid-template-columns: 1fr; gap: 38px; padding-top: 24px; }
      .hero-media { max-width: 690px; justify-self: center; width: 100%; }
      .projects-grid, .home-news-grid, .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .interactive-map { grid-template-columns: 1fr; }
      .about { grid-template-columns: 1fr; padding-right: 32px; }
      .cta { grid-template-columns: repeat(3, 1fr); }
      .cta > div:first-child { grid-column: 1 / -1; }
      .cta-action:first-of-type { border-left: 0; }
    }

    @media (max-width: 900px) {
      .page { padding-top: 98px; }
      .site-header { padding: 10px 0; }
      .nav { align-items: center; border-radius: 18px; }
      .menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
      }
      .site-header:focus-within .menu,
      .menu.open { display: grid; gap: 4px; justify-items: start; }
      .mobile-toggle {
        display: grid;
        place-items: center;
        width: 42px;
        height: 38px;
        color: var(--teal);
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
      }
      .donate-top { margin-left: auto; }
      .pillars-grid { grid-template-columns: 1fr; }
      .about-image img { height: 360px; }
      .stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
      .stat:nth-child(2) { border-right: 0; }
      .cta { grid-template-columns: 1fr; }
      .cta-action { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
    }

    @media (max-width: 640px) {
      .container, .nav { width: min(var(--max), calc(100% - 32px)); }
      .brand { width: 86px; }
      .brand img { width: 82px; }
      .donate-top { display: none; }
      .hero { padding-bottom: 72px; }
      .hero h1 { font-size: 39px; }
      .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; }
      .button { width: 100%; }
      .hero-media { min-height: auto; }
      .hero-frame { height: 355px; border-radius: 18px; }
      .hero-media::before { height: 220px; }
      .hero-curve { width: 370px; right: -112px; bottom: -10px; }
      .pillars { padding-bottom: 48px; }
      .pillar-card { min-height: auto; }
      .about { padding: 20px 18px 28px; gap: 26px; }
      .about-image img { height: 310px; }
      .about-copy h2, .projects-title h2 { font-size: 28px; }
      .stats { grid-template-columns: 1fr; }
      .stat { border-right: 0; border-bottom: 1px solid rgba(20,80,73,.14); padding-bottom: 20px; }
      .stat:last-child { border-bottom: 0; }
      .projects-head { align-items: start; flex-direction: column; }
      .projects-grid, .home-news-grid, .partners-grid { grid-template-columns: 1fr; }
      .project-card { grid-template-columns: 118px minmax(0, 1fr); }
      .map-stage { min-height: 290px; }
      .leaflet-map { min-height: 290px; }
      .cta { padding: 30px 22px; }
      .cta h2 { font-size: 28px; }
      .footer-grid { grid-template-columns: 1fr; padding-inline: 0; }
      .footer-mark { width: 220px; }
      .dot-field { display: none; }
    }

    @media (max-width: 420px) {
      .container, .nav { width: min(var(--max), calc(100% - 20px)); }
      .nav { padding: 8px 10px; }
      .hero h1 { font-size: 34px; }
      .section-heading h2,
      .about-copy h2,
      .projects-title h2,
      .cta h2 { font-size: 25px; }
      .button { min-height: 42px; padding-inline: 16px; }
      .hero-frame { height: 300px; }
      .project-card { grid-template-columns: 1fr; }
      .project-card img { height: 210px; }
      .home-news-card img { height: 190px; }
    }

.program-card-icon{width:52px;height:52px;border-radius:16px;display:grid;place-items:center;background:#fff;color:var(--primary,#079b87);box-shadow:0 8px 24px rgba(0,0,0,.10);margin-top:-26px;position:relative}.program-card-icon svg{width:25px;height:25px}
.program-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:#e9f7f4;color:#079b87;margin:-26px 0 14px 18px;position:relative;z-index:2;box-shadow:0 8px 20px rgba(7,155,135,.18)}
.program-icon svg{width:27px;height:27px}
