﻿/* ── FONT FACE ────────────────────────────────────── */
@font-face {
    font-family: 'Museo';
    src: url('/fonts/Museo500-Regular.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ── DESIGN TOKENS ────────────────────────────────── */
:root {
    --accent: #d56705; /* #a54e00 - WCAG AA: white 5.69 | cream 5.19 | sage 4.79 */
    --accent-dark: #bb5b04; /* Dark orange for hover states */
    --accent-on-dk: #f0b85a; /* WCAG AA on dark-green bg: 6.69:1 */
    --accent-light: #d56705; /* Brand orange — decorative/large elements only */
    --blue: #2d68b3; /* SGP logo blue — WCAG AA on white 5.61:1 */
    --blue-lt: #7db4e6; /* Light blue for dark backgrounds 7.97:1 on footer */
    --head-font: 'Museo', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --green-dk: #1e3d25;
    --cream: #f7f4ef;
    --cream-dk: #fceed4;
    --sage: #e6eee0;
    --txt: #2a3327;
    --bdr: #ddd8d0;
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    font-family: var(--body-font);
    color: #1a1a18;
    -webkit-font-smoothing: antialiased;
}

/* ── 508: SKIP LINK ───────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: #fff;
    color: var(--green-dk);
    padding: 10px 18px;
    border: 2px solid var(--green-dk);
    border-radius: 3px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: top .15s;
}

    .skip-link:focus {
        top: 16px;
    }

/* ── 508: SCREEN-READER ONLY ──────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── 508: FOCUS INDICATORS ────────────────────────── */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

button:focus-visible, a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── REDUCE MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    [data-reveal],
    [data-reveal-left],
    [data-reveal-right],
    [data-reveal-scale],
    [data-reveal-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── PHOTO PLACEHOLDER ────────────────────────────── */
.photo-ph {
    background: repeating-linear-gradient(-45deg,#c5d4bc,#c5d4bc 8px,#d4e0cb 8px,#d4e0cb 16px);
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn-p {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 12px 26px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: filter .2s,transform .15s;
    letter-spacing: .02em;
    text-decoration: none;
}

    .btn-p:hover:not(:disabled) {
        background: var(--accent-dark);
        transform: translateY(-1px);
    }

    .btn-p:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

.btn-o {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 3px;
    padding: 10px 24px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s,transform .15s;
    text-decoration: none;
}

    .btn-o:hover {
        background: var(--accent);
        color: #fff;
        transform: translateY(-1px);
    }

.btn-w {
    display: inline-block;
    background: #fff;
    color: var(--green-dk);
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 10px 24px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s,transform .15s;
    text-decoration: none;
}

    .btn-w:hover {
        background: var(--sage);
        transform: translateY(-1px);
    }

/* ── NAV LINKS ────────────────────────────────────── */
.nav-lnk {
    background: none;
    border: none;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    transition: color .2s;
}

    .nav-lnk::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transition: transform .25s;
        transform-origin: left;
    }

    .nav-lnk.act::after, .nav-lnk:hover::after {
        transform: scaleX(1);
    }

.nav-logo-btn.nav-lnk::after {
    display: none;
}

/* ── CARDS ────────────────────────────────────────── */
.card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,.12) !important;
    }

    .card:hover .card__icon-circle {
        transform: scale(1.1);
        background: var(--cream-dk);
    }

    .card:hover .card__icon-circle svg {
        stroke: #fff;
        fill: none;
    }

.card__icon-circle {
    transition: transform .25s ease, background .25s ease;
}

.card--goal:hover {
    border-left-color: var(--blue);
}

.card--priority:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.08) !important;
}

.card--dark:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
}

/* ── SCROLL REVEAL ────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-left] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal-left].revealed {
    opacity: 1;
    transform: translateX(0);
}

[data-reveal-right] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal-right].revealed {
    opacity: 1;
    transform: translateX(0);
}

[data-reveal-scale] {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity .6s ease, transform .6s ease;
}

[data-reveal-scale].revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}

[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: .2s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: .3s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: .4s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: .5s; opacity: 1; transform: translateY(0); }

/* ── SECTION WAVE DIVIDER ─────────────────────────── */
.wave-divider {
    display: block;
    width: 100%;
    height: 48px;
    position: relative;
    z-index: 1;
    margin-bottom: -1px;
}

