/* Custom CSS for LifeSpring Global Foundation (2026 design tokens) */

/* Design tokens / CSS variables */
:root {
    --primary: #0D5BCF;
    --primary-dark: #0A2E6B;
    --secondary: #2E9E44;
    --accent: #F9A826;
    --light-blue-bg: #F4F9FF;
    --light-green-bg: #F4FAF4;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #FFFFFF;
    --border-gray: #E5E7EB;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow-soft: 0 6px 18px rgba(16,24,40,0.06);
    --shadow-premium: 0 24px 60px rgba(10, 46, 107, 0.12);
    --font-display: "Instrument Serif", Georgia, serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --header-height: 88px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility fallbacks for extended Tailwind colors */
.text-primary { color: var(--primary) !important; }
.text-primary-green { color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light-blue { background-color: var(--light-blue-bg) !important; }
.bg-light-green { background-color: var(--light-green-bg) !important; }
.border-theme { border-color: var(--border-gray) !important; }

/* Legacy utility aliases for `secondary` to avoid editing many templates */
.text-secondary { color: var(--secondary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-secondary\/10 { background-color: rgba(46,158,68,0.1) !important; }
.from-secondary { --tw-gradient-from: var(--secondary); --tw-gradient-stops: var(--secondary), var(--tw-gradient-to, rgba(46,158,68,0)); }
.text-secondary\/muted { color: rgba(46,158,68,0.85) !important; }

/* Global body styles */
body {
    background: var(--light-blue-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
}

/* ================================================================== */
/* SITE HEADER                                                         */
/* ================================================================== */
.site-header {
    transition: box-shadow 0.3s ease;
}

.site-header--scrolled .site-nav-shell {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(10, 46, 107, 0.08);
    border-bottom: 1px solid rgba(13, 91, 207, 0.06);
}

.site-top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0D5BCF 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
}

.site-top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 38px;
    padding: 0.4rem 0;
}

.site-top-bar__contacts,
.site-top-bar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.site-top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.site-top-bar__link:hover {
    color: #fff;
}

.site-top-bar__link i {
    font-size: 0.7rem;
    opacity: 0.85;
}

.site-top-bar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.site-top-bar__social {
    align-items: center;
    gap: 0.65rem;
}

.site-top-bar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-top-bar__social a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-top-bar__staff {
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.site-top-bar__staff:hover {
    color: #fff;
}

.site-nav-shell {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(13, 91, 207, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
    padding: 0.5rem 0;
}

.site-brand__text {
    display: none;
    flex-direction: column;
    line-height: 1.15;
}

@media (min-width: 1280px) {
    .site-brand__text {
        display: flex;
    }
}

.site-brand__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.site-brand__tagline {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__link:hover,
.site-nav__trigger:hover {
    color: var(--primary);
    background: rgba(13, 91, 207, 0.05);
}

.site-nav__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(13, 91, 207, 0.1);
    color: var(--primary-dark);
    background: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-nav__icon-btn:hover {
    background: rgba(13, 91, 207, 0.06);
    border-color: rgba(13, 91, 207, 0.18);
    color: var(--primary);
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #e8940f 100%);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(249, 168, 38, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(249, 168, 38, 0.42);
}

.site-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(13, 91, 207, 0.12);
    background: #fff;
    color: var(--primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.site-mobile-menu {
    padding: 0.75rem 0 1rem;
}

.site-mobile-menu__panel {
    border-radius: 20px;
    border: 1px solid rgba(13, 91, 207, 0.08);
    background: #fff;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.site-mobile-menu__donate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, var(--accent), #e8940f);
    color: #fff;
    font-weight: 700;
}

.site-mobile-menu__list {
    padding: 0.5rem;
}

.site-mobile-menu__link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #334155;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-mobile-menu__link:hover {
    background: rgba(13, 91, 207, 0.05);
    color: var(--primary);
}

.site-mobile-menu__link--sub {
    padding-left: 1.75rem;
    font-weight: 500;
    font-size: 0.925rem;
}

.site-mobile-menu__label {
    padding: 0.85rem 1rem 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #94a3b8;
}

/* Brand logo — header */
.site-brand__logo {
    height: 68px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .site-brand__logo {
        height: 72px;
        max-width: 240px;
    }
}

/* Top bar — responsive visibility & CTAs */
.site-top-bar__link--md { display: none; }
.site-top-bar__link--lg { display: none; }
.site-top-bar__divider--md,
.site-top-bar__divider--lg { display: none; }
.site-top-bar__quick--md { display: none; }

@media (min-width: 640px) {
    .site-top-bar__link--md { display: inline-flex; }
    .site-top-bar__divider--md { display: inline-block; }
}

@media (min-width: 1024px) {
    .site-top-bar__link--lg { display: inline-flex; }
    .site-top-bar__divider--lg { display: inline-block; }
    .site-top-bar__quick--md { display: inline-flex; }
}

.site-top-bar__divider--sm {
    display: inline-block;
}

@media (min-width: 640px) {
    .site-top-bar__divider--sm { display: none; }
}

.site-top-bar__quick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-top-bar__quick:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-top-bar__whatsapp {
    background: rgba(37, 211, 102, 0.2) !important;
    color: #25d366 !important;
}

.site-top-bar__whatsapp:hover {
    background: #25d366 !important;
    color: #fff !important;
}

.site-top-bar__donate {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #e8940f 100%);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 168, 38, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-contact-sub {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.site-top-bar__email {
    max-width: 14rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-top-bar__social--md {
    display: none;
}

@media (min-width: 768px) {
    .site-top-bar__social--md {
        display: flex;
    }
}

/* Nav triggers & mega menu dock */
.site-nav-shell nav {
    position: relative;
}

.mega-nav-item {
    position: static;
}

.site-nav__trigger {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.site-nav__link--active {
    color: var(--primary) !important;
    background: rgba(13, 91, 207, 0.08);
}

.site-nav__chevron {
    font-size: 0.55rem;
    margin-left: 0.35rem;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.site-nav__chevron--open {
    transform: rotate(180deg);
}

.mega-menu-dock {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 4px);
    z-index: 60;
    padding-top: 12px;
}

/* Modern mega menu */
.mega-menu {
    position: relative;
}

.mega-menu__panel {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: 0 28px 80px rgba(10, 46, 107, 0.14), 0 8px 24px rgba(10, 46, 107, 0.06);
    padding: 1.75rem 2rem;
    overflow: hidden;
}

.mega-menu--wide .mega-menu__panel {
    padding: 2rem 2.25rem;
}

.mega-menu__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.mega-menu__eyebrow--light {
    color: rgba(255, 255, 255, 0.9);
}

.mega-menu__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 0.25rem;
}

.mega-menu__grid {
    display: grid;
    gap: 1.5rem;
}

.mega-menu__grid--about {
    grid-template-columns: 1fr 1fr 1.1fr;
}

.mega-menu__grid--involved {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: stretch;
}

.mega-menu__grid--resources {
    grid-template-columns: 1fr 1fr 1fr;
}

.mega-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mega-menu__link {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    color: var(--text-dark);
    transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu__link:hover {
    background: rgba(13, 91, 207, 0.05);
    transform: translateX(2px);
}

.mega-menu__link strong {
    display: block;
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mega-menu__link small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mega-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 91, 207, 0.1), rgba(46, 158, 68, 0.08));
    color: var(--primary);
    flex-shrink: 0;
}

.mega-menu__feature {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    background: var(--primary-dark);
}

.mega-menu__feature-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.mega-menu__feature-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 220px;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 46, 107, 0.85) 100%);
    color: #fff;
}

.mega-menu__stat-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 1;
    color: #fff;
}

.mega-menu__stat-label {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.mega-menu__feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 700;
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-menu__feature-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.4);
}

.mega-menu__feature-btn--light {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mega-menu__feature-btn--light:hover {
    background: #fff;
    color: var(--primary-dark) !important;
}

.mega-menu__header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mega-menu__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.mega-menu__view-all:hover {
    color: var(--secondary);
}

.mega-menu__program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.mega-menu__program-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 91, 207, 0.08);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mega-menu__program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 46, 107, 0.12);
}

