:root {
    --green: #008c45;
    --green-dark: #005f35;
    --green-deep: #00351f;

    --brand-blue: #07549a;
    --river-blue: #63bced;

    --gold: #f5b51b;
    --gold-dark: #d99800;

    --cream: #faf8f1;
    --white: #ffffff;

    --text: #17221c;
    --muted: #68726b;

    --border: rgba(23, 34, 28, 0.10);

    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

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

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

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

/* Header */

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-brand {
    margin-right: auto;
}

.custom-logo {
    display: block;
    width: auto;
    max-height: 72px;
}

.site-brand__fallback {
    color: var(--green-dark);
    font-size: 1.65rem;
    font-weight: 900;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
    font-weight: 700;
}

.primary-menu a {
    transition: color 0.2s ease;
}

.primary-menu a:hover {
    color: var(--green);
}

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

.language-link {
    font-size: 0.9rem;
    font-weight: 800;
}

/* Buttons */

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--green {
    background: var(--green);
    color: white;
    box-shadow: 0 10px 28px rgba(0, 140, 69, 0.20);
}

.btn--gold {
    background: var(--gold);
    color: #17221c;
    box-shadow: 0 10px 28px rgba(245, 181, 27, 0.18);
}

.btn--large {
    min-height: 56px;
    padding-inline: 28px;
}

/* Hero */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--green-deep);
}

.hero__background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            120deg,
            #00351f 0%,
            #005f35 55%,
            #008c45 100%
        );
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 21, 0.84),
            rgba(0, 35, 21, 0.36)
        );
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-block: 110px;
}

.hero__content {
    max-width: 800px;
}

.hero__eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #d9f0e1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 28px;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 620px;
    margin: 0 0 34px;
    color: rgba(255,255,255,0.84);
    font-size: 1.15rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Footer */

.site-footer {
    padding: 28px 0;
    background: var(--green-deep);
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 980px) {

    .primary-navigation {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }
}

@media (max-width: 680px) {

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

    .site-header__inner {
        min-height: 72px;
    }

    .custom-logo {
        max-height: 54px;
    }

    .language-link,
    .header-actions .btn {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero__inner {
        padding-block: 80px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.1rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }
}

/* Header refinement */

.site-brand .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-brand .custom-logo {
    max-height: 76px;
    width: auto;
}

@media (max-width: 680px) {
    .site-brand .custom-logo {
        max-height: 58px;
    }
}

/* =========================================================
   RIVER MOUNGO HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--green-deep);
}

.hero__background {
    position: absolute;
    inset: 0;

    background-image:
        url("../images/hero-river-moungo.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.01);
}

.hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 32, 21, 0.94) 0%,
            rgba(0, 40, 25, 0.83) 30%,
            rgba(0, 45, 26, 0.48) 52%,
            rgba(0, 30, 18, 0.10) 72%,
            rgba(0, 0, 0, 0.02) 100%
        );
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 105px 115px;
}

.hero__content {
    max-width: 760px;
}

.hero__eyebrow {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;

    color: var(--gold);

    font-size: 0.78rem;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;

    width: 48px;
    height: 3px;

    border-radius: 999px;
    background: var(--green);
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 28px;

    font-size: clamp(3.2rem, 5.7vw, 5.35rem);
    line-height: 1;
    letter-spacing: -0.055em;

    text-wrap: balance;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 590px;
    margin: 0 0 34px;

    color: rgba(255,255,255,0.88);

    font-size: 1.12rem;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* desktop crop: protect the canoe */
@media (min-width: 1200px) {
    .hero__background {
        background-position: center 52%;
    }
}

/* tablet */
@media (max-width: 980px) {

    .hero {
        min-height: 690px;
    }

    .hero__background {
        background-position: 63% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 33, 21, 0.93) 0%,
                rgba(0, 40, 25, 0.76) 48%,
                rgba(0, 35, 21, 0.25) 100%
            );
    }

    .hero__content {
        max-width: 620px;
    }

}

/* mobile */
@media (max-width: 680px) {

    .hero {
        min-height: 760px;
        align-items: flex-end;
    }

    .hero__background {
        background-position: 69% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 35, 22, 0.18) 0%,
                rgba(0, 35, 22, 0.30) 32%,
                rgba(0, 35, 22, 0.86) 62%,
                rgba(0, 35, 22, 0.98) 100%
            );
    }

    .hero__inner {
        padding-block: 245px 58px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__eyebrow {
        margin-bottom: 26px;
        font-size: 0.68rem;
        letter-spacing: 0.10em;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
        line-height: 1.02;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

}

/* =========================================================
   STEP 9 - HERO + HEADER REFINEMENT
   ========================================================= */

/* Keep navigation visible while scrolling */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 1px 0 rgba(23, 34, 28, 0.08);
}

/* WordPress admin bar compensation */
.admin-bar .site-header {
    top: 32px;
}

/* Restore the proper centred content container */
.hero__inner {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;

    padding-block: 92px 105px;
}

/* Slightly more premium desktop proportions */
.hero {
    min-height: 690px;
}

.hero__content {
    max-width: 700px;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(3rem, 4.7vw, 4.75rem);
    line-height: 0.98;

    letter-spacing: -0.05em;
}

/* Keep the fishermen as the visual focus on the right */
.hero__background {
    background-position: center 52%;
}

/* Controlled left overlay instead of darkening the whole photograph */
.hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 23, 0.94) 0%,
            rgba(0, 38, 24, 0.86) 27%,
            rgba(0, 40, 25, 0.60) 43%,
            rgba(0, 30, 18, 0.22) 59%,
            rgba(0, 0, 0, 0.02) 78%
        );
}

.hero p {
    max-width: 555px;
}

/* Header sizing */
.site-header__inner {
    min-height: 82px;
}

.site-brand .custom-logo {
    max-height: 68px;
}

/* Tablet */
@media (max-width: 980px) {

    .hero__inner {
        width: min(calc(100% - 36px), var(--container));
        padding-block: 82px 90px;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 4.4rem);
    }

    .hero__background {
        background-position: 62% center;
    }

}

/* Mobile */
@media (max-width: 680px) {

    .admin-bar .site-header {
        top: 46px;
    }

    .hero {
        min-height: 720px;
    }

    .hero__inner {
        width: calc(100% - 28px);
        margin-inline: auto;

        padding-block: 270px 52px;
    }

    .hero__background {
        background-position: 70% center;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 11vw, 3.45rem);
        line-height: 1;
    }

    .hero__eyebrow {
        font-size: 0.64rem;
    }
}


/* =========================================================
   STEP 10 - OUR STORY
   ========================================================= */

.story-section {
    position: relative;
    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #faf8f1 0%,
            #ffffff 100%
        );

    overflow: hidden;
}

.story-section::before {
    content: "";

    position: absolute;
    right: -140px;
    top: 70px;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background:
        rgba(99, 188, 237, 0.08);

    pointer-events: none;
}

.story-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    gap: 90px;

    align-items: center;
}


/* Photograph */

.story-media {
    position: relative;
}

.story-media img {
    width: 100%;
    height: 570px;

    object-fit: cover;
    object-position: center;

    border-radius: 32px;

    box-shadow:
        0 30px 80px
        rgba(0, 53, 31, 0.16);
}


/* 1993 floating badge */

.story-year-card {
    position: absolute;
    right: -30px;
    bottom: 38px;

    min-width: 178px;

    padding: 22px 25px;

    border-radius: 20px;

    color: white;

    background:
        var(--green-dark);

    box-shadow:
        0 20px 50px
        rgba(0, 53, 31, 0.22);
}

.story-year-card strong,
.story-year-card span {
    display: block;
}

.story-year-card strong {
    margin-bottom: 3px;

    color: var(--gold);

    font-size: 2rem;
    line-height: 1;
}