.wave-divider--flip {
    transform: rotate(180deg);
    margin-bottom: 0;
    margin-top: -1px;
}

/* ── DECORATIVE SECTION ACCENTS ───────────────────── */
.section--accent-dot::before {
    content: '';
    position: absolute;
    top: -60px;
    right: 10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 103, 5, .06) 0%, transparent 70%);
    pointer-events: none;
}

.section--accent-ring::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 5%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(45, 104, 179, .08);
    pointer-events: none;
}

/* ── IMAGE HOVER ZOOM ─────────────────────────────── */
.img-cover {
    transition: transform .4s ease;
}

.img-cover-wrap {
    overflow: hidden;
    border-radius: 5px;
}

.img-cover-wrap:hover .img-cover {
    transform: scale(1.03);
}

/* ── ENHANCED BUTTONS ─────────────────────────────── */
.btn-p::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .3s;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
}

.btn-p {
    position: relative;
    overflow: hidden;
}

.btn-p:hover::after {
    opacity: 1;
}

/* ── FORM ─────────────────────────────────────────── */
.field {
    margin-bottom: 16px;
}

    .field label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--txt);
        margin-bottom: 5px;
    }

        .field label .req {
            color: var(--accent);
            margin-left: 2px;
            aria-hidden: true;
        }

.inp {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--bdr);
    border-radius: 3px;
    font-family: var(--body-font);
    font-size: 15px;
    color: #3a3a38;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}

    .inp:focus {
        border-color: var(--accent);
    }

    .inp[aria-invalid="true"] {
        border-color: #c0392b;
    }

.err-msg {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}

/* ── MISC ─────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade {
    animation: fadeUp .55s ease both;
}

select.inp {
    color: #3a3a38;
}

/* ── LAYOUT ───────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 48px;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-28 {
    gap: 28px;
}

.gap-32 {
    gap: 32px;
}

.gap-48 {
    gap: 48px;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* ── NAVIGATION ───────────────────────────────────── */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--bdr);
    transition: box-shadow .3s;
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    height: 70px;
}

.nav-logo-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 0.65in;
    width: auto;
    display: block;
}

.nav-links-group {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-lnk-text {
    color: #2a3628;
}

.lang-select {
    margin-left: 28px;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--green-dk);
    background: none;
    border: 1px solid var(--bdr);
    border-radius: 3px;
    padding: 5px 28px 5px 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27 viewBox=%270 0 10 6%27%3E%3Cpath d=%27M0 0l5 6 5-6z%27 fill=%27%231e3d25%27/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 9px center;
}

.auth-links {
    display: flex;
    gap: 8px;
    margin-left: 24px;
    align-items: center;
}

.btn-portal {
    padding: 9px 20px;
    font-size: 13px;
    background: var(--accent);
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 600;
    transition: filter .2s, transform .15s;
}

    .btn-portal:hover {
        background: var(--accent-dark);
        transform: translateY(-1px);
    }

.btn-login {
    padding: 9px 20px;
    font-size: 13px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 3px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 600;
    transition: all .2s, transform .15s;
}

    .btn-login:hover {
        background: var(--accent);
        color: #fff;
        transform: translateY(-1px);
    }

.btn-register {
    padding: 9px 20px;
    font-size: 13px;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 3px;
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 600;
    transition: filter .2s, transform .15s;
}

    .btn-register:hover {
        background: var(--accent-dark);
        border: 2px solid var(--accent-dark);
        transform: translateY(-1px);
    }

/* ── MAIN ─────────────────────────────────────────── */
.main-content {
    outline: none;
}

