:root {
    --primary: #00a896;
    --primary-dark: #008577;
    --primary-light: #02c9b5;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #e0e0e0;
    --gray-dark: #333333;
    --gray-text: #555555;
    --border: 4px;
    --radius: 8px;
    --transition: 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--white);
    color: var(--black);
    border: var(--border) solid var(--black);
    border-radius: 6px;
    padding: 0.9rem 1.1rem;
    z-index: 1000;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
}

a { 
    color: inherit; 
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: var(--border) solid var(--primary);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1.25rem;
    min-height: 112px;
    padding: 0.75rem 7.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: var(--white);
    text-transform: uppercase;
}

.brand:hover {
    color: var(--primary);
}

.brand-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: var(--border) solid var(--white);
}

.brand-logo {
    width: auto;
    height: 80px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    row-gap: 0.6rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    font-weight: 800;
}

.nav-links .btn-primary {
    padding: 0.75rem 1.35rem;
    font-size: 0.8rem;
    box-shadow: 5px 5px 0 var(--black);
}

.nav-links .btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--black);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-link-active {
    color: var(--primary) !important;
}

.btn-primary,
.btn-secondary,
button,
input[type="submit"] {
    border-radius: 6px;
    border: var(--border) solid var(--black);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
}

.btn-primary,
input[type="submit"] {
    background: var(--primary);
    color: var(--white);
    box-shadow: 8px 8px 0 var(--black);
}

.btn-primary:hover,
input[type="submit"]:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--black);
}

.btn-primary:active {
    transform: translate(8px, 8px);
    box-shadow: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    box-shadow: 8px 8px 0 var(--black);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--black);
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--black);
}

.hero {
    padding: 4rem 0;
    background: var(--gray);
    border-bottom: var(--border) solid var(--black);
}

.hero-shell {
    background: var(--white);
    border: var(--border) solid var(--black);
    border-radius: var(--radius);
    padding: 4rem;
    box-shadow: 16px 16px 0 var(--black);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-visual {
    border: var(--border) solid var(--black);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 12px 12px 0 var(--primary);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.card-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: var(--border) solid var(--black);
    box-shadow: 6px 6px 0 var(--primary);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-banner {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.7rem;
}

.media-banner img {
    aspect-ratio: 16 / 10;
    object-fit: contain;
    padding: 0.45rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin: 0 0 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--black);
    text-transform: uppercase;
}

.hero p {
    color: var(--black);
    font-size: 1.3rem;
    line-height: 1.5;
    max-width: 50ch;
    font-weight: 600;
}

.cta-row {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-strip {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trust-pill {
    background: var(--black);
    border: var(--border) solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section {
    padding: 5rem 0;
}

.section h2,
.section h1,
h1, h2 {
    margin: 0 0 2rem;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1;
}

.card-grid,
.cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border: var(--border) solid var(--black);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: 8px 8px 0 var(--primary);
}

.card:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--primary);
}

.card h3,
.card h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.muted { color: var(--gray-text); }

.form-wrap {
    background: var(--white);
    border: var(--border) solid var(--black);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 12px 12px 0 var(--gray);
}

.form-grid {
    display: grid;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label,
label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea,
input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 1rem 1.2rem;
    border-radius: 6px;
    border: var(--border) solid var(--black);
    background: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 4px 4px 0 var(--primary);
}

.form-group textarea,
textarea { 
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

button:focus,
a:focus {
    outline: var(--border) solid var(--primary);
    outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: var(--border) solid var(--primary);
    outline-offset: 4px;
}

.site-header .brand:focus,
.site-header .nav-links a:focus,
.site-header .nav-toggle:focus {
    outline: none;
    outline-offset: 0;
}

.amount-grid,
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-amount {
    background: var(--white);
    border: var(--border) solid var(--black);
    border-radius: 6px;
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 4px 4px 0 var(--gray);
}

.btn-amount:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--gray);
}

.btn-amount.selected {
    background: var(--primary);
    border-color: var(--black);
    color: var(--white);
    box-shadow: 4px 4px 0 var(--black);
}

.alert,
.alert-success,
.alert-error {
    border-radius: 6px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    border: var(--border) solid var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alert-success {
    background: var(--primary);
    color: var(--white);
}

.alert-error {
    background: #d32f2f;
    color: var(--white);
}

.site-footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.site-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 800;
}

.site-footer a:hover {
    color: var(--primary-light);
}

