:root {
    --brand-deep: #244f2b;
    --brand-deeper: #16381f;
    --brand-leaf: #508020;
    --brand-leaf-bright: #509020;
    --brand-teal: #409080;
    --brand-cream: #f5f1e5;
    --dark: #183322;
    --body: #65716a;
    --blue: #409080;
    --blue-dark: #2f6f63;
    --accent: #508020;
    --accent-dark: #306020;
    --soft: #f7faf3;
    --white: #ffffff;
    --border: #e4ebdf;
    --footer: var(--brand-deep);
    --shadow: 0 14px 44px -18px rgba(36, 79, 43, 0.3);
    --shadow-strong: 0 30px 70px rgba(36, 79, 43, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--body);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

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

a {
    color: inherit;
    font-family: "Poppins", Arial, sans-serif;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--dark);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

p {
    margin: 0;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(80, 128, 32, 0.42);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 16px;
    z-index: 3000;
    padding: 10px 16px;
    border-radius: 30px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
}

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

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

.site-header {
    position: sticky !important;
    top: 0;
    left: 0;
    z-index: 1999;
    width: 100%;
    padding: 14px 0;
    background: transparent;
}

.nav-shell {
    display: grid;
    grid-template-columns: minmax(88px, 1fr) minmax(0, 880px) minmax(118px, 1fr);
    align-items: center;
    gap: 24px;
    width: min(1480px, calc(100% - 64px));
    min-height: 82px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: var(--brand-deep);
    box-shadow: 0 16px 36px rgba(22, 56, 31, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    text-transform: uppercase;
}

.site-header .brand {
    flex: 0 0 auto;
    justify-self: start;
    width: 58px;
    height: 58px;
    overflow: hidden;
}

.site-header .brand-logo {
    display: block;
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    border: 2px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(22, 56, 31, 0.2);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    justify-self: center;
    width: 100%;
    gap: clamp(10px, 1vw, 22px);
}

.site-nav a,
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
    color: #cfe7bd;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    gap: 6px;
}

.nav-dropdown-toggle span {
    display: inline-flex;
    font-size: 0.72rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 282px;
    padding: 10px;
    border: 1px solid rgba(36, 79, 43, 0.12);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 26px 56px -28px rgba(22, 56, 31, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
    transition-delay: 0s;
}

.nav-dropdown-menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.92rem;
    text-align: left;
    text-transform: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(80, 128, 32, 0.1);
    color: var(--accent-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.42);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav-shell.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-shell.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 50px;
    padding-inline: 22px;
    border: 2px solid var(--accent);
    border-radius: 30px;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 30px;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.button-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.home-hero .button-primary:hover,
.contact-cta .button-primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.button-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.button-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.button-dark {
    background: var(--white);
    border-color: var(--dark);
    color: var(--dark);
}

.button-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-carousel span {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    background-image: var(--hero-bg-overlay), var(--hero-slide-bg);
    background-position: center center, var(--hero-slide-position, center center);
    background-repeat: no-repeat;
    background-size: auto, cover;
    transform: scale(1);
    animation: hero-bg-cycle 36s ease-in-out infinite;
    will-change: opacity, transform;
}

.hero-bg-carousel span:first-child {
    opacity: 1;
}

.hero-bg-carousel span:nth-child(2) {
    animation-delay: 6s;
}

.hero-bg-carousel span:nth-child(3) {
    animation-delay: 12s;
}

.hero-bg-carousel span:nth-child(4) {
    animation-delay: 18s;
}

.hero-bg-carousel span:nth-child(5) {
    animation-delay: 24s;
}

.hero-bg-carousel span:nth-child(6) {
    animation-delay: 30s;
}

@keyframes hero-bg-cycle {
    0%,
    16% {
        opacity: 1;
        transform: scale(1);
    }

    22%,
    100% {
        opacity: 0;
        transform: scale(1.06);
    }
}

.home-hero {
    position: relative;
    display: grid;
    min-height: 640px;
    place-items: start center;
    overflow: hidden;
    padding: 58px 0 126px;
    background:
        linear-gradient(rgba(22, 56, 31, 0.56), rgba(22, 56, 31, 0.56)),
        var(--hero-bg, url("/static/images/im-01.jpeg")) center center / cover no-repeat;
    color: var(--white);
    text-align: center;
    --hero-bg-overlay: linear-gradient(rgba(22, 56, 31, 0.56), rgba(22, 56, 31, 0.56));
    --hero-slide-position: center center;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-kicker,
.eyebrow,
.feature-icon,
.project-card span,
.news-card span,
.opportunity-card > span {
    color: var(--accent);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 16px;
    color: var(--white);
}

.home-hero h1 {
    color: var(--white);
    font-size: clamp(2.05rem, 4.6vw, 3.55rem);
    font-weight: 700;
    line-height: 1.04;
    text-transform: uppercase;
}

.home-hero p:not(.hero-kicker) {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.section {
    padding: 90px 0;
}

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

.feature-area {
    position: relative;
    z-index: 2;
    margin-top: -105px;
    padding-bottom: 70px;
}

.feature-panel {
    padding: 58px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-title h2,
.section-copy h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    text-transform: capitalize;
}

.section-title p,
.section-copy p,
.rich-panel p,
.project-card p,
.news-card p,
.opportunity-card p,
.feature-card p,
.contact-note span,
.footer-about p {
    color: var(--body);
}

.section-title p {
    width: min(680px, 100%);
    margin: 14px auto 0;
}

.section-copy {
    display: grid;
    align-content: start;
    gap: 22px;
}

.eyebrow {
    margin-bottom: -8px;
}

.feature-grid,
.project-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

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

.feature-grid.two,
.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

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

.feature-card,
.project-card,
.news-card,
.rich-panel,
.panel-form,
.opportunity-card {
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 315px;
    padding: 44px 34px;
    border: 1px solid var(--border);
    background: var(--soft);
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(80, 128, 32, 0.12);
    color: var(--accent-dark);
}

.feature-card h3,
.project-card h3,
.news-card h3,
.opportunity-card h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.feature-body p {
    color: var(--body);
}

.feature-body p + p {
    margin-top: 10px;
}

.counter-band {
    position: relative;
    padding: 82px 0;
    background: var(--brand-teal);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.counter-card {
    min-height: 180px;
    padding: 16px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.counter-card:last-child {
    border-right: 0;
}

.counter-card span {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
}

.counter-card strong {
    display: block;
    margin: 10px 0;
    color: var(--white);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
}

.counter-card p {
    color: rgba(255, 255, 255, 0.82);
}

.why-area {
    margin-top: 0;
    padding: 110px 0;
    background:
        linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
    border-top: 1px solid rgba(80, 128, 32, 0.08);
}

.why-layout {
    align-items: center;
}

.why-area .section-copy {
    max-width: 620px;
}

.why-area .section-copy h2 {
    max-width: 560px;
    color: var(--brand-deeper);
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.why-area .section-copy p:not(.eyebrow) {
    max-width: 600px;
    color: #65756b;
    font-size: 1.04rem;
    line-height: 1.85;
}

.impact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.impact-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(80, 128, 32, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-deeper);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 28px -22px rgba(36, 79, 43, 0.55);
}

.compact-button {
    width: fit-content;
    min-width: 156px;
    margin-top: 6px;
}

.split-layout,
.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.split-layout.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-feature {
    position: relative;
    border: 10px solid var(--white);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 34px 80px -42px rgba(22, 56, 31, 0.45);
    overflow: hidden;
}

.image-feature img {
    width: 100%;
    aspect-ratio: 1.24 / 1;
    min-height: 0;
    object-fit: cover;
}

.image-feature::after {
    content: none;
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 84px;
    height: 84px;
    border: 10px solid rgba(80, 128, 32, 0.82);
    border-radius: 50%;
}

.image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(22, 56, 31, 0.82);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.field-gallery-section {
    background: var(--white);
    overflow: hidden;
}

.photo-carousel {
    --photo-gap: 10px;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 10px;
    background: transparent;
}

.photo-track {
    display: flex;
    width: max-content;
    transform: translate3d(0, 0, 0);
    animation: photo-carousel-scroll 112s linear infinite;
    will-change: transform;
}

.photo-carousel:hover .photo-track {
    animation-play-state: paused;
}

.photo-carousel.is-scripted .photo-track {
    animation: none;
}

.photo-sequence {
    display: flex;
    flex: 0 0 auto;
    gap: var(--photo-gap);
    min-width: max-content;
    padding-right: var(--photo-gap);
}

.photo-card {
    position: relative;
    flex: 0 0 clamp(260px, 27vw, 390px);
    height: clamp(290px, 31vw, 390px);
    margin: 0;
    border-radius: 10px;
    background: var(--white);
    box-shadow: none;
    overflow: hidden;
}

.photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.photo-card.focus-upper img {
    object-position: center 28%;
}

.photo-card.focus-center img {
    object-position: center center;
}

.photo-card.focus-lower img {
    object-position: center 72%;
}

.photo-card:hover img {
    transform: scale(1.04);
}

.photo-card figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(22, 56, 31, 0.78);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 14px;
}

.news-meta span {
    position: relative;
    line-height: 1.35;
}

.news-meta span + span {
    padding-left: 12px;
}

.news-meta span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    transform: translateY(-50%);
}

.news-board {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto;
}

.news-story-card {
    display: grid;
    grid-column: span 4;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(36, 79, 43, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-story-card:hover {
    transform: translateY(-6px);
    border-color: rgba(80, 128, 32, 0.26);
    box-shadow: var(--shadow-strong);
}

.news-story-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    grid-template-rows: minmax(340px, auto);
}

.news-story-image {
    display: block;
    min-height: 184px;
    overflow: hidden;
    background: var(--soft);
}

.news-story-card .news-story-image {
    aspect-ratio: 1.55 / 1;
}

.news-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-story-card:hover .news-story-image img {
    transform: scale(1.035);
}

.news-story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
}

.news-story-featured .news-story-content {
    justify-content: center;
    padding: 34px;
}

.news-story-content h3 {
    margin-bottom: 12px;
    font-size: clamp(1.08rem, 1.35vw, 1.32rem);
    line-height: 1.24;
}

.news-story-featured h3 {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.news-story-content h3 a {
    color: var(--dark);
}

.news-story-content h3 a:hover {
    color: var(--brand-deep);
}

.news-story-content p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--body);
    font-size: 0.92rem;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.story-button {
    margin-top: auto;
}

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

.home-update-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark);
    box-shadow: var(--shadow);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-update-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.home-update-image {
    position: absolute;
    inset: 0;
    display: block;
}

.home-update-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 28, 15, 0.12), rgba(8, 28, 15, 0.86)),
        linear-gradient(90deg, rgba(8, 28, 15, 0.42), rgba(8, 28, 15, 0));
}