/* ── SCROLL TO TOP BUTTON ─────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 150;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--green-dk);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.scroll-top-btn:active {
    transform: translateY(0);
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
    background: #111c0f;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px 52px;
}

.footer-logo {
    display: block;
    margin-bottom: 18px;
    height: 0.65in;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #8aaa80;
    max-width: 300px;
}

.footer-partners {
    margin-top: 28px;
}

.footer-partners-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-partner-label {
    font-size: 11px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgb(240, 184, 90);
}

.footer-partner-logo {
    display: block;
    height: 45px;
}

.footer-section-heading {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgb(240, 184, 90);
}

.footer-nav-btn {
    display: block;
    background: none;
    border: none;
    color: #b4c8ac;
    font-family: DM Sans, sans-serif;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    transition: color .2s;
}

    .footer-nav-btn:hover {
        color: #fff;
    }

.footer-resource-link {
    color: #b4c8ac;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    text-decoration: none;
}

    .footer-resource-link:hover {
        color: #fff;
    }

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #3a5530;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #8aaa80;
    text-decoration: none;
    transition: all .2s;
}

    .footer-social-icon:hover {
        background: #2a3d25;
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid #1e3018;
    padding: 18px 28px;
}

.footer-bottom-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #7a9870;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #7a9870;
}

.footer-link {
    color: #7a9870;
    text-decoration: none;
    transition: color .2s;
}

    .footer-link:hover {
        color: #b4c8ac;
    }

/* ── PAGE HEADERS ─────────────────────────────────── */
.page-header {
    background: var(--green-dk);
    margin-top: 70px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: stretch;
}

.page-header__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 28px 72px;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
}

.page-header__text {
    max-width: 520px;
}

.page-header__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-on-dk);
    margin-bottom: 14px;
}

.page-header__title {
    font-family: var(--head-font);
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.13;
    text-wrap: pretty;
}

.page-header__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
    max-width: 500px;
    margin-top: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.page-header__image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    overflow: hidden;
}

.page-header__image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.page-header__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--green-dk) 0%, rgba(30, 61, 37, 0.5) 35%, transparent 70%);
}

/* ── SECTION WRAPPERS ─────────────────────────────── */
.section {
    padding: 80px 28px;
}

.section--white {
    background: #fff;
}

.section--sage {
    background: var(--sage);
}

.section--cream {
    background: var(--cream);
}

.section--dark {
    background: var(--green-dk);
}

.section--dark-lg {
    background: var(--green-dk);
    padding: 96px 28px;
}

.section--sage-sm {
    background: var(--sage);
    padding: 60px 28px;
}

.section--white-sm {
    background: #fff;
    padding: 60px 28px;
}

.section--center {
    text-align: center;
}

.section--border-bottom {
    border-bottom: 1px solid var(--bdr);
}

.section--sage-border {
    background: var(--sage);
    border-bottom: 1px solid #ccd9c4;
}

.section__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section__inner--narrow {
    max-width: 560px;
    margin: 0 auto;
}