.mega-menu__program-img-wrap {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.mega-menu__program-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mega-menu__program-card:hover .mega-menu__program-img-wrap img {
    transform: scale(1.06);
}

.mega-menu__program-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mega-menu__program-body {
    padding: 0.85rem 0.9rem 1rem;
}

.mega-menu__program-body h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.mega-menu__program-body p {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.mega-menu__action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.mega-menu__action-card {
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 91, 207, 0.08);
    background: linear-gradient(180deg, #fff 0%, rgba(244, 249, 255, 0.6) 100%);
    color: var(--text-dark);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mega-menu__action-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 91, 207, 0.18);
    box-shadow: 0 12px 32px rgba(10, 46, 107, 0.08);
}

.mega-menu__action-card--donate {
    background: linear-gradient(135deg, rgba(249, 168, 38, 0.12) 0%, rgba(249, 168, 38, 0.04) 100%);
    border-color: rgba(249, 168, 38, 0.25);
}

.mega-menu__action-card i {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.mega-menu__action-card--donate i {
    color: var(--accent);
}

.mega-menu__action-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.mega-menu__action-card p {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.mega-menu__impact-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
}

.mega-menu__impact-list {
    margin: 1rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-menu__impact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-menu__impact-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mega-menu__impact-list strong {
    font-size: 1rem;
    color: var(--accent);
}

.mega-menu__impact-list span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.mega-menu__newsletter {
    padding: 1.25rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.8) 0%, #fff 100%);
    border: 1px solid rgba(13, 91, 207, 0.08);
}

.mega-menu__newsletter-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.mega-menu__social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.mega-menu__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(13, 91, 207, 0.08);
    color: var(--primary);
    transition: background 0.2s ease, color 0.2s ease;
}

.mega-menu__social a:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1279px) {
    .mega-menu__program-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mega-menu__grid--about,
    .mega-menu__grid--resources {
        grid-template-columns: 1fr 1fr;
    }
    .mega-menu__feature {
        grid-column: 1 / -1;
    }
}

/* Home page — shared section styles */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(13, 91, 207, 0.7);
}

.section-eyebrow--light {
    color: rgba(255, 255, 255, 0.75);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 0.75rem;
    line-height: 1.15;
}

.section-title--light {
    color: #fff;
}

.section-lead {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline--light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline--light:hover {
    background: #fff;
    color: var(--primary);
}

/* Program cards with images */
.home-programs__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .home-programs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-programs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .home-programs__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.program-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 46, 107, 0.12);
}

.program-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card__image img {
    transform: scale(1.08);
}

.program-card__icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.program-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

.program-card__body p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.program-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.program-card:hover .program-card__link {
    color: var(--secondary);
}

/* Core values strip */
.home-values__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.home-values__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: rgba(13, 91, 207, 0.05);
    border: 1px solid rgba(13, 91, 207, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.home-values__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary);
}

/* Events grid */
.home-events__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .home-events__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.event-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 46, 107, 0.12);
}

.event-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.event-card:hover .event-card__image img {
    transform: scale(1.06);
}

.event-card__date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 0.6rem 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--primary-dark);
    text-align: center;
    box-shadow: 0 8px 24px rgba(10, 46, 107, 0.15);
}