.home-update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-update-card:hover .home-update-image img {
    transform: scale(1.04);
}

.home-update-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 360px;
    padding: 30px;
}

.home-update-content h3 {
    max-width: 560px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.15;
}

.article-hero {
    position: relative;
    display: grid;
    min-height: 500px;
    align-items: end;
    padding: 108px 0 72px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 30, 18, 0.86), rgba(10, 30, 18, 0.54)),
        var(--article-hero-bg, url("/static/images/im-17.jpeg")) center center / cover no-repeat;
    color: var(--white);
    --hero-bg-overlay: linear-gradient(90deg, rgba(10, 30, 18, 0.86), rgba(10, 30, 18, 0.54));
    --hero-slide-position: center center;
}

.article-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(0deg, rgba(10, 30, 18, 0.46), rgba(10, 30, 18, 0));
}

.article-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-left: max(24px, calc((100vw - 1140px) / 2));
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-bottom: 22px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
}

.article-back-link:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--dark);
}

.article-meta {
    color: rgba(255, 255, 255, 0.82);
}

.article-meta span {
    color: inherit;
}

.article-hero h1 {
    max-width: 860px;
    color: var(--white);
    font-size: clamp(2rem, 4.1vw, 3.35rem);
    line-height: 1.05;
}

.article-hero p {
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
}