.story-year-card span {
    font-size: 0.84rem;
    font-weight: 700;
}


/* Text */

.section-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--green);

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.story-content h2 {
    max-width: 580px;

    margin: 0 0 28px;

    font-size:
        clamp(2.7rem, 4.2vw, 4.5rem);

    line-height: 1.02;

    letter-spacing: -0.05em;
}

.story-content h2 span {
    color: var(--green);
}

.story-content p {
    max-width: 570px;

    margin: 0 0 20px;

    color: var(--muted);

    font-size: 1.03rem;
    line-height: 1.75;
}

.story-content .story-lead {
    color: var(--text);

    font-size: 1.14rem;
    font-weight: 600;
}


/* Principles */

.story-principles {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin: 34px 0;
}

.story-principles > div {
    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background:
        rgba(255,255,255,0.75);
}

.story-principles strong,
.story-principles span {
    display: block;
}

.story-principles strong {
    margin-bottom: 5px;

    color: var(--green-dark);

    font-size: 0.98rem;
}

.story-principles span {
    color: var(--muted);

    font-size: 0.85rem;
    line-height: 1.45;
}


/* Link */

.story-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--green-dark);

    font-weight: 900;
}

.story-link span {
    width: 34px;
    height: 34px;

    display: inline-grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--green);

    transition:
        transform 0.2s ease;
}

.story-link:hover span {
    transform: translateX(4px);
}


/* Tablet */

@media (max-width: 980px) {

    .story-section {
        padding: 90px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .story-media {
        max-width: 700px;
    }

    .story-year-card {
        right: 24px;
    }

}


/* Mobile */

@media (max-width: 680px) {

    .story-section {
        padding: 72px 0;
    }

    .story-media img {
        height: 400px;

        border-radius: 22px;
    }

    .story-year-card {
        right: 14px;
        bottom: 14px;

        min-width: 145px;

        padding: 17px 19px;
    }

    .story-year-card strong {
        font-size: 1.65rem;
    }

    .story-content h2 {
        font-size:
            clamp(2.45rem, 11vw, 3.3rem);
    }

    .story-principles {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   STEP 11 - OUR WORK
   ========================================================= */

.work-section {
    padding: 120px 0;
    background: #ffffff;
}

.work-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.7fr);

    gap: 80px;
    align-items: end;

    margin-bottom: 54px;
}

.work-heading h2 {
    max-width: 720px;
    margin: 0;

    font-size:
        clamp(2.8rem, 4.6vw, 4.8rem);

    line-height: 1;
    letter-spacing: -0.05em;
}

.work-heading h2 span {
    color: var(--green);
}

.work-heading > p {
    max-width: 520px;
    margin: 0 0 7px;

    color: var(--muted);

    font-size: 1.03rem;
    line-height: 1.75;
}


/* Layout */

.work-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 28px;
}

.work-small-grid {
    display: grid;
    gap: 18px;
}


/* Small cards */

.work-card {
    position: relative;

    min-height: 210px;

    padding: 30px 30px 28px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fbfcfa
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.work-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0, 140, 69, 0.22);

    box-shadow:
        0 18px 45px
        rgba(0, 53, 31, 0.09);
}

.work-card__icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 14px;

    color: var(--green-dark);

    background:
        rgba(0, 140, 69, 0.09);

    font-size: 0.76rem;
    font-weight: 900;

    letter-spacing: 0.08em;
}

.work-card h3 {
    margin: 0 0 10px;

    font-size: 1.5rem;
    line-height: 1.1;
}

.work-card p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.6;
}

.work-card a {
    color: var(--green-dark);

    font-size: 0.9rem;
    font-weight: 900;
}


/* Mulatako feature */

.mulatako-feature {
    position: relative;

    min-height: 680px;

    display: grid;

    grid-template-rows:
        auto 1fr;

    overflow: hidden;

    border-radius: 30px;

    color: white;

    background:
        linear-gradient(
            150deg,
            #00351f 0%,
            #005f35 58%,
            #008c45 100%
        );

    box-shadow:
        0 26px 70px
        rgba(0, 53, 31, 0.20);
}

.mulatako-feature::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(245, 181, 27, 0.22),
            transparent 34%
        );

    pointer-events: none;
}

.mulatako-feature__content {
    position: relative;
    z-index: 2;

    max-width: 610px;

    padding: 48px 48px 20px;
}

.mulatako-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 900;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.mulatako-feature h3 {
    margin: 0 0 18px;

    font-size:
        clamp(2.8rem, 4vw, 4.3rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.mulatako-feature p {
    max-width: 540px;

    margin: 0 0 22px;

    color:
        rgba(255,255,255,0.82);

    font-size: 1.04rem;
    line-height: 1.7;
}

.mulatako-feature ul {
    display: grid;
    gap: 9px;

    margin: 0 0 30px;
    padding: 0;

    list-style: none;
}

.mulatako-feature li {
    position: relative;

    padding-left: 24px;

    color:
        rgba(255,255,255,0.88);

    font-size: 0.92rem;
}

.mulatako-feature li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.65em;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);
}


/* Decorative village illustration */

.mulatako-feature__visual {
    position: relative;
    min-height: 250px;
    margin-top: auto;

    overflow: hidden;
}

.mulatako-sun {
    position: absolute;

    width: 140px;
    height: 140px;

    right: 80px;
    bottom: 88px;

    border-radius: 50%;

    background:
        rgba(245, 181, 27, 0.95);

    box-shadow:
        0 0 0 28px
        rgba(245, 181, 27, 0.07);
}

.mulatako-river {
    position: absolute;

    left: -8%;
    right: -8%;
    bottom: -75px;

    height: 210px;

    border-radius: 50% 50% 0 0;

    background:
        linear-gradient(
            180deg,
            rgba(99, 188, 237, 0.90),
            rgba(7, 84, 154, 0.90)
        );

    transform:
        rotate(-5deg);
}

.mulatako-houses {
    position: absolute;

    left: 55px;
    right: 55px;
    bottom: 65px;

    display: flex;
    justify-content: space-between;
    align-items: end;

    z-index: 3;
}

.mulatako-houses span {
    position: relative;

    width: 105px;
    height: 72px;

    border-radius: 8px 8px 3px 3px;

    background:
        #f4e5bb;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.13);
}

.mulatako-houses span::before {
    content: "";

    position: absolute;

    left: -10px;
    top: -30px;

    width: 125px;
    height: 42px;

    background:
        var(--gold-dark);

    clip-path:
        polygon(
            50% 0,
            100% 100%,
            0 100%
        );
}

.mulatako-houses span:nth-child(2) {
    width: 125px;
    height: 86px;
}

.mulatako-houses span:nth-child(3) {
    width: 92px;
    height: 64px;
}


/* Tablet */

@media (max-width: 980px) {

    .work-section {
        padding: 90px 0;
    }

    .work-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .mulatako-feature {
        min-height: 620px;
    }

}


/* Mobile */

@media (max-width: 680px) {

    .work-section {
        padding: 72px 0;
    }

    .work-heading h2 {
        font-size:
            clamp(2.5rem, 11vw, 3.4rem);
    }

    .work-small-grid {
        grid-template-columns: 1fr;
    }

    .mulatako-feature {
        min-height: 690px;

        border-radius: 24px;
    }

    .mulatako-feature__content {
        padding:
            34px 28px 20px;
    }

    .mulatako-feature h3 {
        font-size:
            clamp(2.65rem, 12vw, 3.5rem);
    }

    .mulatako-houses {
        left: 26px;
        right: 26px;
    }

    .mulatako-houses span {
        width: 75px;
        height: 54px;
    }

    .mulatako-houses span::before {
        left: -7px;
        top: -22px;

        width: 89px;
        height: 31px;
    }

    .mulatako-houses span:nth-child(2) {
        width: 88px;
        height: 64px;
    }

    .mulatako-houses span:nth-child(3) {
        width: 68px;
        height: 49px;
    }

}