.event-card__day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.event-card__month {
    margin-top: 0.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.event-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

.event-card__body p {
    margin-top: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-card__body p i {
    color: var(--secondary);
    margin-right: 0.35rem;
}

.event-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.event-card__body a:hover {
    color: var(--secondary);
}

/* Gallery strip */
.home-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .home-gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-gallery__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.home-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-gallery__item:hover img {
    transform: scale(1.06);
}

.home-gallery__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0.85rem 0.85rem;
    background: linear-gradient(180deg, transparent, rgba(10, 46, 107, 0.85));
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

/* ================================================================== */
/* PUBLIC PAGE HERO (non-home)                                         */
/* ================================================================== */
.page-hero {
    position: relative;
    min-height: clamp(280px, 42vh, 420px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.page-hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 46, 107, 0.92) 0%, rgba(10, 46, 107, 0.78) 45%, rgba(13, 91, 207, 0.55) 100%),
        linear-gradient(180deg, rgba(10, 46, 107, 0.2) 0%, rgba(10, 46, 107, 0.5) 100%);
}

.page-hero__content {
    max-width: 48rem;
    padding: 3.5rem 0 4.5rem;
    color: #fff;
}

.page-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.page-hero__breadcrumb a:hover {
    color: #fff;
}

.page-hero__breadcrumb-sep {
    opacity: 0.5;
}

.page-hero__breadcrumb [aria-current="page"] {
    color: #fff;
    font-weight: 600;
}

.page-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-top: 0.75rem;
    letter-spacing: -0.02em;
}

.page-hero__lead {
    margin-top: 1rem;
    max-width: 40rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero__extra {
    margin-top: 1.5rem;
}

.page-hero__stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.page-hero__stat {
    text-align: center;
}

.page-hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--accent);
    line-height: 1;
}

.page-hero__stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.page-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.page-hero__search-form {
    margin-top: 0.5rem;
}

.page-hero__search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

.page-hero__search-input {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.page-hero__search-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.page-hero__search-btn:hover {
    background: #248a36;
}

.page-hero__search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.page-hero__search-meta {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    line-height: 0;
}

.page-hero__wave svg {
    display: block;
    width: 100%;
    height: 56px;
}

/* About page */
.about-subnav {
    position: sticky;
    top: calc(var(--header-height) + 38px);
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: 0 4px 20px rgba(10, 46, 107, 0.04);
}

.about-subnav__track {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0.65rem 0;
    scrollbar-width: none;
}

.about-subnav__track::-webkit-scrollbar {
    display: none;
}

.about-subnav__link {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.about-subnav__link:hover {
    background: rgba(13, 91, 207, 0.08);
    color: var(--primary);
}

.about-impact-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.about-impact-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    padding: 1.25rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-premium);
}

@media (min-width: 768px) {
    .about-impact-strip__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-impact-strip__item {
    text-align: center;
    padding: 0.5rem;
}

.about-impact-strip__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
    line-height: 1;
}

.about-impact-strip__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-section__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .about-section__grid--reverse .about-section__copy {
        order: 2;
    }
    .about-section__grid--reverse .about-section__visual {
        order: 1;
    }
}