.article-section {
    background:
        linear-gradient(180deg, rgba(245, 249, 242, 0.75), rgba(255, 255, 255, 1) 32%),
        var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.75fr);
    gap: 44px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 42px;
}

.article-gallery-item {
    position: relative;
    grid-column: span 6;
    height: 270px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.article-gallery-lead {
    grid-column: 1 / -1;
    height: clamp(360px, 44vw, 470px);
}

.article-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-gallery-item figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(22, 56, 31, 0.78);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
}

.article-copy {
    max-width: 840px;
    padding: 6px 0;
    color: var(--body);
    font-size: 1.08rem;
    line-height: 1.85;
    text-align: justify;
}

.article-copy p + p {
    margin-top: 22px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
}

.article-sidebar-card {
    padding: 28px;
    border: 1px solid rgba(36, 79, 43, 0.11);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.article-sidebar-card h2 {
    margin-bottom: 18px;
    font-size: 1.42rem;
}

.related-news-link {
    display: grid;
    gap: 6px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.related-news-link span {
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.related-news-link strong {
    color: var(--dark);
    line-height: 1.35;
}

.related-news-link:hover strong {
    color: var(--brand-deep);
}

@keyframes photo-carousel-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-25%, 0, 0);
    }
}

.project-card,
.news-card {
    position: relative;
    min-height: 300px;
    padding: 38px;
    border-radius: 10px;
    overflow: hidden;
}