.section--sage-72 {
    background: var(--sage);
    padding: 72px 28px;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
.divider {
    width: 44px;
    height: 3px;
    background: var(--blue);
    margin-bottom: 24px;
}

.divider--accent {
    background: var(--accent);
}

.divider--center {
    margin: 0 auto 20px;
}

.heading-2 {
    font-family: var(--head-font);
    font-weight: 700;
    color: var(--green-dk);
    line-height: 1.2;
}

.heading-2--xl {
    font-size: 40px;
    margin-bottom: 24px;
}

.heading-2--lg {
    font-size: 36px;
    margin-bottom: 24px;
}

.heading-2--md {
    font-size: 34px;
    margin-bottom: 20px;
}

.heading-2--sm {
    font-size: 32px;
    margin-bottom: 24px;
}

.heading-2--xs {
    font-size: 28px;
    margin-bottom: 24px;
}

.heading-2--26 {
    font-size: 26px;
    margin-bottom: 32px;
}

.heading-2--white {
    color: #fff;
}

.heading-2--mb-44 {
    margin-bottom: 44px;
}

.heading-2--mb-36 {
    margin-bottom: 36px;
}

.heading-2--mb-14 {
    margin-bottom: 14px;
}

.heading-2--mb-10 {
    margin-bottom: 10px;
}

.heading-2--mb-16 {
    margin-bottom: 16px;
}

.heading-2--mb-20 {
    margin-bottom: 20px;
}

.heading-2--mb-18 {
    margin-bottom: 18px;
}

.heading-2--38 {
    font-size: 38px;
    line-height: 1.18;
}

.body-text {
    font-size: 18px;
    color: var(--txt);
    line-height: 1.85;
}

.body-text--mb-6 {
    margin-bottom: 6px;
}

.body-text--mb-14 {
    margin-bottom: 14px;
}

.body-text--mb-16 {
    margin-bottom: 16px;
}

.body-text--mb-18 {
    margin-bottom: 18px;
}

.body-text--mb-24 {
    margin-bottom: 24px;
}

.body-text--mb-28 {
    margin-bottom: 28px;
}

.body-text--mb-32 {
    margin-bottom: 32px;
}

.body-text--mb-36 {
    margin-bottom: 36px;
}

.body-text--mb-40 {
    margin-bottom: 40px;
}

.body-text--sm {
    font-size: 17px;
    line-height: 1.75;
}

.body-text--xs {
    font-size: 16px;
    line-height: 1.7;
}

.body-text--lg {
    font-size: 19px;
    line-height: 1.75;
}

.body-text--lh-18 {
    line-height: 1.8;
}

.label-upper {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.label-upper--blue {
    color: var(--blue);
}

.label-upper--muted {
    color: #566850;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 14px;
}

.cta-prompt {
    font-size: 17px;
    color: var(--green-dk);
    font-family: var(--head-font);
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-prompt-no-btn {
    font-size: 17px;
    color: var(--green-dk);
    font-family: var(--head-font);
    font-weight: 600;
}

.cta-prompt--lg {
    font-size: 18px;
}

/* ── GRID LAYOUTS ─────────────────────────────────── */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.grid-2col--start {
    align-items: start;
}

.grid-2col--stretch {
    align-items: stretch;
}

.grid-2col--gap-24 {
    gap: 24px;
}

.grid-2col--gap-64 {
    gap: 64px;
}

.grid-2col--gap-80 {
    gap: 80px;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-3col--gap-12 {
    gap: 12px;
}

.grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.grid-criteria {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 10px;
}

.grid-docs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.flex-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.flex-btns--14 {
    gap: 14px;
}

.text-center {
    text-align: center;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-footer-center {
    text-align: center;
    margin-top: 48px;
}

.section-footer-center--52 {
    margin-top: 52px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 64px;
    flex-wrap: wrap;
}

.logos-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* ── CARD VARIANTS ────────────────────────────────── */
.card--dark {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 36px 28px;
}

.card--goal {
    background: #fff;
    border: 1px solid var(--bdr);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    padding: 30px 26px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    display: flex;
    gap: 18px;
}

.card--priority {
    background: var(--sage);
    border-radius: 6px;
    padding: 26px 18px;
    text-align: center;
}

.card--criteria {
    background: #fff;
    border-radius: 5px;
    padding: 22px 20px;
    margin-bottom: 14px;
    border-left: 4px solid var(--accent);
}

.card--bordered {
    border: 1px solid var(--bdr);
    border-radius: 6px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.card--article {
    border: 1px solid var(--bdr);
    border-radius: 6px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
}

.card--funder {
    border: 1px solid var(--bdr);
    border-radius: 6px;
    padding: 34px 30px;
    flex: 1;
}

.criteria-item {
    background: #fff;
    border-radius: 5px;
    padding: 15px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
}

/* ── CARD INNER CONTENT ───────────────────────────── */
.card__title {
    font-family: var(--head-font);
    font-size: 19px;
    font-weight: 600;
    color: var(--green-dk);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card__title--lg {
    font-size: 22px;
    color: #fff;
    margin: 18px 0 12px;
}

.card__title--20 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.card__title--sm {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 7px;
}

.card__title--xs {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.card__title--mb-6 {
    margin-bottom: 6px;
}

.card__title--mb-9 {
    margin-bottom: 9px;
}

.card__desc {
    font-size: 16px;
    color: var(--txt);
    line-height: 1.75;
}

.card__desc--dark {
    color: rgba(255, 255, 255, .65);
}

.card__desc--sm {
    font-size: 13px;
    line-height: 1.65;
}

.card__desc--xs {
    font-size: 12px;
    line-height: 1.65;
}

.card__desc--mb-12 {
    margin-bottom: 12px;
}

.card__icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__icon-center {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.card__link {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

    .card__link:hover {
        text-decoration: underline;
    }

.card__link--mt {
    margin-top: 18px;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: top;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 36, 16, .80) 10%, rgba(255, 255, 255, .10) 100%);
}

.hero__container {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    z-index: 1;
    padding-top: 70px;
}

.hero__content {
    max-width: 640px;
}

.hero__badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--head-font);
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.13;
    margin-bottom: 22px;
    text-wrap: pretty;
    text-shadow: 2px 2px 5px #111C0F;
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    margin-bottom: 38px;
    font-weight: 500;
    text-shadow: 2px 2px 5px #111C0F;
}

/* ── IMAGES ───────────────────────────────────────── */
.img-cover {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.img-logo {
    height: 80px;
    object-fit: contain;
    display: block;
}

.img-funder-logo {
    margin-bottom: 22px;
    object-fit: contain;
    display: block;
}

/* ── MISC UI ELEMENTS ─────────────────────────────── */
.stat-box {
    background: var(--sage);
    border-radius: 5px;
    padding: 20px 14px;
    text-align: center;
}

.stat-box__value {
    font-family: var(--head-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
}

.stat-box__label {
    font-size: 12px;
    color: var(--txt);
    margin-top: 5px;
    line-height: 1.4;
}

.callout {
    background: var(--cream-dk);
    border-radius: 5px;
    padding: 20px 24px;
}

.callout--bordered {
    border-left: 4px solid var(--accent);
    border-radius: 0 5px 5px 0;
}

.callout--sm {
    padding: 18px 20px;
}

.callout--mb {
    margin-bottom: 28px;
}

.countdown-box {
    background: #fff;
    border-radius: 6px;
    padding: 44px 32px;
    text-align: center;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .06);
    border: 1px solid var(--bdr);
}

.countdown-box__deadline {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--bdr);
    font-size: 13px;
    color: var(--txt);
}

.pill {
    background: var(--sage);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #446033;
    font-weight: 600;
}

.criteria-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    min-width: 22px;
}

.criteria-text {
    font-size: 15px;
    color: var(--txt);
    line-height: 1.4;
}

.check-list {
    list-style: none;
    margin-bottom: 20px;
}

.check-list__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.check-list__icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.check-list__text {
    font-size: 18px;
    color: var(--txt);
    line-height: 1.65;
}

.privacy-list {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 24px;
}

.privacy-list li {
    font-size: 18px;
    color: var(--txt);
    line-height: 1.75;
    margin-bottom: 10px;
    padding-left: 4px;
}

.news-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.news-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: var(--sage);
    padding: 3px 10px;
    border-radius: 20px;
}

.news-date {
    font-size: 12px;
    color: #566850;
}

.resource-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .04em;
}

.cta-box {
    text-align: center;
    margin-top: 52px;
    padding: 40px;
    background: var(--cream-dk);
    border-radius: 6px;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.link-accent {
    color: var(--accent);
    font-weight: 600;
}

.no-underline {
    text-decoration: none;
}

/* ── TIMELINE ─────────────────────────────────────── */
.timeline {
    list-style: none;
}

.timeline__step {
    display: flex;
    gap: 20px;
}

.timeline__step--mb {
    margin-bottom: 36px;
}

.timeline__rail {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline__circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.timeline__line {
    width: 2px;
    flex: 1;
    background: var(--bdr);
    margin-top: 6px;
}

.timeline__content {
    padding-top: 8px;
}

.timeline__title {
    font-family: DM Sans, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--green-dk);
    margin-bottom: 12px;
}

.timeline__row {
    display: flex;
    gap: 14px;
    margin-bottom: 8px;
}

.timeline__date {
    font-size: 12px;
    font-weight: 700;
    min-width: 115px;
    flex-shrink: 0;
}

.timeline__label {
    font-size: 14px;
    color: var(--txt);
}

/* ── FAQ ACCORDION ────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--bdr);
}

.faq-item__toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-align: left;
    gap: 16px;
}

.faq-item__question {
    font-family: DM Sans, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--green-dk);
    line-height: 1.4;
}

.faq-item__icon {
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-item__content {
    /* Visibility controlled by hidden attribute */
}

.faq-item__content:not([hidden]) {
    display: block;
}

.faq-item h3 {
    margin: 0;
    font-size: inherit;
}

.faq-item__answer {
    font-size: 15px;
    color: var(--txt);
    line-height: 1.75;
    padding-bottom: 20px;
}

/* ── COUNTDOWN TIMER ──────────────────────────────── */
.countdown-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.countdown-unit {
    text-align: center;
    min-width: 64px;
}

.countdown-unit__value {
    font-family: var(--head-font);
    font-size: 50px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.countdown-unit__label {
    font-size: 10px;
    color: var(--txt);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 6px;
}

/* ── FUTURE CALL CARDS ────────────────────────────── */
.card--future {
    background: var(--sage);
    border-radius: 6px;
    padding: 28px 24px;
}

.card--future__status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card--future__region {
    font-family: var(--head-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--green-dk);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card--future__date {
    font-size: 14px;
    color: var(--txt);
}

/* ── BUTTON VARIANTS ──────────────────────────────── */
.btn-o--on-dark {
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .45);
}

    .btn-o--on-dark:hover {
        background: rgba(255, 255, 255, .85);
        color: var(--accent);
    }

/* ── NEWS BODY ────────────────────────────────────── */
.card__body {
    font-size: 16px;
    color: var(--txt);
    line-height: 1.75;
    flex: 1;
}

/* ── MOBILE NAV TOGGLE ────────────────────────────── */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 12px;
    flex-direction: column;
    gap: 5px;
    z-index: 210;
}

.nav-mobile-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-dk);
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
}

.nav-mobile-toggle.open .nav-mobile-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-mobile-toggle.open .nav-mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.open .nav-mobile-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV PANEL ─────────────────────────────── */
.nav-mobile-panel {
    background: #fff;
    border-top: 1px solid var(--bdr);
    padding: 20px 28px 28px;
}

.nav-mobile-panel[hidden] {
    display: none;
}

.nav-mobile-panel__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.nav-mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--green-dk);
    border-bottom: 1px solid var(--bdr);
    text-align: left;
}