.about-prose {
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.about-prose + .about-prose {
    margin-top: 0.85rem;
}

.about-section__visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-section__image {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.about-section__badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-section__badge-year {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.about-section__badge-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.about-timeline__track {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-timeline__track {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-timeline__item {
    padding: 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-timeline__year {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(13, 91, 207, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.about-timeline__item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.about-mv-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .about-mv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-mv-card {
    padding: 2rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-mv-card--mission {
    border-top: 4px solid var(--primary);
}

.about-mv-card--vision {
    border-top: 4px solid var(--secondary);
}

.about-mv-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(13, 91, 207, 0.08);
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.about-mv-card--vision .about-mv-card__icon {
    background: rgba(46, 158, 68, 0.1);
    color: var(--secondary);
}

.about-mv-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-mv-card > p {
    color: var(--text-muted);
    line-height: 1.7;
}

.about-mv-card__list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-mv-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.about-mv-card__list i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.about-values-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.about-value-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
}

.about-value-card__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 91, 207, 0.1), rgba(46, 158, 68, 0.08));
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-value-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
}

.about-presence-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-presence-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(13, 91, 207, 0.04);
    border: 1px solid rgba(13, 91, 207, 0.08);
}

.about-presence-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
}

.about-presence-item strong {
    display: block;
    font-size: 0.95rem;
}

.about-presence-item p {
    margin-top: 0.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-leadership-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .about-leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-leadership-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
}

.about-leadership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 46, 107, 0.1);
}

.about-leadership-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.about-leadership-card__icon--primary { background: rgba(13, 91, 207, 0.1); color: var(--primary); }
.about-leadership-card__icon--secondary { background: rgba(46, 158, 68, 0.1); color: var(--secondary); }
.about-leadership-card__icon--accent { background: rgba(249, 168, 38, 0.15); color: #c77d00; }

.about-leadership-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.about-leadership-card > p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
}

.about-leadership-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.about-governance {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-governance {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.about-governance__list {
    margin: 1.25rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-governance__list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.about-governance__list i {
    color: var(--secondary);
    width: 1.25rem;
}

.about-governance__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.about-gov-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(13, 91, 207, 0.08);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: background 0.2s ease, transform 0.2s ease;
}

.about-gov-tile:hover {
    background: rgba(13, 91, 207, 0.06);
    transform: translateY(-2px);
    color: var(--primary);
}

.about-gov-tile i {
    font-size: 1.5rem;
    color: var(--primary);
}

.about-objectives-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .about-objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-objectives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-objective-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.about-objective-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.about-objective-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-objective-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
}

/* Mobile top bar & header actions */
@media (max-width: 1023px) {
    .site-nav-actions {
        display: flex !important;
    }

    .site-nav-actions .site-nav__icon-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-top-bar__contacts .site-top-bar__link--md,
    .site-top-bar__contacts .site-top-bar__link--lg,
    .site-top-bar__contacts .site-top-bar__divider {
        display: none !important;
    }

    .site-top-bar__social--md {
        display: flex !important;
    }

    .site-top-bar__quick--md {
        display: inline-flex !important;
    }

    .site-top-bar__staff {
        display: none;
    }

    .site-top-bar__inner {
        justify-content: space-between;
    }

    .site-top-bar__actions {
        margin-left: auto;
    }

    .site-nav__cta span {
        display: inline;
    }

    .site-nav__cta {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }

    .page-hero__content {
        padding: 2.5rem 0 3.5rem;
    }

    .page-hero__title {
        font-size: clamp(1.85rem, 7vw, 2.5rem);
    }

    .about-subnav {
        top: calc(var(--header-height) + 34px);
    }
}

/* ================================================================== */
/* HERO SLIDER (home)                                                  */
/* ================================================================== */
.hero-slider {
    position: relative;
    min-height: clamp(560px, 82vh, 860px);
    overflow: hidden;
    isolation: isolate;
}

.hero-slider__track {
    position: relative;
    width: 100%;
    min-height: clamp(560px, 82vh, 860px);
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    z-index: 0;
}

.hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero-slider__slide.is-active .hero-slider__image {
    transform: scale(1.08);
}

.hero-slider__content {
    max-width: 42rem;
    padding: 3rem 0 5.5rem;
}

.hero-slider__anim {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slider__slide.is-active .hero-slider__anim {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider__slide.is-active .hero-eyebrow.hero-slider__anim { transition-delay: 0.1s; }
.hero-slider__slide.is-active .hero-premium__title.hero-slider__anim { transition-delay: 0.2s; }
.hero-slider__slide.is-active .hero-premium__lead.hero-slider__anim { transition-delay: 0.3s; }
.hero-slider__slide.is-active .hero-premium__actions.hero-slider__anim { transition-delay: 0.4s; }
.hero-slider__slide.is-active .hero-trust-row.hero-slider__anim { transition-delay: 0.5s; }

.hero-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 5.5rem;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
    padding: 0;
}

.hero-slider__dot.is-active {
    width: 28px;
    background: var(--accent);
    border-color: var(--accent);
}

.hero-slider__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.hero-slider .hero-premium__wave {
    z-index: 4;
}

/* ================================================================== */
/* PREMIUM HERO (legacy typography — used inside slider)               */
/* ================================================================== */
.hero-premium {
    position: relative;
    min-height: clamp(620px, 88vh, 900px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 3.5rem 0 0;
    isolation: isolate;
}

.hero-premium__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-premium__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-premium__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 91, 207, 0.35), transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(46, 158, 68, 0.2), transparent 38%);
}

.hero-premium__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 46, 107, 0.94) 0%, rgba(10, 46, 107, 0.82) 42%, rgba(10, 46, 107, 0.45) 68%, rgba(10, 46, 107, 0.25) 100%),
        linear-gradient(180deg, rgba(10, 46, 107, 0.15) 0%, rgba(10, 46, 107, 0.55) 100%);
}

.hero-premium__grid {
    display: grid;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0 5rem;
}

@media (min-width: 1024px) {
    .hero-premium__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 4rem;
        padding: 3rem 0 6rem;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: heroFadeUp 0.8s ease both;
}

.hero-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary);
    box-shadow: 0 0 0 4px rgba(46, 158, 68, 0.25);
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(46, 158, 68, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(46, 158, 68, 0.1); }
}

.hero-premium__title {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.25rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    animation: heroFadeUp 0.8s ease 0.1s both;
}

.hero-premium__accent {
    font-style: italic;
    color: var(--accent);
}

.hero-premium__lead {
    margin-top: 1.25rem;
    max-width: 34rem;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    animation: heroFadeUp 0.8s ease 0.2s both;
}

.hero-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
    animation: heroFadeUp 0.8s ease 0.3s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero--primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e8940f 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(249, 168, 38, 0.4);
}

.btn-hero--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(249, 168, 38, 0.48);
}

.btn-hero--ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    backdrop-filter: blur(6px);
}

.btn-hero--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2.25rem;
    animation: heroFadeUp 0.8s ease 0.4s both;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.hero-trust-item i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.hero-mosaic {
    position: relative;
    min-height: 420px;
    animation: heroFadeUp 0.9s ease 0.25s both;
}

@media (min-width: 1024px) {
    .hero-mosaic {
        min-height: 520px;
    }
}