/* =========================================================
   STEP 12 - MULATAKO VISUAL + SECTION SPACING
   ========================================================= */

/* Tighter transition from Our Story into Our Work */

.story-section {
    padding-bottom: 85px;
}

.work-section {
    padding-top: 92px;
}


/* Replace the simple CSS village drawing with the real housing concept */

.mulatako-feature__visual {
    position: relative;

    min-height: 290px;

    margin-top: auto;

    overflow: hidden;

    background:
        url("../images/mulatako-housing-concept.jpg")
        center center / cover
        no-repeat;
}

.mulatako-feature__visual::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 77, 42, 0.04) 0%,
            rgba(0, 77, 42, 0.18) 48%,
            rgba(0, 53, 31, 0.72) 100%
        );
}

.mulatako-feature__visual::after {
    content: "A vision for dignified resettlement and village renewal";

    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 26px;

    z-index: 3;

    color: white;

    font-size: 0.82rem;
    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 0.02em;
}


/* Hide old CSS illustration elements */

.mulatako-sun,
.mulatako-river,
.mulatako-houses {
    display: none;
}


/* Slightly refine the featured card */

.mulatako-feature {
    background:
        linear-gradient(
            145deg,
            #00351f 0%,
            #005f35 58%,
            #007b43 100%
        );
}

.mulatako-feature__content {
    padding-bottom: 38px;
}


/* Desktop cards a little tighter */

.work-card {
    min-height: 195px;
}


/* Tablet */

@media (max-width: 980px) {

    .story-section {
        padding-bottom: 70px;
    }

    .work-section {
        padding-top: 75px;
    }

}


/* Mobile */

@media (max-width: 680px) {

    .story-section {
        padding-bottom: 58px;
    }

    .work-section {
        padding-top: 62px;
    }

    .mulatako-feature__visual {
        min-height: 240px;
    }

    .mulatako-feature__visual::after {
        left: 24px;
        right: 24px;
        bottom: 20px;
    }

}

 
/* ========================================================= 
   STEP 12 - MULATAKO VISUAL + SECTION SPACING 
   ========================================================= */ 
 
/* Tighter transition from Our Story into Our Work */ 
 
.story-section { 
    padding-bottom: 85px; 
} 
 
.work-section { 
    padding-top: 92px; 
} 
 
 
/* Replace the simple CSS village drawing with the real housing concept */ 
 
.mulatako-feature__visual { 
    position: relative; 
 
    min-height: 290px; 
 
    margin-top: auto; 
 
    overflow: hidden; 
 
    background: 
        url("../images/mulatako-housing-concept.png") 
        center center / cover 
        no-repeat; 
} 
 
.mulatako-feature__visual::before { 
    content: ""; 
 
    position: absolute; 
    inset: 0; 
 
    background: 
        linear-gradient( 
            180deg, 
            rgba(0, 77, 42, 0.04) 0%, 
            rgba(0, 77, 42, 0.18) 48%, 
            rgba(0, 53, 31, 0.72) 100% 
        ); 
} 
 
.mulatako-feature__visual::after { 
    content: "A vision for dignified resettlement and village renewal"; 
 
    position: absolute; 
 
    left: 34px; 
    right: 34px; 
    bottom: 26px; 
 
    z-index: 3; 
 
    color: white; 
 
    font-size: 0.82rem; 
    line-height: 1.4; 
 
    font-weight: 800; 
 
    letter-spacing: 0.02em; 
} 
 
 
/* Hide old CSS illustration elements */ 
 
.mulatako-sun, 
.mulatako-river, 
.mulatako-houses { 
    display: none; 
} 
 
 
/* Slightly refine the featured card */ 
 
.mulatako-feature { 
    background: 
        linear-gradient( 
            145deg, 
            #00351f 0%, 
            #005f35 58%, 
            #007b43 100% 
        ); 
} 
 
.mulatako-feature__content { 
    padding-bottom: 38px; 
} 
 
 
/* Desktop cards a little tighter */ 
 
.work-card { 
    min-height: 195px; 
} 
 
 
/* Tablet */ 
 
@media (max-width: 980px) { 
 
    .story-section { 
        padding-bottom: 70px; 
    } 
 
    .work-section { 
        padding-top: 75px; 
    } 
 
} 
 
 
/* Mobile */ 
 
@media (max-width: 680px) { 
 
    .story-section { 
        padding-bottom: 58px; 
    } 
 
    .work-section { 
        padding-top: 62px; 
    } 
 
    .mulatako-feature__visual { 
        min-height: 240px; 
    } 
 
    .mulatako-feature__visual::after { 
        left: 24px; 
        right: 24px; 
        bottom: 20px; 
    } 
 
} 
 

/* =========================================================
   STEP 13 - FROM THE FIELD
   ========================================================= */

.field-section {
    padding: 120px 0;

    background:
        #f7f6ef;
}

.field-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.68fr);

    gap: 70px;

    align-items: end;

    margin-bottom: 48px;
}

.field-heading h2 {
    margin: 0;

    font-size:
        clamp(2.8rem, 4.6vw, 4.8rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.field-heading h2 span {
    color: var(--green);
}

.field-heading > p {
    margin: 0 0 5px;

    max-width: 500px;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.75;
}


/* Main grid */

.field-feature-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(0, 0.65fr);

    grid-template-rows:
        310px
        310px;

    gap: 22px;
}


/* Photo cards */

.field-feature {
    position: relative;

    overflow: hidden;

    border-radius: 26px;

    background: var(--green-dark);
}

.field-feature--large {
    grid-row: 1 / 3;
}

.field-feature img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.field-feature:hover img {
    transform: scale(1.035);
}

.field-feature__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02) 25%,
            rgba(0,40,25,0.82) 100%
        );
}

.field-feature__content {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 30px;

    z-index: 3;

    color: white;
}

.field-feature__content > span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.field-feature__content h3 {
    max-width: 540px;

    margin: 0;

    font-size:
        clamp(1.9rem, 3vw, 3rem);

    line-height: 1.04;

    letter-spacing: -0.035em;
}

.field-feature:not(.field-feature--large)
.field-feature__content h3 {
    font-size: 1.75rem;
}

.field-feature__content p {
    max-width: 540px;

    margin: 14px 0 0;

    color:
        rgba(255,255,255,0.82);

    line-height: 1.6;
}


/* Text panel */

.field-message {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 38px;

    border-radius: 26px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #00351f,
            #006b3c
        );
}

.field-message__label {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.field-message h3 {
    margin: 0 0 18px;

    font-size: 2.15rem;

    line-height: 1.04;

    letter-spacing: -0.04em;
}

.field-message p {
    margin: 0 0 24px;

    color:
        rgba(255,255,255,0.78);

    font-size: 0.9rem;

    line-height: 1.65;
}

.field-message a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-weight: 900;
}

.field-message a span {
    color: var(--gold);
}


/* Tablet */

@media (max-width: 980px) {

    .field-section {
        padding: 90px 0;
    }

    .field-heading {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .field-feature-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 430px 300px;
    }

    .field-feature--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

}


/* Mobile */

@media (max-width: 680px) {

    .field-section {
        padding: 72px 0;
    }

    .field-heading h2 {
        font-size:
            clamp(2.5rem, 11vw, 3.4rem);
    }

    .field-feature-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: none;
    }

    .field-feature--large {
        grid-column: auto;
        grid-row: auto;

        min-height: 430px;
    }

    .field-feature:not(.field-feature--large) {
        min-height: 320px;
    }

    .field-feature__content {
        left: 24px;
        right: 24px;
        bottom: 23px;
    }

    .field-message {
        padding: 30px 26px;
    }

}