.project-card::before,
.news-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

.project-card-large {
    min-height: 340px;
}

.news-stack {
    display: grid;
    gap: 24px;
}

.news-card-large {
    min-height: 280px;
}

.has-image {
    display: flex;
    flex-direction: column;
}

.card-photo {
    position: relative;
    margin: -38px -38px 28px;
    aspect-ratio: 1.45 / 1;
    background: var(--soft);
    overflow: hidden;
}

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

.text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 24px;
    color: var(--dark);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
}

.text-link::after {
    content: "";
    width: 36px;
    height: 2px;
    margin: 14px 0 0 10px;
    background: var(--accent);
}

.text-link:hover {
    color: var(--accent);
}

.partners-section {
    position: relative;
    background:
        linear-gradient(180deg, rgba(245, 249, 242, 0.94), rgba(255, 255, 255, 0.98)),
        var(--white);
    overflow: hidden;
}

.partners-section::before {
    content: "";
    position: absolute;
    right: max(20px, calc((100vw - 1140px) / 2));
    bottom: -42px;
    width: 150px;
    height: 150px;
    border: 22px solid rgba(80, 128, 32, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.partner-carousel {
    --partner-gap: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding: 8px 0 22px;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: partner-logo-scroll 58s linear infinite;
    will-change: transform;
}

.partner-carousel:hover .partner-track {
    animation-play-state: paused;
}

.partner-sequence {
    display: flex;
    flex: 0 0 auto;
    gap: var(--partner-gap);
    min-width: max-content;
    padding-right: var(--partner-gap);
}

.partner-card {
    box-sizing: border-box;
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 16px;
    flex: 0 0 clamp(300px, 31vw, 430px);
    width: clamp(300px, 31vw, 430px);
    min-height: 170px;
    padding: 28px;
    border: 1px solid rgba(36, 79, 43, 0.11);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(80, 128, 32, 0.28);
    box-shadow: var(--shadow-strong);
}

.partner-card img {
    display: block;
    width: 100%;
    max-width: 350px;
    height: 92px;
    min-width: 0;
    object-fit: contain;
}

.partner-card.partner-square img {
    height: 116px;
}

.partner-card span {
    color: var(--brand-deep);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

@keyframes partner-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-33.333333%);
    }
}

.contact-cta {
    padding: 95px 0;
    background: var(--brand-teal);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.cta-panel h2 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.cta-panel .eyebrow {
    color: var(--white);
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 390px;
    align-items: start;
    padding: 58px 0 78px;
    overflow: hidden;
    background:
        linear-gradient(rgba(22, 56, 31, 0.64), rgba(22, 56, 31, 0.64)),
        var(--page-hero-bg, url("/static/images/hero-health.png")) center center / cover no-repeat;
    text-align: center;
    --hero-bg-overlay: linear-gradient(rgba(22, 56, 31, 0.64), rgba(22, 56, 31, 0.64));
    --hero-slide-position: center center;
}

.page-hero.hero-about {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-09.jpeg")) center center / cover no-repeat;
}

.page-hero.hero-projects {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-13.jpeg")) center center / cover no-repeat;
}

.page-hero.hero-news {
    background:
        linear-gradient(rgba(22, 56, 31, 0.72), rgba(22, 56, 31, 0.72)),
        var(--page-hero-bg, url("/static/images/im-17.jpeg")) center 42% / cover no-repeat;
    --hero-bg-overlay: linear-gradient(rgba(22, 56, 31, 0.72), rgba(22, 56, 31, 0.72));
    --hero-slide-position: center 42%;
}

.page-hero.hero-careers {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-19.jpeg")) center center / cover no-repeat;
}

.page-hero.hero-internships {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-16.jpeg")) center center / cover no-repeat;
}

.page-hero.hero-donate {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-15.jpeg")) center center / cover no-repeat;
}

.page-hero.hero-contact {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-18.jpeg")) center center / cover no-repeat;
}

.page-hero.hero-focus {
    background:
        linear-gradient(rgba(22, 56, 31, 0.66), rgba(22, 56, 31, 0.66)),
        var(--page-hero-bg, url("/static/images/im-05.jpeg")) center center / cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(64, 144, 128, 0.16);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.85rem, 3.4vw, 2.8rem);
    line-height: 1.1;
}