.hero-mosaic__main,
.hero-mosaic__secondary {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-mosaic__main {
    inset: 0 12% 8% 0;
}

.hero-mosaic__main img,
.hero-mosaic__secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mosaic__label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-mosaic__secondary {
    top: -0.5rem;
    right: 0;
    width: 42%;
    height: 46%;
}

.hero-mosaic__stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1rem 1.15rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.hero-mosaic__stat--impact {
    left: -0.5rem;
    bottom: 2.5rem;
    text-align: center;
    min-width: 120px;
}

.hero-mosaic__stat--water {
    right: 8%;
    bottom: -0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-mosaic__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(46, 158, 68, 0.12);
    color: var(--secondary);
}

.hero-mosaic__stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.hero-mosaic__stat-value-sm {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-mosaic__stat-label,
.hero-mosaic__stat-mini {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-mosaic__badge {
    position: absolute;
    top: 18%;
    right: -0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--secondary), #248a38);
    color: #fff;
    box-shadow: 0 16px 36px rgba(46, 158, 68, 0.4);
    min-width: 110px;
}

.hero-mosaic__badge-num {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.hero-mosaic__badge-text {
    margin-top: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

.hero-premium__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    line-height: 0;
}

.hero-premium__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Impact band (below hero) */
.impact-band {
    position: relative;
    z-index: 5;
    margin-top: -2.5rem;
    padding-bottom: 3rem;
}

.impact-band__card {
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .impact-band__card {
        padding: 2.5rem 3rem;
    }
}

.impact-band__header {
    text-align: center;
    margin-bottom: 2rem;
}

.impact-band__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.impact-band__title {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: #fff;
}

.impact-band__stats {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .impact-band__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.impact-stat {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-stat__number {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.impact-stat__label {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================================== */
/* FOOTER                                                              */
/* ================================================================== */
.footer-cta-band {
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 50%, #f4faf4 100%);
    border-top: 1px solid rgba(13, 91, 207, 0.08);
    padding: 3rem 0;
}

.footer-cta-band__inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2rem 2.25rem;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 91, 207, 0.06);
}

@media (min-width: 768px) {
    .footer-cta-band__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-cta-band__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
}

.footer-cta-band__title {
    margin-top: 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--primary-dark);
    line-height: 1.2;
}

.footer-cta-band__text {
    margin-top: 0.5rem;
    max-width: 32rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.footer-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-cta-band__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-band__btn--primary {
    background: linear-gradient(135deg, var(--accent), #e8940f);
    color: #fff;
    box-shadow: 0 8px 24px rgba(249, 168, 38, 0.3);
}

.footer-cta-band__btn--primary:hover {
    transform: translateY(-1px);
}

.footer-cta-band__btn--outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.footer-cta-band__btn--outline:hover {
    background: var(--primary);
    color: #fff;
}

.site-footer {
    position: relative;
    background:
        linear-gradient(180deg, #071e47 0%, #0a2e6b 40%, #082654 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(46, 158, 68, 0.12), transparent 35%),
        radial-gradient(circle at 80% 100%, rgba(249, 168, 38, 0.08), transparent 30%);
    pointer-events: none;
}

.site-footer__accent-line {
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
}

.site-footer__grid {
    position: relative;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
        gap: 2rem;
    }
}

.footer-brand__logo {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(1.05);
}

.footer-brand__mission {
    margin-top: 1rem;
    max-width: 22rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
}

.footer-brand__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.footer-brand__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-brand__social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.footer-trust-badge i {
    color: var(--accent);
    font-size: 0.65rem;
}

.footer-column__title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-column__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-column__list a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9375rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-column__list a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact-list i {
    margin-top: 0.2rem;
    color: var(--secondary);
    width: 16px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

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

.footer-newsletter {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-newsletter {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.footer-newsletter__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.footer-newsletter__text {
    margin-top: 0.35rem;
    max-width: 24rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.footer-newsletter-form {
    flex: 1;
    max-width: 28rem;
}

.footer-newsletter-form__fields {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

@media (min-width: 480px) {
    .footer-newsletter-form__fields {
        flex-direction: row;
    }
}

.footer-newsletter-form__input {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-newsletter-form__input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(46, 158, 68, 0.2);
}

.footer-newsletter-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-newsletter-form__btn:hover {
    background: #268a3a;
    transform: translateY(-1px);
}

.site-footer__bottom {
    position: relative;
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}

.site-footer__copyright {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.site-footer__copyright a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

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

.site-footer__copyright-sep {
    margin: 0 0.35rem;
    opacity: 0.4;
}

/* Floating action buttons */
.fab-stack {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fab-stack__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-stack__btn:hover {
    transform: scale(1.08);
}

.fab-stack__btn--top {
    background: var(--primary);
}

.fab-stack__btn--donate {
    background: linear-gradient(135deg, var(--accent), #e8940f);
    animation: fabPulse 2.5s ease infinite;
}

.fab-stack__btn--whatsapp {
    background: #25d366;
    font-size: 1.25rem;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(249, 168, 38, 0.35); }
    50% { box-shadow: 0 8px 32px rgba(249, 168, 38, 0.55); }
}

/* ------------------------------------------------------------------ */
/* Programme rich-text content                                          */
/* ------------------------------------------------------------------ */
.programme-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e2e8f0;
}

.programme-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.programme-content p {
    margin-bottom: 0.875rem;
    line-height: 1.75;
}

.programme-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.programme-content ul li {
    margin-bottom: 0.35rem;
    line-height: 1.65;
}

.programme-content strong {
    color: #1e293b;
}

.programme-content h2:first-child,
.programme-content h3:first-child {
    margin-top: 0;
}

/* ------------------------------------------------------------------ */
/* Blog / news post rich-text content                                   */
/* ------------------------------------------------------------------ */
.post-content {
    color: #374151;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.post-content h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e2e8f0;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Tailwind CDN preflight zeros p margins; use sibling spacing so gaps stay visible */
.post-content > * {
    margin-top: 0;
    margin-bottom: 0;
}

.post-content > * + * {
    margin-top: 1.25rem !important;
}

.post-content p,
.post-content div {
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.75rem;
}

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    margin-bottom: 0.4rem;
    display: list-item;
}

.post-content a {
    color: var(--primary);
    text-decoration: underline;
}

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

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #4b5563;
    font-style: italic;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.post-content th,
.post-content td {
    border: 1px solid #e5e7eb;
    padding: 0.6rem 0.75rem;
    text-align: left;
}

.post-content th {
    background: #f3f4f6;
    font-weight: 600;
}

.post-content h2:first-child,
.post-content h3:first-child {
    margin-top: 0;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only:focus,
.sr-only:active {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Hero section animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Counter animation */
@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.count-up {
    animation: countUp 0.5s ease-out;
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(14, 82, 207, 0.08);
    border-radius: 50%;
    border-top: 3px solid var(--secondary);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Design helpers */
.rounded-xl { border-radius: var(--radius-lg) !important; }
.soft-shadow { box-shadow: var(--shadow-soft) !important; }

/* Tailwind CDN fallbacks (critical layout if CDN is slow/blocked) */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1024px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.hidden { display: none !important; }

.site-nav {
    display: none;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 0.15rem;
}

.site-nav-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.site-mobile-toggle {
    display: inline-flex;
}

@media (min-width: 1024px) {
    .site-nav,
    .site-nav-actions {
        display: flex;
    }
    .site-mobile-toggle,
    .site-mobile-menu {
        display: none !important;
    }
}

/* Hero banner */
.hero-banner {
    background: linear-gradient(180deg, rgba(13,91,207,0.06) 0%, rgba(46,158,68,0.04) 100%);
    padding: 6rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* CTA button */
.btn-cta, .bg-accent.btn-cta {
    background: var(--accent) !important;
    color: var(--text-light) !important;
    border-radius: 12px !important;
    padding: .6rem 1.1rem !important;
}

/* Glassmorphism card */
.glass-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

/* Animated counters */
.impact-counter { font-size: 2rem; font-weight: 700; color: var(--primary); }
.impact-counter small { display:block; font-size: .9rem; color: #6b7280; }

/* Legacy hero aliases (other pages may still use .hero-section) */
.hero-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.08), transparent 18%),
        linear-gradient(90deg, #f7f9ff 0%, #f5fbff 50%, #fffaf2 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: 9999px;
}

.hero-section::before {
    width: 260px;
    height: 260px;
    left: -4rem;
    top: 7rem;
    background: radial-gradient(circle, rgba(13, 91, 207, 0.08), rgba(13, 91, 207, 0));
}

.hero-section::after {
    width: 340px;
    height: 340px;
    right: -5rem;
    bottom: -7rem;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.08), rgba(249, 168, 38, 0));
}

.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(8px);
    opacity: 0.6;
}

.hero-orb-one {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.18), rgba(0, 174, 239, 0));
    top: 3rem;
    left: 5%;
}

.hero-orb-two {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.08), rgba(255, 165, 0, 0));
    bottom: -6rem;
    right: 7%;
}

.hero-content h1 {
    color: #002060;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-visual-main,
.hero-visual-side {
    position: absolute;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(0, 32, 96, 0.15);
}

.hero-visual-main {
    inset: 0;
    background: #e5eef9;
}

.hero-visual-main img,
.hero-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 32, 96, 0.04), rgba(0, 32, 96, 0.12)),
        linear-gradient(90deg, rgba(0, 32, 96, 0.25), rgba(0, 32, 96, 0.02));
}

.hero-visual-side {
    width: 44%;
    height: 210px;
}

.hero-side-top {
    top: -1rem;
    right: -1rem;
    border: 6px solid #fff;
}

.hero-side-bottom {
    bottom: -1rem;
    left: -1rem;
    width: 38%;
    height: 190px;
    border: 6px solid #fff;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 32, 96, 0.12);
    padding: 1rem;
}

.hero-card-left {
    left: -1rem;
    bottom: 2rem;
}

.hero-card-right {
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
}

.impact-stat .counter {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

/* Mobile improvements */
@media (max-width: 767px) {
    :root {
        --header-height: 64px;
    }

    .site-top-bar {
        font-size: 0.75rem;
    }

    .site-top-bar__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        min-height: 34px;
        padding: 0.35rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .site-top-bar__inner::-webkit-scrollbar {
        display: none;
    }

    .site-top-bar__contacts,
    .site-top-bar__actions {
        flex-wrap: nowrap;
        gap: 0.5rem 0.65rem;
        flex-shrink: 0;
    }

    .site-top-bar__link span {
        white-space: nowrap;
    }

    .site-top-bar__email {
        max-width: 10rem;
    }

    .site-nav-bar {
        min-height: var(--header-height);
        padding: 0.35rem 0;
        gap: 0.5rem;
    }

    .site-brand__logo {
        height: 48px;
        max-width: 160px;
    }

    .site-nav__cta span {
        display: none;
    }

    .site-nav__cta {
        padding: 0.55rem 0.85rem;
        font-size: 0.8rem;
    }

    .site-nav__icon-btn {
        width: 38px;
        height: 38px;
    }

    .site-mobile-menu {
        max-height: calc(100vh - var(--header-height) - 40px);
        overflow-y: auto;
    }

    .site-mobile-menu__panel {
        border-radius: 16px;
    }

    .hero-slider,
    .hero-slider__track {
        min-height: clamp(520px, 78vh, 720px);
    }

    .hero-slider__slide {
        min-height: clamp(520px, 78vh, 720px);
    }

    .hero-slider__backdrop {
        min-height: 100%;
    }

    .hero-slider__image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .hero-slider__content {
        padding: 2rem 0 5.25rem;
        max-width: 100%;
    }

    .hero-slider__controls {
        bottom: 3.5rem;
        gap: 0.5rem;
    }

    .hero-slider__arrow {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .hero-premium__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
        margin-top: 0.75rem;
    }

    .hero-premium__lead {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero-premium__actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1.25rem;
    }

    .hero-slider .hero-premium__actions .btn-hero {
        width: auto;
        flex: 1;
        min-width: 0;
        padding: 0.72rem 0.5rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .hero-slider .hero-premium__actions .btn-hero i {
        font-size: 0.72rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
    }

    .hero-trust-row {
        display: none;
    }

    .hero-premium__wave svg {
        height: 40px;
    }

    .impact-band {
        margin-top: -1rem;
        padding: 0 0 1rem;
    }

    .impact-band__card {
        padding: 1.25rem;
        border-radius: 18px;
    }

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

    .footer-cta-band {
        padding: 2rem 0;
    }

    .footer-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .footer-cta-band__title {
        font-size: 1.5rem;
    }

    .footer-cta-band__actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-cta-band__btn {
        width: 100%;
        justify-content: center;
    }

    .site-footer .container {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand__logo {
        height: 64px;
        max-width: 220px;
    }

    .footer-brand__mission {
        font-size: 0.9rem;
    }

    .footer-newsletter {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .footer-newsletter-form__fields {
        flex-direction: column;
        width: 100%;
    }

    .site-footer__copyright-sep {
        display: none;
    }

    .site-footer__copyright {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.7;
    }

    .home-events__grid {
        grid-template-columns: 1fr;
    }

    .event-card__image {
        height: 160px;
    }

    .program-card__image {
        height: 150px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-visual-side {
        width: 44%;
        height: 140px;
    }

    .hero-card {
        padding: 0.75rem;
        border-radius: 16px;
    }

    .hero-card-left,
    .hero-card-right {
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
    }

    .hero-card-left {
        left: 0.75rem;
        bottom: 0.75rem;
    }

    .hero-card-right {
        right: 0.75rem;
        top: 0.75rem;
    }

    .footer-newsletter-form__btn {
        width: 100%;
    }

    .copyright-text {
        display: block;
        line-height: 1.8;
        font-size: 0.78rem;
    }

    .fab-stack {
        bottom: 1rem;
        right: 1rem;
        gap: 0.65rem;
    }

    .fab-stack__btn {
        width: 48px;
        height: 48px;
    }
}

/* ================================================================== */
/* CONTACT PAGE                                                        */
/* ================================================================== */
.contact-quick {
    margin-top: -2.5rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.contact-quick__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .contact-quick__grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-quick__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.35rem 1.25rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-premium);
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-quick__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(10, 46, 107, 0.12);
}

.contact-quick__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(13, 91, 207, 0.08);
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-quick__card--whatsapp .contact-quick__icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.contact-quick__card strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-quick__card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-offices__grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .contact-offices__grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-office-card {
    padding: 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.contact-office-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-office-card__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.contact-office-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-office-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-office-card__meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 91, 207, 0.08);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.contact-office-card__meta a {
    color: var(--primary);
    font-weight: 600;
}

.contact-panel {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.contact-form__field {
    margin-bottom: 1.25rem;
}

.contact-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 91, 207, 0.12);
}

.contact-cta-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 3rem 0;
}

.contact-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.contact-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: background 0.2s ease;
}

.contact-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================================================================== */
/* DONATE PAGE                                                         */
/* ================================================================== */
.donate-regions {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1.5rem;
}

.donate-regions__grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .donate-regions__grid { grid-template-columns: repeat(3, 1fr); }
}

.donate-region-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: #fff;
    border: 2px solid rgba(13, 91, 207, 0.1);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.donate-region-btn.is-active {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(13, 91, 207, 0.12);
    transform: translateY(-2px);
}

.donate-region-btn__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 91, 207, 0.08);
    color: var(--primary);
}

.donate-region-btn.is-active .donate-region-btn__icon {
    background: var(--primary);
    color: #fff;
}

.donate-region-btn strong {
    display: block;
    font-size: 0.95rem;
}

.donate-region-btn small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.donate-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.donate-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .donate-amount-grid { grid-template-columns: repeat(4, 1fr); }
}

.donate-amount-btn {
    padding: 1rem 0.5rem;
    border-radius: 14px;
    border: 2px solid rgba(13, 91, 207, 0.1);
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.donate-amount-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.donate-type-toggle {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 999px;
    background: #f1f5f9;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.donate-type-toggle button {
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
}

.donate-type-toggle button.is-active {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.donate-impact-card {
    border-radius: 20px;
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.donate-impact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.donate-impact-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.donate-impact-list strong {
    color: var(--accent);
    white-space: nowrap;
}

.donate-sidebar-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

/* ================================================================== */
/* GALLERY PAGE                                                        */
/* ================================================================== */
.gallery-stats {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.gallery-stats__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-premium);
}

.gallery-stats__item {
    text-align: center;
}

.gallery-stats__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1;
}

.gallery-stats__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 0;
}

.gallery-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.12);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.gallery-filter-pill:hover,
.gallery-filter-pill.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #e2e8f0;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 46, 107, 0.15);
}

.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 46, 107, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__title {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
}

.gallery-item__album {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    margin-top: 0.2rem;
}

.gallery-item__zoom {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-item__zoom {
    opacity: 1;
}

.gallery-item--video {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item--video i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 46, 107, 0.94);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox__img {
    max-width: min(92vw, 1100px);
    max-height: 78vh;
    border-radius: 12px;
    object-fit: contain;
}

.gallery-lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
}

.gallery-lightbox__nav--prev { left: 1rem; }
.gallery-lightbox__nav--next { right: 1rem; }

.gallery-lightbox__caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 36rem;
}