/* =========================================================
   STEP 14 - IMPACT + GET INVOLVED
   ========================================================= */


/* IMPACT */

.impact-section {
    padding: 120px 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            #002d1c 0%,
            #004d2a 55%,
            #006b3c 100%
        );
}

.impact-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.impact-heading .section-eyebrow {
    color: var(--gold);
}

.impact-heading h2 {
    margin: 0;

    font-size:
        clamp(2.8rem, 4.7vw, 4.9rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.impact-heading h2 span {
    color: var(--gold);
}


/* impact cards */

.impact-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        repeat(3, 0.75fr);

    gap: 18px;
}

.impact-card {
    min-height: 285px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.055);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}

.impact-card--featured {
    justify-content: center;

    padding: 38px;

    background:
        rgba(255,255,255,0.10);
}

.impact-card--featured > strong {
    margin-bottom: 18px;

    color: var(--gold);

    font-size:
        clamp(3.4rem, 5vw, 5rem);

    line-height: 0.9;
}

.impact-card__number {
    margin-bottom: auto;

    color: var(--gold);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.12em;
}

.impact-card h3 {
    margin: 0 0 12px;

    font-size: 1.45rem;

    line-height: 1.12;

    letter-spacing: -0.025em;
}

.impact-card--featured h3 {
    max-width: 430px;

    font-size:
        clamp(1.8rem, 2.6vw, 2.6rem);
}

.impact-card p {
    margin: 0;

    color:
        rgba(255,255,255,0.72);

    font-size: 0.88rem;

    line-height: 1.6;
}

.impact-card--featured p {
    max-width: 470px;

    font-size: 0.96rem;
}


/* GET INVOLVED */

.support-section {
    padding: 110px 0;

    background: var(--cream);
}

.support-panel {
    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    min-height: 560px;

    border-radius: 30px;

    box-shadow:
        0 28px 80px
        rgba(0,53,31,0.12);
}


/* left */

.support-copy {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #00351f,
            #006b3c
        );
}

.support-copy::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(245,181,27,0.13);
}

.support-eyebrow {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.support-copy h2 {
    max-width: 520px;

    margin: 0 0 25px;

    font-size:
        clamp(3rem, 4.7vw, 5rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.support-copy p {
    max-width: 490px;

    margin: 0;

    color:
        rgba(255,255,255,0.78);

    font-size: 1rem;

    line-height: 1.7;
}


/* right actions */

.support-actions {
    display: grid;

    grid-template-rows:
        repeat(3, 1fr);

    background: white;
}

.support-action {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px 50px;

    border-bottom:
        1px solid var(--border);

    transition:
        background 0.2s ease,
        padding-left 0.2s ease;
}

.support-action:last-child {
    border-bottom: 0;
}

.support-action:hover {
    padding-left: 58px;

    background:
        #f7fbf8;
}

.support-action--primary {
    background:
        #fff8e5;
}

.support-action__label {
    margin-bottom: 7px;

    color: var(--green);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.10em;

    text-transform: uppercase;
}

.support-action strong {
    color: var(--text);

    font-size:
        clamp(1.55rem, 2.2vw, 2.35rem);

    letter-spacing: -0.035em;
}

.support-action__arrow {
    position: absolute;

    right: 45px;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background: var(--green);

    font-size: 1.25rem;

    font-weight: 900;
}

.support-action--primary
.support-action__arrow {
    color: var(--text);

    background: var(--gold);
}


/* tablet */

@media (max-width: 980px) {

    .impact-section {
        padding: 90px 0;
    }

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

    .impact-card--featured {
        grid-column:
            1 / 3;
    }


    .support-section {
        padding: 90px 0;
    }

    .support-panel {
        grid-template-columns: 1fr;
    }

    .support-copy {
        min-height: 440px;
    }

}


/* mobile */

@media (max-width: 680px) {

    .impact-section {
        padding: 72px 0;
    }

    .impact-heading h2 {
        font-size:
            clamp(2.5rem, 11vw, 3.5rem);
    }

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

    .impact-card--featured {
        grid-column: auto;
    }

    .impact-card {
        min-height: 230px;
    }


    .support-section {
        padding: 72px 0;
    }

    .support-panel {
        border-radius: 24px;
    }

    .support-copy {
        min-height: auto;

        padding:
            48px 28px;
    }

    .support-copy h2 {
        font-size:
            clamp(2.7rem, 12vw, 3.7rem);
    }

    .support-action {
        min-height: 150px;

        padding:
            30px 78px 30px 28px;
    }

    .support-action:hover {
        padding-left: 28px;
    }

    .support-action__arrow {
        right: 24px;

        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   STEP 15 - NEWS + FULL FOOTER
   ========================================================= */


/* NEWS */

.news-section {
    padding: 120px 0;

    background:
        #ffffff;
}

.news-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.65fr);

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}

.news-heading h2 {
    margin: 0;

    font-size:
        clamp(2.8rem, 4.6vw, 4.8rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.news-heading h2 span {
    color: var(--green);
}

.news-heading__side {
    max-width: 480px;
}

.news-heading__side p {
    margin: 0 0 15px;

    color: var(--muted);

    line-height: 1.7;
}

.news-all-link {
    color: var(--green-dark);

    font-weight: 900;
}


/* news cards */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.news-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background: white;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.news-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 20px 55px
        rgba(0,53,31,0.10);
}

.news-card__media {
    display: block;

    height: 245px;

    overflow: hidden;

    background:
        #edf3ee;
}

.news-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

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

.news-card__placeholder {
    width: 100%;
    height: 100%;

    display: grid;

    place-items: center;

    color:
        rgba(0,77,42,0.18);

    background:
        linear-gradient(
            145deg,
            #eff5f0,
            #f8faf8
        );
}

.news-card__placeholder span {
    font-size: 2.4rem;

    font-weight: 900;
}

.news-card__body {
    padding: 27px;
}

.news-card__meta {
    margin-bottom: 12px;

    color: var(--green);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.news-card h3 {
    margin:
        0 0 14px;

    font-size: 1.45rem;

    line-height: 1.18;

    letter-spacing: -0.025em;
}

.news-card p {
    margin:
        0 0 20px;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.6;
}

.news-card__link {
    display:
        inline-flex;

    align-items: center;

    gap: 9px;

    color:
        var(--green-dark);

    font-weight: 900;
}

.news-card__link span {
    color:
        var(--green);
}


/* empty news state */

.news-empty {
    display: flex;

    align-items: center;

    gap: 28px;

    padding: 40px;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:
        #fafbf9;
}

.news-empty__mark {
    flex:
        0 0 auto;

    width: 72px;
    height: 72px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    color: white;

    background:
        var(--green);

    font-size: 1.8rem;

    font-weight: 900;
}

.news-empty h3 {
    margin:
        0 0 6px;

    font-size: 1.35rem;
}

.news-empty p {
    margin: 0;

    color:
        var(--muted);
}


/* =========================================================
   FULL FOOTER
   ========================================================= */

.site-footer-full {
    color: white;

    background:
        #002f1e;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.45fr
        0.75fr
        0.9fr
        1.15fr;

    gap: 65px;

    padding:
        78px 0 66px;
}


/* footer logo */

.footer-logo {
    display:
        inline-flex;

    align-items: center;

    margin-bottom: 24px;
}

.footer-logo img {
    width: auto;

    max-height: 92px;
}

.footer-logo strong {
    color: white;

    font-size: 1.8rem;
}


/* about */

.footer-about p {
    max-width: 360px;

    margin:
        0 0 22px;

    color:
        rgba(255,255,255,0.70);

    font-size: 0.92rem;

    line-height: 1.7;
}

.footer-location {
    color:
        var(--gold);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


/* columns */

.footer-column h3 {
    margin:
        6px 0 21px;

    font-size: 1rem;
}

.footer-column ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column li a {
    color:
        rgba(255,255,255,0.68);

    font-size: 0.88rem;

    transition:
        color 0.2s ease;
}

.footer-column li a:hover {
    color: white;
}


/* footer CTA */

.footer-action-column {
    padding-left: 35px;

    border-left:
        1px solid
        rgba(255,255,255,0.11);
}

.footer-action-label {
    display: block;

    margin-bottom: 12px;

    color:
        var(--gold);

    font-size:
        0.68rem;

    font-weight: 900;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}

.footer-action-column h3 {
    max-width: 270px;

    margin:
        0 0 15px;

    font-size:
        1.65rem;

    line-height: 1.12;

    letter-spacing:
        -0.035em;
}

.footer-action-column p {
    max-width: 300px;

    margin:
        0 0 24px;

    color:
        rgba(255,255,255,0.68);

    font-size: 0.88rem;

    line-height: 1.65;
}


/* footer bottom */

.footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,0.10);
}

.footer-bottom__inner {
    min-height: 74px;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 30px;
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,0.55);

    font-size: 0.8rem;
}

.footer-bottom__links {
    display: flex;

    gap: 24px;
}

.footer-bottom__links a {
    color:
        rgba(255,255,255,0.55);

    font-size: 0.8rem;
}


/* Tablet */

@media (max-width: 980px) {

    .news-section {
        padding:
            90px 0;
    }

    .news-heading {
        grid-template-columns:
            1fr;

        gap: 22px;
    }

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

    .news-card:last-child {
        grid-column:
            1 / 3;
    }


    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            50px;
    }

    .footer-action-column {
        padding-left: 0;

        border-left: 0;
    }

}


/* Mobile */

@media (max-width: 680px) {

    .news-section {
        padding:
            72px 0;
    }

    .news-heading h2 {
        font-size:
            clamp(2.5rem, 11vw, 3.4rem);
    }

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

    .news-card:last-child {
        grid-column: auto;
    }

    .news-empty {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .footer-main {
        grid-template-columns:
            1fr;

        gap: 38px;

        padding:
            58px 0 45px;
    }

    .footer-logo img {
        max-height: 78px;
    }

    .footer-bottom__inner {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            24px 0;
    }

}


/* =========================================================
   STEP 16 - ABOUT PAGE
   ========================================================= */

.page-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            135deg,
            #00351f,
            #006b3c
        );
}

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(245,181,27,0.16),
            transparent 30%
        );
}