.page-hero p:not(.hero-kicker) {
    max-width: 660px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
}

.rich-panel,
.panel-form {
    padding: 52px;
    border-radius: 10px;
}

.rich-panel {
    display: grid;
    gap: 20px;
}

.about-photos-section,
.careers-intro,
.internships-intro {
    background: var(--white);
}

.leadership-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(80, 144, 128, 0.12), transparent 34%),
        linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.leadership-section::before {
    content: "";
    position: absolute;
    top: 76px;
    right: max(24px, calc((100vw - 1140px) / 2));
    width: 118px;
    height: 118px;
    border: 18px solid rgba(80, 128, 32, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.leadership-title {
    margin-inline: 0;
    text-align: left;
}

.team-group {
    position: relative;
    z-index: 1;
}

.team-group + .team-group {
    margin-top: 58px;
}

.team-group-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(36, 79, 43, 0.12);
}

.team-group-heading .eyebrow {
    margin: 0;
}

.team-group-heading span {
    color: var(--brand-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

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

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

.staff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    border: 1px solid rgba(36, 79, 43, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.staff-card:hover {
    transform: translateY(-6px);
    border-color: rgba(80, 128, 32, 0.28);
    box-shadow: var(--shadow-strong);
}

.staff-photo {
    position: relative;
    display: block;
    width: min(190px, calc(100% - 56px));
    margin: 28px auto 0;
    aspect-ratio: 1;
    border: 6px solid var(--white);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(64, 144, 128, 0.14), rgba(80, 128, 32, 0.12));
    box-shadow: 0 22px 44px -30px rgba(22, 56, 31, 0.72);
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.staff-photo-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: var(--brand-deeper);
}

.staff-photo-placeholder span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(36, 79, 43, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-deep);
    font-size: 1.65rem;
    font-weight: 800;
    box-shadow: 0 18px 38px -28px rgba(36, 79, 43, 0.55);
}

.staff-photo-placeholder small {
    color: var(--body);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.staff-card-body {
    display: grid;
    gap: 10px;
    width: 100%;
    padding: 24px;
    text-align: left;
}

.staff-card h3 {
    font-size: 1.28rem;
}

.staff-role {
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.staff-card-body p:not(.staff-role) {
    color: var(--body);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: justify;
    text-align-last: left;
}

.about-slideshow {
    position: relative;
    min-height: clamp(430px, 44vw, 560px);
    border: 10px solid var(--white);
    border-radius: 14px;
    background: var(--soft);
    box-shadow: 0 34px 80px -42px rgba(22, 56, 31, 0.45);
    overflow: hidden;
    isolation: isolate;
}

.about-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    animation: about-slide-fade 18s ease-in-out infinite;
}

.about-slide:nth-of-type(2) {
    animation-delay: 6s;
}

.about-slide:nth-of-type(3) {
    animation-delay: 12s;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: about-slide-zoom 18s ease-in-out infinite;
}

.about-slide:nth-of-type(2) img {
    animation-delay: 6s;
    object-position: center 42%;
}

.about-slide:nth-of-type(3) img {
    animation-delay: 12s;
    object-position: center 52%;
}

.about-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 56, 31, 0) 42%, rgba(22, 56, 31, 0.72) 100%);
    pointer-events: none;
}

.about-slide figcaption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 1;
    max-width: calc(100% - 44px);
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-slide-dots {
    position: absolute;
    right: 22px;
    bottom: 26px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.about-slide-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    animation: about-dot-pulse 18s ease-in-out infinite;
}

.about-slide-dots span:nth-child(2) {
    animation-delay: 6s;
}

.about-slide-dots span:nth-child(3) {
    animation-delay: 12s;
}

.about-slideshow.is-managed .about-slide,
.about-slideshow.is-managed .about-slide img,
.about-slideshow.is-managed .about-slide-dots span {
    animation: none;
}