.gallery-lightbox__caption h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.gallery-lightbox__caption p {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    border-radius: 24px;
    background: #fff;
    border: 1px dashed rgba(13, 91, 207, 0.2);
}

/* ================================================================== */
/* PROGRAMS, RESOURCES, EVENTS, PARTNERS PAGES                         */
/* ================================================================== */
.page-stats {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.page-stats__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-premium);
}

.page-stats__item { text-align: center; }

.page-stats__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1;
}

.page-stats__label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.page-subnav {
    position: sticky;
    top: calc(var(--header-height) + 38px);
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: 0 4px 20px rgba(10, 46, 107, 0.04);
}

.page-subnav__track {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0.65rem 0;
    scrollbar-width: none;
}

.page-subnav__track::-webkit-scrollbar { display: none; }

.page-subnav__link {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.page-subnav__link:hover,
.page-subnav__link.is-active {
    background: var(--primary);
    color: #fff;
}

.programs-area {
    padding: 4rem 0;
}

.programs-area:nth-child(even) { background: #f8fafc; }

.programs-area__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .programs-area__grid {
        grid-template-columns: 1fr 1fr;
    }

    .programs-area--reverse .programs-area__grid {
        direction: rtl;
    }

    .programs-area--reverse .programs-area__grid > * {
        direction: ltr;
    }
}

.programs-area__visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-premium);
}