.page-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,35,22,0.93),
            rgba(0,53,31,0.30)
        );
}

.page-hero__inner {
    position: relative;
    z-index: 2;

    padding-block: 90px;
}

.page-hero__eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 820px;

    margin: 0 0 25px;

    font-size:
        clamp(3.2rem, 5.5vw, 5.4rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    max-width: 620px;

    margin: 0;

    color:
        rgba(255,255,255,0.82);

    font-size: 1.08rem;

    line-height: 1.7;
}


/* intro */

.about-intro {
    padding: 110px 0;
}

.about-intro__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    gap: 90px;
}

.about-intro h2,
.about-history h2,
.about-values h2,
.about-mission h2,
.about-cta h2 {
    margin: 0;

    font-size:
        clamp(2.6rem, 4.3vw, 4.5rem);

    line-height: 1.02;

    letter-spacing: -0.05em;
}

.about-intro__copy p {
    color: var(--muted);

    font-size: 1rem;

    line-height: 1.75;
}

.about-intro__copy
.about-intro__lead {
    color: var(--text);

    font-size: 1.15rem;

    font-weight: 600;
}


/* history */

.about-history {
    padding: 110px 0;

    background:
        #f7f6ef;
}

.about-history__grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 75px;

    align-items: center;
}

.about-history__card {
    padding: 48px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #00351f,
            #006b3c
        );
}

.about-history__card > span {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 4.2rem;

    font-weight: 900;

    line-height: 0.9;
}

.about-history__card h3 {
    margin: 0 0 18px;

    font-size: 2rem;

    line-height: 1.05;
}

.about-history__card p,
.about-history__content p {
    color: var(--muted);

    line-height: 1.75;
}

.about-history__card p {
    color:
        rgba(255,255,255,0.76);
}


/* values */

.about-values {
    padding: 110px 0;
}

.about-values__heading {
    max-width: 700px;

    margin-bottom: 48px;
}

.about-values__grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.about-values__grid article {
    min-height: 260px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background: white;
}

.about-values__grid article > span {
    display: block;

    margin-bottom: 55px;

    color: var(--green);

    font-size: 0.72rem;

    font-weight: 900;
}

.about-values__grid h3 {
    margin: 0 0 10px;

    font-size: 1.4rem;
}

.about-values__grid p {
    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* mission vision */

.about-mission {
    padding: 110px 0;

    color: white;

    background:
        #00351f;
}

.about-mission__grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 0;

    overflow: hidden;

    border-radius: 28px;
}

.about-mission article {
    padding: 58px;

    background:
        rgba(255,255,255,0.04);
}

.about-mission__vision {
    background:
        rgba(255,255,255,0.08) !important;
}

.about-mission
.section-eyebrow {
    color: var(--gold);
}

.about-mission h2 {
    color: white;
}

.about-mission p {
    color:
        rgba(255,255,255,0.72);

    line-height: 1.7;
}


/* CTA */

.about-cta {
    padding: 100px 0;

    background: var(--cream);
}

.about-cta__panel {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    padding: 55px;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 24px 65px
        rgba(0,53,31,0.10);
}

.about-cta__actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


/* tablet */

@media (max-width: 980px) {

    .about-intro__grid,
    .about-history__grid,
    .about-mission__grid {
        grid-template-columns: 1fr;
    }

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

    .about-cta__panel {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* mobile */

@media (max-width: 680px) {

    .page-hero {
        min-height: 460px;
    }

    .page-hero h1 {
        font-size:
            clamp(2.7rem, 12vw, 3.8rem);
    }

    .about-intro,
    .about-history,
    .about-values,
    .about-mission,
    .about-cta {
        padding:
            72px 0;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-history__card,
    .about-mission article {
        padding: 34px 28px;
    }

    .about-cta__panel {
        padding: 34px 28px;
    }

    .about-cta__actions {
        width: 100%;
    }

    .about-cta__actions .btn {
        width: 100%;
    }

}


/* =========================================================
   STEP 17 - ABOUT COMMUNITY VISUAL
   ========================================================= */

.about-community-visual {
    padding: 0 0 110px;

    background: #faf8f1;
}

.about-community-visual__frame {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: 30px;

    background: var(--green-dark);

    box-shadow:
        0 28px 75px
        rgba(0,53,31,0.14);
}

.about-community-visual__frame img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.7s ease;
}

.about-community-visual__frame:hover img {
    transform: scale(1.025);
}

.about-community-visual__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 42, 26, 0.92) 0%,
            rgba(0, 48, 29, 0.72) 36%,
            rgba(0, 35, 22, 0.25) 66%,
            rgba(0, 0, 0, 0.05) 100%
        );
}

.about-community-visual__content {
    position: relative;
    z-index: 2;

    max-width: 610px;

    padding:
        72px 65px;

    color: white;
}