.footer-wrap,
.footer-content {
    text-align: center;
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-credit {
    font-size: 0.875rem;
    color: var(--gray);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-donate,
.donate-cta-mobile {
    display: none;
}

.media-banner {
    display: none;
}

@media (max-width: 768px) {
    .nav-wrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: auto;
        padding: 0.75rem 0;
    }

    .brand {
        position: static;
        transform: none;
    }

    .brand-logo {
        width: auto;
        height: 96px;
        max-height: 96px;
    }

    .nav-links {
        font-size: 0.75rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-shell {
        padding: 2.5rem 2rem;
        box-shadow: 8px 8px 0 var(--black);
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
        box-shadow: 8px 8px 0 var(--primary);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2,
    .section h1,
    h1, h2 {
        font-size: 2rem;
    }
    
    .cards-grid,
    .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card {
        box-shadow: 6px 6px 0 var(--primary);
    }
    
    .trust-strip {
        grid-template-columns: 1fr;
    }
    
    .amount-grid,
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .mobile-donate,
    .donate-cta-mobile {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        z-index: 50;
        background: var(--white);
        border-top: var(--border) solid var(--black);
        box-shadow: 0 -8px 0 var(--primary);
    }

    .mobile-donate a,
    .donate-cta-mobile .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--primary);
        color: var(--white);
        border: var(--border) solid var(--black);
        font-weight: 900;
        padding: 1.2rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    body { padding-bottom: 6rem; }
}

/* ========= Design Refresh Overrides ========= */
:root {
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

html,
body {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
}

.container {
    max-width: 1220px;
    padding: 0 1.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrap {
    min-height: 86px;
    padding: 0.8rem 0;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 64px;
    max-height: 64px;
    border-radius: 0;
}

.nav-links {
    justify-content: flex-end;
    gap: 1.1rem;
    row-gap: 0.7rem;
}

.nav-links a {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    opacity: 0.72;
}

.nav-links a:hover,
.nav-link-active {
    color: var(--primary);
    opacity: 1;
}

.nav-links .nav-cta,
.nav-links .btn-primary.nav-cta {
    border: 0;
    text-transform: none;
    letter-spacing: 0.01em;
    box-shadow: none;
    border-radius: 999px;
    padding: 0.72rem 1.25rem;
    font-size: 0.86rem;
    font-weight: 700;
    opacity: 1;
}

.hero {
    padding: 3.5rem 0 3rem;
    background: linear-gradient(180deg, var(--white) 0%, #f9f9f9 100%);
    border-bottom: 0;
}

.hero-shell {
    border: 0;
    border-radius: 1.6rem;
    padding: 3rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
}

.hero h1,
h1,
h2,
.section h1,
.section h2,
.card h2,
.card h3 {
    font-family: var(--font-serif);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 1.1rem;
}

.section h1,
.section h2,
h1,
h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 1.1rem;
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 58ch;
}

.hero-visual {
    border: 0;
    border-radius: 1.8rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.hero-visual img {
    height: auto;
    aspect-ratio: 4 / 5;
}

.cta-row {
    margin-top: 1.8rem;
    gap: 0.9rem;
}

.btn-primary,
.btn-secondary,
button,
input[type='submit'] {
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-transform: none;
}

.btn-primary,
input[type='submit'] {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow: none;
}

.btn-primary:hover,
.btn-secondary:hover,
input[type='submit']:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0);
}

.trust-strip {
    margin-top: 2.3rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.trust-pill {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f7f7f7;
    color: var(--gray-dark);
    border-radius: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.8rem 0.95rem;
}

.section {
    padding: 4.5rem 0;
}

.cards-grid,
.card-grid {
    gap: 1.35rem;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.15rem;
    padding: 1.65rem;
    box-shadow: none;
    background: var(--white);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.07);
}

.card h2,
.card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.card-icon {
    border: 0;
    box-shadow: none;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.muted {
    color: var(--gray-text);
    font-weight: 400;
}

ul,
ol {
    padding-left: 1.2rem;
}

.form-wrap {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.25rem;
    box-shadow: none;
    padding: 2rem;
}

.form-grid {
    gap: 1.15rem;
}

label,
.form-group label {
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.84rem;
}

input,
select,
textarea,
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.8rem;
    min-height: 48px;
    padding: 0.78rem 0.9rem;
    font-weight: 500;
}

textarea,
.form-group textarea {
    min-height: 130px;
}

input:focus,
select:focus,
textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.14);
}

.amount-grid,
.amount-buttons {
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.btn-amount {
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: 0.75rem;
    box-shadow: none;
    padding: 0.8rem;
    font-size: 1rem;
}

.btn-amount.selected {
    background: rgba(0, 168, 150, 0.16);
    color: var(--black);
    border-color: var(--primary);
}

.alert,
.alert-success,
.alert-error {
    border: 0;
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    background: var(--black);
    color: var(--white);
}

.site-footer::before {
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    gap: 1.25rem;
    text-align: left;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
}

.footer-tagline {
    margin: 0.35rem 0 0;
    opacity: 0.72;
    font-size: 0.9rem;
}

.footer-links {
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.footer-credit {
    margin-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.mobile-donate,
.donate-cta-mobile {
    display: none;
}

@media (max-width: 980px) {
    .hero-shell {
        padding: 2.2rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .hero-visual {
        order: -1;
    }
}

/* === Hamburger toggle button === */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

    .nav-wrap {
        align-items: center;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0.65rem 0;
        min-height: auto;
    }

    .brand-logo {
        height: 58px;
        max-height: 58px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        order: 3;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 0.7rem 0.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.9rem;
        width: 100%;
        opacity: 1;
    }

    .nav-links a:last-of-type {
        border-bottom: 0;
    }

    .nav-links .nav-cta.btn-primary {
        display: block;
        text-align: center;
        margin-top: 0.6rem;
        border-radius: 999px;
        padding: 0.85rem 1rem;
        width: 100%;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    .section {
        padding: 3.1rem 0;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-shell {
        padding: 1.4rem;
        border-radius: 1.1rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .mobile-donate,
    .donate-cta-mobile {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.65rem;
        z-index: 70;
        background: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
    }

    .mobile-donate a,
    .donate-cta-mobile .btn-primary {
        display: block;
        text-align: center;
        border-radius: 999px;
        padding: 0.9rem;
        font-size: 0.9rem;
        width: 100%;
    }

    body {
        padding-bottom: 5rem;
    }
}

/* =============================================
   NEW COMPONENT LIBRARY — NPO CONTENT SYSTEM
   ============================================= */

/* ── Section label (overline) ── */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

/* ── Page hero ── */
.page-hero {
    padding: 5rem 0 3.5rem;
    background: linear-gradient(135deg, #f7fffe 0%, #e8faf8 100%);
    border-bottom: 1px solid rgba(0, 168, 150, 0.12);
}

.page-hero h1 {
    max-width: 750px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.18;
    margin-bottom: 1rem;
}

.page-hero-sub {
    max-width: 640px;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.65;
}

/* ── Section tinted ── */
.section-tinted {
    background: #f5faf9;
}

/* ── Stats bar ── */
.stats-bar {
    background: var(--primary);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

/* ── Process steps ── */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-num {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial footer {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.testimonial footer strong {
    display: block;
    color: var(--black);
    font-style: normal;
}

/* ── Impact tiers ── */
.impact-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.impact-tier {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    padding: 1.5rem 1.1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.impact-tier:hover {
    box-shadow: 0 6px 20px rgba(0, 168, 150, 0.12);
    transform: translateY(-2px);
}

.impact-tier.tier-featured {
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(0, 168, 150, 0.18);
    position: relative;
}

.impact-tier.tier-featured::before {
    content: 'Most impactful';
    position: absolute;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}

.tier-amount {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.tier-desc {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.55;
}

/* ── News grid ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.news-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.news-date {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.news-item h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.news-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ── CTA banner ── */
.cta-banner {
    background: var(--primary-dark);
    padding: 4rem 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Inline link ── */
.inline-link {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 168, 150, 0.4);
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color var(--transition);
}

.inline-link:hover {
    color: var(--primary-dark);
}

/* ── Split layout ── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-img img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    max-height: 420px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.split-text h2 {
    margin-bottom: 1rem;
}

/* ── Values list ── */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* ── Theory of change ── */
.toc-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toc-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.toc-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.toc-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    text-align: center;
}

/* ── Governance grid ── */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gov-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.gov-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

/* ── Team grid ── */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.team-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 168, 150, 0.2);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ── Timeline ── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 3.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 168, 150, 0.2);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    align-items: flex-start;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 5.5rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 0.1rem;
    text-align: right;
    position: relative;
    z-index: 1;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.35rem;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px rgba(0, 168, 150, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

/* ── Program blocks ── */
.program-block {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.program-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.program-img img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 220px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.program-covers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.cover-item {
    background: rgba(0, 168, 150, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 168, 150, 0.18);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.program-meta {
    font-size: 0.85rem;
    color: var(--gray-text);
    padding: 0.75rem 1rem;
    background: #f5faf9;
    border-radius: var(--border);
    border-left: 3px solid var(--primary);
}

/* ── Criteria grid ── */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.criterion {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.criterion-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.criterion h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

/* ── Outcomes grid ── */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.outcome-item {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}

.outcome-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* ── FAQ list ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: #f5faf9;
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.65;
    margin: 0;
}

/* ── Checklist ── */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.checklist li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.checklist li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ── Partnership tier cards ── */
.tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
}

.tier-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    position: relative;
}

.tier-card-featured {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(0, 168, 150, 0.15);
}

.tier-badge {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.tier-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.tier-range {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.tier-benefits li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

/* ── Benefit list ── */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.benefit-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.benefit-check {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ── Contact channels ── */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-channel {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
}

.channel-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.contact-channel h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

/* ── Response grid ── */
.response-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.response-item {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}

.response-time {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.response-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

/* ── Recognition grid ── */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.recognition-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
}

.recognition-featured {
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(0, 168, 150, 0.12);
}

.recog-amount {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0.35rem 0 1rem;
}

.recog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
}

.recog-list li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

/* ── Trust strip ── */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.trust-pill {
    background: rgba(0, 168, 150, 0.1);
    border: 1px solid rgba(0, 168, 150, 0.22);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

/* =========================================
   RESPONSIVE — NPO COMPONENTS
   ========================================= */

@media (max-width: 1024px) {
    .impact-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }
    .toc-arrow {
        transform: rotate(90deg);
        text-align: left;
    }

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

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

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .program-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .tier-cards {
        grid-template-columns: 1fr;
    }

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

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

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-img {
        order: 1;
    }

    .split-text {
        order: 2;
    }

    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

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

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

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

    .team-member {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline::before {
        display: none;
    }

    .timeline-year::after {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        text-align: left;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions a {
        text-align: center;
    }

    .process-step {
        gap: 1rem;
    }
}