.programs-area__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-area__icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.initiative-card {
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.initiative-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 46, 107, 0.1);
}

.initiative-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.initiative-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.initiative-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
}

.how-it-works__grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .how-it-works__grid { grid-template-columns: repeat(3, 1fr); }
}

.how-it-works__step {
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.how-it-works__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #2480e8);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.resources-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .resources-layout { grid-template-columns: 260px 1fr; }
}

.resources-sidebar {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    height: fit-content;
}

@media (min-width: 1024px) {
    .resources-sidebar { position: sticky; top: calc(var(--header-height) + 48px); }
}

.resource-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(10, 46, 107, 0.12);
}

.resource-card--featured {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    color: #fff;
    border: none;
}

.resource-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(46, 158, 68, 0.15);
    color: var(--secondary);
}

.resource-card--featured .resource-card__badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.resource-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.75rem 0 1rem;
}

.resource-card--featured .resource-card__meta { color: rgba(255, 255, 255, 0.75); }

.resource-card__download {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.resource-card__download:hover { background: var(--primary-dark); }

.resource-card--featured .resource-card__download {
    background: #fff;
    color: var(--primary);
}

.events-featured {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-premium);
    display: grid;
}

@media (min-width: 768px) {
    .events-featured { grid-template-columns: 1.1fr 1fr; }
}