.about-community-visual__content > span {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.about-community-visual__content h2 {
    margin: 0 0 22px;

    font-size:
        clamp(2.8rem, 4.7vw, 4.8rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.about-community-visual__content p {
    max-width: 500px;

    margin: 0;

    color:
        rgba(255,255,255,0.82);

    font-size: 1rem;

    line-height: 1.75;
}


/* Tablet */

@media (max-width: 980px) {

    .about-community-visual {
        padding-bottom: 90px;
    }

    .about-community-visual__frame {
        min-height: 520px;
    }

    .about-community-visual__content {
        padding:
            60px 48px;
    }

}


/* Mobile */

@media (max-width: 680px) {

    .about-community-visual {
        padding-bottom: 72px;
    }

    .about-community-visual__frame {
        min-height: 620px;

        border-radius: 24px;
    }

    .about-community-visual__frame img {
        object-position: 62% center;
    }

    .about-community-visual__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,35,22,0.12) 0%,
                rgba(0,35,22,0.35) 38%,
                rgba(0,35,22,0.92) 72%,
                rgba(0,35,22,0.98) 100%
            );
    }

    .about-community-visual__content {
        position: absolute;

        left: 0;
        right: 0;
        bottom: 0;

        padding:
            34px 28px;
    }

    .about-community-visual__content h2 {
        font-size:
            clamp(2.45rem, 11vw, 3.45rem);
    }

}


/* =========================================================
   STEP 18 - OUR WORK PAGE
   ========================================================= */


/* HERO */

.work-page-hero {
    min-height: 510px;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            120deg,
            #002f1e 0%,
            #005a33 62%,
            #008c45 100%
        );
}

.work-page-hero__inner {
    padding-block: 90px;
}

.work-page-hero h1 {
    max-width: 850px;

    margin: 0 0 26px;

    font-size:
        clamp(3.2rem, 5.5vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.work-page-hero h1 span {
    display: block;

    color: var(--gold);
}

.work-page-hero p {
    max-width: 660px;

    margin: 0;

    color:
        rgba(255,255,255,0.82);

    font-size: 1.08rem;

    line-height: 1.75;
}


/* INTRO */

.work-page-intro {
    padding: 110px 0;

    background: var(--cream);
}

.work-page-intro__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.88fr);

    gap: 90px;
}