.nav-mobile-link.act {
    color: var(--accent);
    font-weight: 600;
}

.nav-mobile-panel__auth {
    padding-top: 8px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE: TABLET (≤1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Nav */
    .nav-links-group {
        gap: 16px;
    }

    .nav-lnk-text {
        font-size: 13px;
    }

    .auth-links {
        margin-left: 16px;
    }

    /* Hero */
    .hero {
        height: 75vh;
        min-height: 480px;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    /* Page Headers */
    .page-header__title {
        font-size: 40px;
    }

    .page-header__image-wrap {
        width: 35%;
    }

    /* Grids */
    .grid-2col--gap-80 {
        gap: 40px;
    }

    .grid-2col--gap-64 {
        gap: 32px;
    }

    .grid-5col {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-criteria {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-flow: row;
    }

    /* Typography */
    .heading-2--xl {
        font-size: 34px;
    }

    .heading-2--lg {
        font-size: 30px;
    }

    .heading-2--md {
        font-size: 28px;
    }

    .heading-2--38 {
        font-size: 32px;
    }

    /* Sections */
    .section {
        padding: 60px 20px;
    }

    .section--dark-lg {
        padding: 72px 20px;
    }

    .section--sage-72 {
        padding: 56px 20px;
    }

    /* Footer */
    .grid-footer {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    /* Countdown */
    .countdown-unit__value {
        font-size: 40px;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE: MOBILE (≤768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Show mobile toggle, hide desktop nav */
    .nav-mobile-toggle {
        display: flex;
    }

    .nav-links-group {
        display: none;
    }

    .auth-links {
        display: none;
    }

    .nav-container {
        padding: 0 16px;
        height: 60px;
    }

    .nav-logo-img {
        height: 0.5in;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 480px;
        padding: 100px 0 60px;
    }

    .hero__container {
        padding: 0 16px;
        padding-top: 60px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero__badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 18px;
    }

    /* Page Headers */
    .page-header {
        margin-top: 60px;
        min-height: 220px;
    }

    .page-header__container {
        padding: 48px 16px 40px;
    }

    .page-header__title {
        font-size: 30px;
    }

    .page-header__subtitle {
        font-size: 15px;
        margin-top: 12px;
    }

    .page-header__image-wrap {
        display: none;
    }

    .page-header__text {
        max-width: 100%;
    }

    /* Sections */
    .section {
        padding: 48px 16px;
    }

    .section--dark-lg {
        padding: 56px 16px;
    }

    .section--sage-sm,
    .section--white-sm {
        padding: 40px 16px;
    }

    .section--sage-72 {
        padding: 48px 16px;
    }

    .section__inner {
        max-width: 100%;
    }

    /* Grids → stacked */
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .grid-2col--gap-80,
    .grid-2col--gap-64,
    .grid-2col--gap-24 {
        gap: 32px;
    }

    .grid-3col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-5col {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .grid-criteria {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

    .grid-docs {
        grid-template-columns: 1fr;
    }

    /* Typography */
    .heading-2--xl {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .heading-2--lg {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .heading-2--md {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .heading-2--sm {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .heading-2--xs {
        font-size: 22px;
    }

    .heading-2--38 {
        font-size: 26px;
    }

    .heading-2--26 {
        font-size: 22px;
    }

    .body-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .body-text--lg {
        font-size: 17px;
    }

    /* Buttons */
    .btn-p, .btn-o, .btn-w {
        padding: 11px 20px;
        font-size: 13px;
    }

    .flex-btns {
        flex-direction: column;
        gap: 10px;
    }

    .flex-btns .btn-p,
    .flex-btns .btn-o,
    .flex-btns .btn-w {
        width: 100%;
        text-align: center;
    }

    /* Countdown section */
    .countdown-box {
        padding: 28px 20px;
    }

    .countdown-unit__value {
        font-size: 36px;
    }

    .countdown-grid {
        gap: 16px;
    }

    /* Cards */
    .card--dark {
        padding: 28px 20px;
    }

    .card--goal {
        padding: 22px 18px;
    }

    .card--bordered {
        padding: 20px 18px;
        flex-direction: column;
    }

    .card--article {
        padding: 22px 18px;
    }

    .card--funder {
        padding: 24px 20px;
    }

    .card--priority {
        padding: 20px 14px;
    }

    /* Images in grid → full width, auto height */
    .img-cover {
        height: auto !important;
        max-height: 280px;
    }

    /* Footer */
    .grid-footer {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-container {
        padding: 0 16px 40px;
    }

    .footer-logo {
        height: 0.5in;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-partners-grid {
        gap: 20px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Logos row */
    .logos-row {
        gap: 32px;
    }

    .img-logo {
        height: 60px;
    }

    /* CTA box */
    .cta-box {
        padding: 28px 20px;
        margin-top: 36px;
    }

    /* Timeline */
    .timeline__date {
        min-width: 90px;
        font-size: 11px;
    }

    .timeline__row {
        flex-direction: column;
        gap: 4px;
    }

    /* Section-header-center spacing */
    .section-header-center {
        margin-bottom: 36px;
    }

    .section-footer-center {
        margin-top: 36px;
    }

    /* Callout */
    .callout {
        padding: 16px 18px;
    }

    /* Scroll to top */
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE: SMALL MOBILE (≤480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .page-header__title {
        font-size: 26px;
    }

    .heading-2--xl {
        font-size: 24px;
    }

    .heading-2--lg {
        font-size: 22px;
    }

    .heading-2--38 {
        font-size: 22px;
    }

    .grid-5col {
        grid-template-columns: 1fr;
    }

    .countdown-unit__value {
        font-size: 28px;
    }

    .countdown-unit {
        min-width: 48px;
    }

    .card--goal {
        flex-direction: column;
        gap: 12px;
    }

    .footer-partners-grid {
        flex-direction: column;
        gap: 24px;
    }
}