.events-featured__media {
    position: relative;
    min-height: 260px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.events-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
}

.events-featured__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.events-featured__body { padding: 2rem; }

.events-types__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .events-types__grid { grid-template-columns: repeat(4, 1fr); }
}

.events-type-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.events-type-card i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.partner-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(10, 46, 107, 0.12);
}

.partner-card__logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card__placeholder {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.5rem;
}

.partnership-benefits__grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .partnership-benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

.partnership-benefit {
    padding: 1.5rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.partnership-benefit i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.page-cta-band {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 4rem 0;
}

.page-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.page-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* News page */
.news-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .news-layout { grid-template-columns: 1fr 280px; }
}

.news-featured {
    display: grid;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-premium);
}

@media (min-width: 768px) {
    .news-featured { grid-template-columns: 1.1fr 1fr; }
}

.news-featured__media {
    display: block;
    min-height: 280px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.news-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.news-featured__body { padding: 2rem; }

.news-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

.news-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(10, 46, 107, 0.12);
}

.news-card__media {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e2e8f0;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
}

.news-card__body { padding: 1.25rem 1.35rem 1.35rem; }

.news-card__badge,
.news-card__category {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(46, 158, 68, 0.12);
    color: var(--secondary);
}

.news-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.5rem 0;
    line-height: 1.35;
}

.news-card__body h3 a {
    color: var(--text-dark, #0f172a);
    transition: color 0.2s ease;
}

.news-card__body h3 a:hover { color: var(--primary); }

.news-card__body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.news-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.85rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Impact page */
.impact-metrics__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .impact-metrics__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .impact-metrics__grid { grid-template-columns: repeat(6, 1fr); }
}

.impact-metric {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.impact-metric i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.impact-metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.impact-metric span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.impact-project-card {
    padding: 1.35rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    box-shadow: var(--shadow-soft);
}

.impact-project-card__status {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(13, 91, 207, 0.1);
    color: var(--primary);
}

.impact-progress {
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.impact-progress__bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), #3cb858);
}

.impact-progress__bar--health { background: linear-gradient(90deg, #0D5BCF, #3b82f6); }
.impact-progress__bar--education { background: linear-gradient(90deg, var(--secondary), #4ade80); }
.impact-progress__bar--economic { background: linear-gradient(90deg, var(--accent), #fbbf24); }
.impact-progress__bar--advocacy { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.impact-allocation { display: flex; flex-direction: column; gap: 1rem; }

.impact-link-card {
    display: block;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(13, 91, 207, 0.12);
    background: #fff;
    transition: all 0.2s ease;
}

.impact-link-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-premium);
    transform: translateY(-2px);
}

.impact-link-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.impact-link-card p { font-size: 0.9rem; color: var(--text-muted); }

.impact-link-card--primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border: none;
    color: #fff;
}

.impact-link-card--primary h3 { color: #fff; }
.impact-link-card--primary p { color: rgba(255, 255, 255, 0.85); }

/* Program single */
.program-detail {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .program-detail { grid-template-columns: 1fr 320px; }
}

.program-detail__hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-bottom: 1.5rem;
}

.program-detail__hero-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.program-detail__panel {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.25rem;
}

.program-detail__panel--accent {
    background: linear-gradient(135deg, rgba(13, 91, 207, 0.04), rgba(46, 158, 68, 0.06));
    border-color: rgba(46, 158, 68, 0.15);
}

.program-detail__card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13, 91, 207, 0.08);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.program-detail__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.program-detail__meta li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.program-detail__meta li:last-child { border-bottom: none; padding-bottom: 0; }

.program-detail__meta span { color: var(--text-muted); }

.programme-content.post-content > * + * { margin-top: 1.25rem; }
.programme-content.post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid #e2e8f0;
}
.programme-content.post-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-top: 1.25rem; }
.programme-content.post-content p,
.programme-content.post-content li { line-height: 1.75; color: #374151; }
.programme-content.post-content ul,
.programme-content.post-content ol { padding-left: 1.5rem; }

/* Print styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: white;
        color: black;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fab-stack__btn--donate {
        animation: none;
    }

    .hero-eyebrow__dot {
        animation: none;
    }
}