.work-page-intro h2 {
    margin: 0;

    max-width: 680px;

    font-size:
        clamp(2.7rem, 4.4vw, 4.6rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.work-page-intro__grid p {
    color: var(--muted);

    line-height: 1.75;
}

.work-page-intro__lead {
    color: var(--text) !important;

    font-size: 1.15rem;

    font-weight: 600;
}


/* GENERIC PROGRAMMES */

.programme-section {
    padding: 110px 0;
}

.programme-section--light {
    background: white;
}

.programme-section--green {
    color: white;

    background:
        #003f27;
}

.programme-split {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 85px;

    align-items: center;
}

.programme-split--reverse {
    grid-template-columns:
        1.1fr 0.9fr;
}

.programme-number {
    display: block;

    margin-bottom: 28px;

    color: var(--green);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.12em;
}

.programme-section--green
.programme-number {
    color: var(--gold);
}

.programme-copy h2 {
    margin: 0 0 24px;

    font-size:
        clamp(2.8rem, 4.3vw, 4.5rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.programme-copy p {
    max-width: 560px;

    line-height: 1.75;
}

.programme-copy
.programme-lead {
    font-size: 1.12rem;

    font-weight: 600;
}

.programme-section--light
.programme-copy p {
    color: var(--muted);
}

.programme-section--light
.programme-lead {
    color: var(--text);
}

.programme-section--green
.programme-copy p {
    color:
        rgba(255,255,255,0.72);
}

.programme-section--green
.programme-lead {
    color: white;
}

.programme-section--green
.section-eyebrow {
    color: var(--gold);
}

.programme-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    color: var(--green-dark);

    font-weight: 900;
}

.programme-section--green
.programme-link {
    color: var(--gold);
}

.programme-photo {
    overflow: hidden;

    min-height: 520px;

    border-radius: 28px;

    box-shadow:
        0 26px 65px
        rgba(0,53,31,0.14);
}

.programme-photo img {
    width: 100%;
    height: 520px;

    object-fit: cover;
}


/* WATER */

.programme-section--water {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #eef8fc,
            #ffffff
        );
}

.water-feature {
    position: relative;
}

.water-feature__heading {
    max-width: 800px;

    margin-bottom: 55px;
}

.water-feature__heading h2 {
    max-width: 730px;

    margin: 0;

    font-size:
        clamp(2.8rem, 4.5vw, 4.7rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.water-feature__content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    max-width: 950px;
}

.water-feature__statement p {
    margin: 0;

    color: var(--brand-blue);

    font-size:
        clamp(1.55rem, 2.3vw, 2.25rem);

    font-weight: 700;

    line-height: 1.3;
}

.water-feature__details p {
    margin: 0 0 18px;

    color: var(--muted);

    line-height: 1.75;
}


/* decorative river lines */

.water-river-mark {
    position: absolute;

    right: -110px;
    bottom: -50px;

    width: 550px;
    height: 210px;

    opacity: 0.13;
}

.water-river-mark span {
    position: absolute;

    right: 0;

    width: 100%;
    height: 85px;

    border:
        14px solid
        var(--river-blue);

    border-left: 0;
    border-right: 0;

    border-radius: 50%;
}

.water-river-mark span:nth-child(1) {
    top: 0;
}

.water-river-mark span:nth-child(2) {
    top: 55px;

    width: 86%;
}

.water-river-mark span:nth-child(3) {
    top: 110px;

    width: 72%;
}


/* MULATAKO */

.work-mulatako {
    padding: 115px 0;

    background: var(--cream);
}

.work-mulatako__panel {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    border-radius: 30px;

    color: white;

    background:
        #00351f;

    box-shadow:
        0 28px 80px
        rgba(0,53,31,0.16);
}

.work-mulatako__copy {
    padding: 58px;
}

.programme-number--gold {
    color: var(--gold);
}

.work-mulatako__eyebrow {
    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.work-mulatako h2 {
    margin: 0 0 20px;

    font-size:
        clamp(3rem, 4.6vw, 4.9rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.work-mulatako__lead {
    max-width: 540px;

    color:
        rgba(255,255,255,0.80);

    font-size: 1.08rem;

    line-height: 1.7;
}

.work-mulatako__points {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

    margin:
        32px 0;
}

.work-mulatako__points > div {
    padding: 17px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.05);
}

.work-mulatako__points strong,
.work-mulatako__points span {
    display: block;
}

.work-mulatako__points strong {
    margin-bottom: 4px;

    color: var(--gold);
}

.work-mulatako__points span {
    color:
        rgba(255,255,255,0.70);

    font-size: 0.82rem;
}

.work-mulatako__image {
    min-height: 700px;
}

.work-mulatako__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* CTA */

.work-page-cta {
    padding: 100px 0;

    background: white;
}

.work-page-cta__panel {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    padding: 55px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #f5f9f6,
            #ffffff
        );

    box-shadow:
        0 22px 60px
        rgba(0,53,31,0.08);
}

.work-page-cta h2 {
    max-width: 700px;

    margin: 0;

    font-size:
        clamp(2.5rem, 4vw, 4rem);

    line-height: 1;

    letter-spacing: -0.05em;
}


/* TABLET */

@media (max-width: 980px) {

    .work-page-intro__grid,
    .programme-split,
    .programme-split--reverse,
    .work-mulatako__panel {
        grid-template-columns: 1fr;
    }

    .programme-photo {
        min-height: 460px;
    }

    .programme-photo img {
        height: 460px;
    }

    .water-feature__content {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .work-mulatako__image {
        min-height: 500px;
    }

    .work-page-cta__panel {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .work-page-hero {
        min-height: 460px;
    }

    .work-page-hero h1 {
        font-size:
            clamp(2.7rem, 12vw, 3.8rem);
    }

    .work-page-intro,
    .programme-section,
    .work-mulatako,
    .work-page-cta {
        padding:
            72px 0;
    }

    .programme-photo,
    .programme-photo img {
        height: 380px;

        min-height: 380px;
    }

    .work-mulatako__copy {
        padding: 34px 28px;
    }

    .work-mulatako__points {
        grid-template-columns: 1fr;
    }

    .work-mulatako__image {
        min-height: 350px;
    }

    .work-page-cta__panel {
        padding: 34px 28px;
    }

}


/* =========================================================
   STEP 19 - MULATAKO PLAN PAGE
   ========================================================= */

.mulatako-page-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: white;

    background:
        var(--green-deep);
}

.mulatako-page-hero__bg {
    position: absolute;
    inset: 0;

    background:
        url("../images/mulatako-housing-concept.png")
        center center / cover
        no-repeat;
}

.mulatako-page-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,35,22,0.96) 0%,
            rgba(0,45,27,0.84) 38%,
            rgba(0,40,24,0.42) 64%,
            rgba(0,0,0,0.08) 100%
        );
}

.mulatako-page-hero__inner {
    position: relative;
    z-index: 2;

    padding-block: 110px;
}

.mulatako-page-hero h1 {
    max-width: 820px;

    margin: 0 0 28px;

    font-size:
        clamp(3.4rem, 5.7vw, 5.8rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.mulatako-page-hero h1 span {
    display: block;

    color: var(--gold);
}

.mulatako-page-hero p {
    max-width: 620px;

    margin: 0 0 34px;

    color:
        rgba(255,255,255,0.84);

    font-size: 1.08rem;

    line-height: 1.75;
}

.mulatako-page-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


/* INTRO */

.mulatako-intro {
    padding: 110px 0;

    background: var(--cream);
}

.mulatako-intro__grid {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 90px;
}

.mulatako-intro h2 {
    margin: 0;

    font-size:
        clamp(2.7rem, 4.4vw, 4.6rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.mulatako-intro h2 span {
    display: block;

    color: var(--green);
}

.mulatako-intro__copy p {
    color: var(--muted);

    line-height: 1.75;
}

.mulatako-intro__copy
.mulatako-intro__lead {
    color: var(--text);

    font-size: 1.15rem;

    font-weight: 600;
}


/* VISUAL */

.mulatako-visual {
    padding:
        0 0 110px;

    background:
        var(--cream);
}

.mulatako-visual__frame {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 28px 80px
        rgba(0,53,31,0.16);
}

.mulatako-visual__frame img {
    width: 100%;
    height: 620px;

    object-fit: cover;
}

.mulatako-visual__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02) 45%,
            rgba(0,35,22,0.80) 100%
        );
}

.mulatako-visual__caption {
    position: absolute;

    left: 40px;
    bottom: 32px;

    z-index: 2;

    color: white;

    font-weight: 900;
}


/* PILLARS */

.mulatako-pillars {
    padding: 115px 0;

    background: white;
}

.mulatako-pillars__heading {
    max-width: 760px;

    margin-bottom: 48px;
}

.mulatako-pillars__heading h2 {
    margin: 0;

    font-size:
        clamp(2.8rem, 4.6vw, 4.8rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.mulatako-pillars__heading h2 span {
    display: block;

    color: var(--green);
}

.mulatako-pillars__grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.mulatako-pillars__grid article {
    min-height: 300px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        #fbfcfa;
}

.mulatako-pillars__grid article > span {
    display: block;

    margin-bottom: 70px;

    color: var(--green);

    font-size: 0.72rem;

    font-weight: 900;
}

.mulatako-pillars__grid h3 {
    margin: 0 0 12px;

    font-size: 1.4rem;
}

.mulatako-pillars__grid p {
    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.6;
}


/* ROADMAP */

.mulatako-roadmap {
    padding: 115px 0;

    color: white;

    background:
        #00351f;
}

.mulatako-roadmap__grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 85px;
}

.mulatako-roadmap__intro h2 {
    margin: 0 0 22px;

    font-size:
        clamp(2.8rem, 4.5vw, 4.7rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.mulatako-roadmap__intro p {
    color:
        rgba(255,255,255,0.72);

    line-height: 1.75;
}

.mulatako-roadmap
.section-eyebrow {
    color: var(--gold);
}

.mulatako-roadmap__steps {
    display: grid;

    gap: 16px;
}

.mulatako-roadmap__steps article {
    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.05);
}

.mulatako-roadmap__steps span {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.mulatako-roadmap__steps strong {
    display: block;

    margin-bottom: 8px;

    font-size: 1.35rem;
}

.mulatako-roadmap__steps p {
    margin: 0;

    color:
        rgba(255,255,255,0.68);

    line-height: 1.6;
}


/* PRINCIPLES */

.mulatako-principles {
    padding: 115px 0;

    background:
        #f7f6ef;
}

.mulatako-principles__heading {
    max-width: 760px;

    margin-bottom: 48px;
}

.mulatako-principles__heading h2 {
    margin: 0;

    font-size:
        clamp(2.8rem, 4.5vw, 4.7rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.mulatako-principles__heading h2 span {
    display: block;

    color: var(--green);
}

.mulatako-principles__grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.mulatako-principles__grid article {
    padding: 30px;

    border-radius: 20px;

    background: white;

    border:
        1px solid var(--border);
}

.mulatako-principles__grid h3 {
    margin: 0 0 10px;

    font-size: 1.3rem;
}

.mulatako-principles__grid p {
    margin: 0;

    color: var(--muted);

    line-height: 1.6;
}


/* SUPPORT */

.mulatako-support {
    padding: 100px 0;

    background: white;
}

.mulatako-support__panel {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    padding: 58px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #00351f,
            #006b3c
        );
}

.mulatako-support h2 {
    max-width: 700px;

    margin: 0 0 18px;

    font-size:
        clamp(2.7rem, 4.2vw, 4.3rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.mulatako-support p {
    max-width: 560px;

    margin: 0;

    color:
        rgba(255,255,255,0.74);

    line-height: 1.7;
}

.mulatako-support
.section-eyebrow {
    color: var(--gold);
}

.mulatako-support__actions {
    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 240px;
}


/* TABLET */

@media (max-width: 980px) {

    .mulatako-intro__grid,
    .mulatako-roadmap__grid {
        grid-template-columns: 1fr;
    }

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

    .mulatako-support__panel {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .mulatako-page-hero {
        min-height: 590px;
    }

    .mulatako-page-hero h1 {
        font-size:
            clamp(2.8rem, 12vw, 3.9rem);
    }

    .mulatako-page-hero__actions {
        flex-direction: column;
    }

    .mulatako-page-hero__actions .btn {
        width: 100%;
    }

    .mulatako-intro,
    .mulatako-pillars,
    .mulatako-roadmap,
    .mulatako-principles,
    .mulatako-support {
        padding:
            72px 0;
    }

    .mulatako-visual {
        padding-bottom: 72px;
    }

    .mulatako-visual__frame,
    .mulatako-visual__frame img {
        min-height: 430px;
        height: 430px;
    }

    .mulatako-pillars__grid,
    .mulatako-principles__grid {
        grid-template-columns: 1fr;
    }

    .mulatako-support__panel {
        padding: 36px 28px;
    }

    .mulatako-support__actions {
        width: 100%;
    }

    .mulatako-support__actions .btn {
        width: 100%;
    }

}


/* =========================================================
   STEP 20 - NEWS PAGE
   ========================================================= */

.news-page-hero {
    min-height: 470px;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            125deg,
            #002f1e 0%,
            #005b34 65%,
            #008c45 100%
        );
}

.news-page-hero__inner {
    padding-block: 90px;
}

.news-page-hero h1 {
    max-width: 800px;

    margin: 0 0 24px;

    font-size:
        clamp(3.3rem, 5.5vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.news-page-hero h1 span {
    display: block;

    color: var(--gold);
}

.news-page-hero p {
    max-width: 620px;

    margin: 0;

    color:
        rgba(255,255,255,0.82);

    font-size: 1.08rem;

    line-height: 1.75;
}


/* ARCHIVE */

.news-archive {
    min-height: 600px;

    padding: 110px 0;

    background: var(--cream);
}

.news-archive__grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 26px;
}

.news-card--archive h2 {
    margin:
        0 0 14px;

    font-size: 1.5rem;

    line-height: 1.18;

    letter-spacing: -0.025em;
}


/* pagination */

.news-pagination {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}

.news-pagination .page-numbers {
    min-width: 44px;
    height: 44px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin: 0 4px;

    padding-inline: 13px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: var(--text);

    background: white;

    font-size: 0.85rem;

    font-weight: 800;
}

.news-pagination
.page-numbers.current {
    color: white;

    border-color: var(--green);

    background: var(--green);
}


/* empty state */

.news-archive-empty {
    max-width: 760px;

    padding: 65px;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 24px 65px
        rgba(0,53,31,0.08);
}

.news-archive-empty h2 {
    margin: 0 0 20px;

    font-size:
        clamp(2.7rem, 4.3vw, 4.4rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.news-archive-empty p {
    max-width: 590px;

    margin: 0;

    color: var(--muted);

    line-height: 1.75;
}


/* tablet */

@media (max-width: 980px) {

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

}


/* mobile */

@media (max-width: 680px) {

    .news-page-hero {
        min-height: 430px;
    }

    .news-page-hero h1 {
        font-size:
            clamp(2.8rem, 12vw, 3.8rem);
    }

    .news-archive {
        padding: 72px 0;
    }

    .news-archive__grid {
        grid-template-columns: 1fr;
    }

    .news-archive-empty {
        padding: 36px 28px;
    }

}


/* =========================================================
   STEP 21 - CONTACT PAGE
   ========================================================= */

.contact-page-hero {
    min-height: 470px;

    display: flex;
    align-items: center;

    color: white;

    background:
        linear-gradient(
            125deg,
            #002f1e 0%,
            #005b34 65%,
            #008c45 100%
        );
}

.contact-page-hero__inner {
    padding-block: 90px;
}

.contact-page-hero h1 {
    max-width: 850px;

    margin: 0 0 24px;

    font-size:
        clamp(3.2rem, 5.5vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.contact-page-hero h1 span {
    display: block;

    color: var(--gold);
}

.contact-page-hero p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,0.82);

    font-size: 1.08rem;

    line-height: 1.75;
}


/* MAIN */

.contact-main {
    padding: 110px 0;

    background: var(--cream);
}

.contact-main__grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: start;
}

.contact-info h2,
.contact-form-card h2,
.contact-partner h2 {
    margin: 0 0 24px;

    font-size:
        clamp(2.6rem, 4.3vw, 4.5rem);

    line-height: 1;

    letter-spacing: -0.05em;
}

.contact-info > p {
    max-width: 560px;

    color: var(--muted);

    line-height: 1.75;
}


/* DETAILS */

.contact-details {
    display: grid;

    gap: 16px;

    margin-top: 38px;
}

.contact-detail {
    padding: 24px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: white;
}

.contact-detail__label {
    display: block;

    margin-bottom: 8px;

    color: var(--green);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.contact-detail strong {
    display: block;

    margin-bottom: 5px;

    font-size: 1.08rem;
}

.contact-detail p {
    margin: 0;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.55;
}


/* FORM */

.contact-form-card {
    padding: 42px;

    border-radius: 28px;

    background: white;

    box-shadow:
        0 24px 65px
        rgba(0,53,31,0.10);
}

.contact-form {
    display: grid;

    gap: 20px;

    margin-top: 28px;
}

.contact-form__row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.contact-form label {
    display: block;

    margin-bottom: 7px;

    font-size: 0.82rem;

    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 14px 16px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: #fbfcfa;

    color: var(--text);

    font: inherit;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px
        rgba(0,140,69,0.08);
}


/* PARTNER CTA */

.contact-partner {
    padding: 0 0 100px;

    background: var(--cream);
}

.contact-partner__panel {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px;

    padding: 58px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #00351f,
            #006b3c
        );
}

.contact-partner
.section-eyebrow {
    color: var(--gold);
}

.contact-partner h2 {
    color: white;
}

.contact-partner p {
    max-width: 560px;

    margin: 0;

    color:
        rgba(255,255,255,0.74);

    line-height: 1.7;
}


/* TABLET */

@media (max-width: 980px) {

    .contact-main__grid {
        grid-template-columns: 1fr;
    }

    .contact-partner__panel {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .contact-page-hero {
        min-height: 430px;
    }

    .contact-page-hero h1 {
        font-size:
            clamp(2.8rem, 12vw, 3.8rem);
    }

    .contact-main {
        padding: 72px 0;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-partner {
        padding-bottom: 72px;
    }

    .contact-partner__panel {
        padding: 36px 28px;
    }

}


/* =========================================================
   STEP 22 - MOBILE NAVIGATION
   ========================================================= */

.mobile-menu-toggle,
.mobile-navigation {
    display: none;
}


/* hamburger */

.mobile-menu-toggle {
    width: 46px;
    height: 46px;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(0,140,69,0.08);

    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 19px;
    height: 2px;

    display: block;

    border-radius: 4px;

    background:
        var(--green-deep);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* animate to X */

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* Mobile panel */

.mobile-navigation {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 999;

    overflow: hidden;

    max-height: 0;

    opacity: 0;

    color: white;

    background:
        linear-gradient(
            145deg,
            #002f1e,
            #005f35
        );

    box-shadow:
        0 22px 55px
        rgba(0,0,0,0.16);

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

.mobile-navigation.is-open {
    max-height: 720px;

    opacity: 1;
}

.mobile-navigation__inner {
    padding-top: 28px;
    padding-bottom: 32px;
}


/* menu */

.mobile-menu {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mobile-menu li {
    border-bottom:
        1px solid
        rgba(255,255,255,0.10);
}

.mobile-menu a {
    min-height: 54px;

    display: flex;

    align-items: center;

    color: white;

    font-size: 1.05rem;

    font-weight: 800;
}

.mobile-menu
.current-menu-item > a {
    color: var(--gold);
}


/* mobile actions */

.mobile-navigation__actions {
    display: grid;

    gap: 18px;

    padding-top: 28px;
}

.mobile-language {
    color:
        rgba(255,255,255,0.72);

    font-size: 0.85rem;

    font-weight: 700;
}


/* prevent background scrolling */

body.mobile-menu-open {
    overflow: hidden;
}


/* tablet + mobile navigation */

@media (max-width: 980px) {

    .primary-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;

        margin-left: auto;
    }

    .mobile-navigation {
        display: block;
    }

    .site-header__inner {
        min-height: 76px;
    }

    .site-brand {
        margin-right: 0;
    }

    .site-brand .custom-logo {
        max-height: 62px;
    }

}


/* phone */

@media (max-width: 680px) {

    .site-header__inner {
        min-height: 70px;
    }

    .site-brand .custom-logo {
        max-height: 55px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   CONTACT FORM STATUS
   ========================================================= */

.contact-form-notice {
    margin: 0 0 24px;
    padding: 15px 18px;

    border-radius: 12px;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
}

.contact-form-notice--success {
    color: #005b34;
    background: #e8f6ee;
    border: 1px solid #b9e3ca;
}

.contact-form-notice--error {
    color: #8a1f17;
    background: #fff0ee;
    border: 1px solid #f1c4bf;
}

.contact-form__honeypot {
    position: absolute !important;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);

    white-space: nowrap;
}