.about-slideshow.is-managed .about-slide {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.about-slideshow.is-managed .about-slide.is-active {
    opacity: 1;
}

.about-slideshow.is-managed .about-slide img {
    transform: scale(1.04);
    transition: transform 6s ease;
}

.about-slideshow.is-managed .about-slide.is-active img {
    transform: scale(1.1);
}

.about-slideshow.is-managed .about-slide-dots span.is-active {
    background: var(--white);
    transform: scale(1.28);
}

@keyframes about-slide-fade {
    100% {
        opacity: 0;
    }

    0%,
    6%,
    30% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

@keyframes about-slide-zoom {
    0% {
        transform: scale(1.04);
    }

    30% {
        transform: scale(1.11);
    }

    38%,
    100% {
        transform: scale(1.04);
    }
}

@keyframes about-dot-pulse {
    100% {
        background: rgba(255, 255, 255, 0.42);
        transform: scale(1);
    }

    0%,
    6%,
    30% {
        background: var(--white);
        transform: scale(1.28);
    }

    38% {
        background: rgba(255, 255, 255, 0.42);
        transform: scale(1);
    }
}

.support-photo {
    margin-top: 26px;
    border-radius: 10px;
    background: var(--soft);
    box-shadow: 0 24px 54px -36px rgba(22, 56, 31, 0.5);
    overflow: hidden;
}

.support-photo img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.opportunity-list {
    display: grid;
    gap: 26px;
}

.opportunity-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 10px;
}

.form-layout {
    align-items: start;
}

.form-layout > * {
    min-width: 0;
}

.panel-form {
    display: grid;
    gap: 18px;
}

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

.form-intro {
    margin: 0 0 4px;
    padding: 14px 16px;
    border-radius: 6px;
    background: rgba(64, 144, 128, 0.1);
    color: var(--dark);
    font-size: 0.92rem;
    line-height: 1.55;
}

label {
    color: var(--dark);
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--soft);
    color: var(--dark);
    padding: 12px 15px;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(80, 128, 32, 0.16);
}

.form-hint {
    color: var(--body);
    font-size: 0.78rem;
    line-height: 1.5;
}

.field-error {
    margin: 0;
    color: #9a2d2d;
    font-size: 0.8rem;
    font-weight: 600;
}

.form-alert {
    border-left: 4px solid #9a2d2d;
    border-radius: 4px;
    background: rgba(154, 45, 45, 0.1);
    color: #701f1f;
    padding: 14px 16px;
    font-weight: 600;
}

.form-alert p {
    margin: 0;
}

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

.consent-field {
    margin-top: 6px;
}

.check-label {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--body);
    font-size: 0.87rem;
    line-height: 1.55;
}

.check-label input[type="checkbox"] {
    width: 20px;
    min-height: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.check-label a {
    color: var(--brand-deep);
    text-decoration: underline;
}

.notice {
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    background: rgba(80, 128, 32, 0.12);
    color: var(--dark);
    padding: 14px 16px;
    font-weight: 600;
}

.privacy-layout {
    display: grid;
    gap: 42px;
}

.privacy-title {
    margin: 0;
    text-align: left;
}

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

.privacy-layout > *,
.privacy-grid > * {
    min-width: 0;
}

.privacy-grid .rich-panel {
    align-content: start;
    gap: 16px;
    padding: 34px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
}

.privacy-grid h3 {
    font-size: 1.26rem;
}

.impact-results {
    margin: 0 0 42px;
    padding: 34px;
    border: 1px solid rgba(80, 128, 32, 0.16);
    border-radius: 8px;
    background: var(--soft);
}

.impact-results h2 {
    margin: 10px 0 22px;
    font-size: clamp(1.45rem, 2.5vw, 1.8rem);
}

.impact-results ul {
    display: grid;
    gap: 13px;
    list-style: none;
}

.impact-results li {
    position: relative;
    padding-left: 26px;
    color: var(--dark);
    line-height: 1.55;
}

.impact-results li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent);
}

.impact-contact-button {
    width: 100%;
    margin-top: 22px;
}

.application-section {
    background: linear-gradient(180deg, var(--white), var(--soft));
}

.application-aside {
    align-content: start;
}

.application-aside h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.application-steps {
    display: grid;
    gap: 13px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.application-steps p {
    display: flex;
    gap: 13px;
    align-items: start;
}

.application-steps strong {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(80, 128, 32, 0.14);
    color: var(--accent-dark);
}

.analytics-consent {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    display: grid;
    gap: 16px;
    width: min(420px, calc(100% - 28px));
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-strong);
}

.analytics-consent[hidden] {
    display: none;
}

.analytics-consent p {
    color: var(--body);
    font-size: 0.92rem;
    line-height: 1.55;
}

.analytics-consent strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.analytics-actions {
    display: flex;
    gap: 10px;
}

.analytics-actions .button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.9rem;
}

.mini-stats {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.mini-stats div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 30px -18px rgba(0, 64, 128, 0.28);
}

.mini-stats strong {
    color: var(--accent);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.85rem;
    line-height: 1;
}

.contact-details h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.contact-note {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.contact-note strong {
    color: var(--dark);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.25rem;
}

.site-footer {
    position: relative;
    padding: 95px 0 24px;
    background: var(--footer);
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo-img {
    width: 68px;
    height: 68px;
    border: 2px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(22, 56, 31, 0.24);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.2fr) minmax(145px, 0.7fr) minmax(145px, 0.75fr) minmax(280px, 1.3fr);
    gap: 28px;
}

.footer-about {
    display: grid;
    gap: 20px;
}

.footer-block {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-block h2 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.35rem;
}

.footer-block a {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Poppins", Arial, sans-serif;
    overflow-wrap: anywhere;
}

.footer-block p {
    color: rgba(255, 255, 255, 0.75);
}

.footer-block a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {
    .nav-shell {
        grid-template-columns: minmax(64px, 0.7fr) minmax(0, 1.8fr) minmax(106px, 0.7fr);
        width: min(100% - 32px, 1480px);
        gap: 16px;
        padding-inline: 18px;
    }

    .site-nav {
        justify-content: center;
        gap: 12px;
    }

    .site-nav a {
        font-size: 0.94rem;
    }

    .nav-dropdown-toggle {
        font-size: 0.94rem;
    }

    .nav-cta {
        min-width: 106px;
        min-height: 46px;
        padding-inline: 18px;
        font-size: 0.94rem;
    }

    .home-hero,
    .page-hero {
        padding-top: 64px;
    }
}

@media (max-width: 960px) {
    .feature-grid,
    .feature-grid.three,
    .project-grid,
    .news-grid,
    .news-board,
    .home-update-grid,
    .staff-grid,
    .board-grid,
    .counter-grid,
    .split-layout,
    .split-layout.reverse,
    .form-layout,
    .footer-grid,
    .cta-panel,
    .opportunity-card,
    .privacy-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-story-card,
    .news-story-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .news-story-featured {
        min-height: auto;
    }

    .news-story-featured .news-story-content {
        padding: 32px;
    }

    .home-update-card,
    .home-update-content {
        min-height: 320px;
    }

    .partner-card {
        flex-basis: clamp(230px, 42vw, 320px);
        width: clamp(230px, 42vw, 320px);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .article-gallery-item,
    .article-gallery-lead {
        grid-column: 1 / -1;
        height: 300px;
    }

    .photo-card {
        flex-basis: clamp(250px, 46vw, 360px);
        height: 320px;
    }

    .feature-grid {
        gap: 24px;
    }

    .feature-card-wide {
        grid-column: auto;
    }

    .staff-grid,
    .board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .counter-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .counter-card:last-child {
        border-bottom: 0;
    }

    .why-area {
        margin-top: 0;
        padding: 78px 0;
    }

    .cta-panel {
        justify-items: start;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1140px);
    }

    .site-header {
        min-height: 68px;
        padding: 8px 0;
    }

    .nav-shell {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: space-between;
        width: min(100% - 24px, 1480px);
        min-height: auto;
        gap: 0 12px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .brand {
        font-size: 1rem;
    }

    .site-header .brand {
        width: 48px;
        height: 48px;
    }

    .site-header .brand-logo {
        width: 48px !important;
        height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav {
        grid-column: 1 / -1;
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        border-top: 1px solid transparent;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        padding: 0;
        transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.24s ease, margin 0.24s ease, border-color 0.24s ease, visibility 0s linear 0.28s;
        scrollbar-width: auto;
    }

    .nav-shell.is-open .site-nav {
        max-height: 720px;
        margin-top: 10px;
        padding: 14px 0 8px;
        border-top-color: rgba(255, 255, 255, 0.14);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transition-delay: 0s;
    }

    .site-nav a {
        min-height: 46px;
        justify-content: flex-start;
        flex: 0 0 auto;
        width: 100%;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 0.98rem;
    }

    .nav-dropdown {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        min-height: 46px;
        padding: 10px 14px;
        border-radius: 12px;
        color: var(--white);
        font-size: 0.98rem;
    }

    .site-nav a:hover,
    .site-nav a.active,
    .nav-dropdown-toggle:hover,
    .nav-dropdown.active .nav-dropdown-toggle,
    .nav-dropdown.is-open .nav-dropdown-toggle {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        max-height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        opacity: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.22s ease, visibility 0s linear 0.24s;
        visibility: hidden;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 220px;
        padding: 6px;
        opacity: 1;
        transform: none;
        visibility: visible;
        transition-delay: 0s;
    }

    .nav-dropdown-menu a {
        min-height: 40px;
        padding: 9px 12px;
        color: rgba(255, 255, 255, 0.88);
        white-space: normal;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active {
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
    }

    .nav-actions {
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        justify-content: stretch;
        justify-self: stretch;
        transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.24s ease, visibility 0s linear 0.28s;
    }

    .nav-shell.is-open .nav-actions {
        max-height: 88px;
        padding: 4px 0 2px;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transition-delay: 0s;
    }

    .nav-cta {
        width: 100%;
        min-width: 0;
    }

    .home-hero {
        min-height: 580px;
        padding: 48px 0 112px;
    }

    .page-hero {
        min-height: 360px;
        padding: 44px 0 70px;
    }

    .article-hero {
        min-height: 440px;
        padding: 88px 0 56px;
    }

    .article-hero-inner {
        width: min(100% - 24px, 1140px);
        margin: 0 auto;
    }

    .article-hero h1 {
        font-size: clamp(1.85rem, 9.5vw, 2.75rem);
    }

    .home-hero h1 {
        font-size: clamp(2rem, 10vw, 3.05rem);
    }

    .page-hero h1 {
        font-size: clamp(1.75rem, 8.5vw, 2.45rem);
    }

    .home-hero p:not(.hero-kicker),
    .page-hero p:not(.hero-kicker) {
        font-size: 1rem;
    }

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

    .button {
        padding-inline: 18px;
    }

    .feature-area {
        margin-top: -64px;
    }

    .feature-panel,
    .rich-panel,
    .panel-form,
    .project-card,
    .news-card,
    .news-story-content,
    .article-sidebar-card {
        padding: 28px;
    }

    .contact-details .text-link,
    .privacy-grid .text-link {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .contact-details .text-link::after,
    .privacy-grid .text-link::after {
        display: none;
    }

    .privacy-grid .rich-panel {
        padding: 28px;
    }

    .impact-results {
        padding: 26px;
    }

    .analytics-consent {
        right: 14px;
        bottom: 14px;
        padding: 18px;
    }

    .analytics-actions {
        display: grid;
    }

    .news-story-card:not(.news-story-featured) .news-story-image,
    .news-story-image {
        min-height: 210px;
    }

    .news-story-featured .news-story-content,
    .news-story-content,
    .home-update-content {
        padding: 24px;
    }

    .home-update-card,
    .home-update-content {
        min-height: 285px;
    }

    .article-gallery {
        gap: 12px;
    }

    .article-gallery-item,
    .article-gallery-lead {
        height: 240px;
    }

    .article-copy {
        font-size: 1rem;
        line-height: 1.75;
        text-align: left;
    }

    .card-photo {
        margin: -28px -28px 24px;
    }

    .feature-card {
        min-height: auto;
        padding: 30px 26px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 36px;
        text-align: left;
    }

    .leadership-section::before {
        display: none;
    }

    .team-group-heading {
        align-items: start;
        flex-direction: column;
        gap: 6px;
    }

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

    .counter-band {
        padding-bottom: 145px;
    }

    .image-feature img {
        min-height: 280px;
    }

    .about-slideshow {
        min-height: 360px;
    }

    .photo-carousel {
        width: calc(100% + 24px);
        margin-left: -12px;
    }

    .photo-card {
        flex-basis: 76vw;
        height: 310px;
    }

    .partner-carousel {
        width: calc(100% + 24px);
        margin-left: -12px;
    }

    .partner-card {
        flex-basis: 74vw;
        width: 74vw;
        min-height: 154px;
        padding: 22px;
    }

    .partner-card img {
        max-width: 100%;
        height: 84px;
    }

    .about-slide figcaption {
        left: 14px;
        bottom: 18px;
        max-width: calc(100% - 90px);
        border-radius: 12px;
        font-size: 0.76rem;
    }

    .about-slide-dots {
        right: 14px;
        bottom: 24px;
    }

    .why-area .section-copy h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .compact-button {
        width: 100%;
    }

    .image-caption {
        left: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
    }

    .mini-stats div {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-carousel {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .photo-track {
        animation: none;
    }

    .partner-carousel {
        overflow-x: auto;
    }

    .partner-track {
        animation: none;
    }

    .hero-bg-carousel span {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .hero-bg-carousel span:first-child {
        opacity: 1;
    }

    .about-slide,
    .about-slide img,
    .about-slide-dots span {
        animation: none;
    }

    .about-slide {
        opacity: 0;
    }

    .about-slide:first-of-type {
        opacity: 1;
    }
}
