:root {
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Inter', serif;
    --brand-primary: #0f7c90;
    --brand-secondary: #055a7a;
    --brand-accent: #f5a623;
    --brand-light: #f4f9fb;
    --text-dark: #0f1c24;
    --text-muted: #546371;
    --border-radius: 20px;
    --shadow-soft: 0 24px 60px rgba(15, 28, 36, 0.12);
    --shadow-subtle: 0 10px 30px rgba(15, 28, 36, 0.08);
    --container-max: 1180px;
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
    background: #f9fcfd;
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background:
        radial-gradient(circle at 12% 18%, rgba(15, 124, 144, 0.08), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(5, 90, 122, 0.06), transparent 50%),
        #f9fcfd;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--brand-secondary);
}

.page {
    position: relative;
}

.page section {
    scroll-margin-top: 120px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(15, 124, 144, 0.15);
    z-index: 200;
    pointer-events: none;
    backdrop-filter: blur(6px);
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    transition: width 0.25s ease-out;
}

section[data-section] {
    position: relative;
    isolation: isolate;
}

section[data-section]:not(.hero) {
    transform: translate3d(0, 32px, 0);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.9s ease;
}

section[data-section]:not(.hero)::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    width: clamp(240px, 38vw, 420px);
    height: clamp(240px, 38vw, 420px);
    background: radial-gradient(circle, rgba(15, 124, 144, 0.16), transparent 70%);
    filter: blur(48px);
    transform: translate3d(-50%, 20%, 0) scale(0.8);
    opacity: 0;
    transition: opacity 0.85s ease, transform 0.85s ease;
    z-index: -1;
    pointer-events: none;
}

section[data-section].section-visible:not(.hero) {
    transform: translate3d(0, 0, 0);
}

section[data-section].section-visible:not(.hero)::before {
    opacity: 0.35;
    transform: translate3d(-50%, 0, 0) scale(1);
}

.container {
    width: min(90%, var(--container-max));
    margin: 0 auto;
}

.eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 1.5rem;
}

h3 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
}

p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.lead {
    font-size: 1.1rem;
    max-width: 540px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    border: none;
    cursor: pointer;
}

html.js-enabled [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

html.js-enabled [data-reveal="fade"] {
    transform: translate3d(0, 16px, 0);
}

html.js-enabled [data-reveal="left"] {
    transform: translate3d(-48px, 0, 0);
}

html.js-enabled [data-reveal="right"] {
    transform: translate3d(48px, 0, 0);
}

html.js-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html:not(.js-enabled) [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 124, 144, 0.24);
}

.btn-outline {
    background: transparent;
    border: 1.6px solid rgba(15, 124, 144, 0.35);
    color: var(--brand-secondary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.btn-ghost {
    background: rgba(15, 124, 144, 0.1);
    color: var(--brand-secondary);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: rgba(15, 124, 144, 0.16);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 2px solid rgba(15, 124, 144, 0.45);
    outline-offset: 2px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 110;
    background: transparent;
    color: #f5fbfd;
    border-bottom: 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-bottom 0.3s ease;
}

.site-header:not(.scrolled) .main-nav a,
.site-header:not(.scrolled) .nav-toggle {
    color: #f5fbfd;
}

.site-header:not(.scrolled) .donate-btn {
    border: 1.4px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.site-header:not(.scrolled) .donate-btn:hover,
.site-header:not(.scrolled) .donate-btn:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.site-header.scrolled {
    background: rgba(240, 244, 246, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-subtle);
    color: var(--text-dark);
    border-bottom: 1px solid rgba(15, 28, 36, 0.08);
}

.site-header.scrolled .main-nav a,
.site-header.scrolled .nav-toggle {
    color: var(--text-dark);
}

.site-header.scrolled .donate-btn {
    display: inline-flex;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.brand img {
    height: 52px;
    width: auto;
    display: block;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-social {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.header-social a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.header-social svg {
    width: 100%;
    height: 100%;
}

.header-social a:hover,
.header-social a:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
}

.site-header:not(.scrolled) .header-social a:hover,
.site-header:not(.scrolled) .header-social a:focus-visible {
    color: #f5fbfd;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.2rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-header:not(.scrolled) .main-nav a:hover,
.site-header:not(.scrolled) .main-nav a:focus-visible {
    color: #f5fbfd;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: 0;
    cursor: pointer;
    color: inherit;
}

.nav-toggle span {
    width: 1.6rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.donate-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.6rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 18, 26, 0.82) 0%, rgba(8, 18, 26, 0.45) 58%, rgba(8, 18, 26, 0.78) 100%);
    z-index: 1;
}

.hero-slider {
    position: absolute;
    inset: 0;
    display: grid;
    z-index: 0;
}

.hero-slide {
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    grid-area: 1 / 1;
    filter: saturate(1.1);
    opacity: 0;
    animation: heroFade 32s infinite;
}

.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }

@keyframes heroFade {
    0% { opacity: 0; transform: scale(1.12); }
    5% { opacity: 1; transform: scale(1.06); }
    60% { opacity: 1; transform: scale(1); }
    68% { opacity: 0; transform: scale(1); }
    100% { opacity: 0; transform: scale(1); }
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 0 rgba(15, 124, 144, 0.0);
        transform: scale(1);
    }
    to {
        box-shadow: 0 0 24px rgba(15, 124, 144, 0.35);
        transform: scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 7rem 0 clamp(4rem, 9vw, 7rem);
    color: #edf5f7;
}

.hero-content > * {
    max-width: 720px;
}

.hero h1 {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero .lead {
    color: rgba(237, 245, 247, 0.85);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-eyebrow {
    color: rgba(237, 245, 247, 0.85);
    letter-spacing: 0.28em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.foundation-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: #f5f6f8;
    overflow: hidden;
}

.foundation-banner-inner {
    position: relative;
    width: min(92%, var(--container-max));
    margin: 0 auto;
}

.foundation-banner-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.4rem, 2vw, 1.2rem);
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(3.2rem, 16vw, 11rem);
    line-height: 0.82;
    color: rgba(15, 28, 36, 0.08);
    pointer-events: none;
    user-select: none;
}

.foundation-banner-background span {
    display: block;
}

.foundation-banner-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.foundation-banner-eyebrow {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.foundation-banner-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--text-dark);
}

.about-highlight {
    position: relative;
    padding: clamp(4.5rem, 10vw, 7.5rem) 0;
    background: linear-gradient(180deg, #f7f8fa 0%, #f2f3f6 100%);
}

.about-highlight-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: center;
}

.about-highlight-image {
    position: relative;
    border-radius: clamp(18px, 3vw, 26px);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(12, 32, 48, 0.18);
}

.about-highlight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.about-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-highlight-content {
    position: relative;
    background: #ffffff;
    border-radius: clamp(18px, 3vw, 26px);
    padding: clamp(2.4rem, 6vw, 3.2rem);
    box-shadow: var(--shadow-subtle);
}

.about-highlight-content::before {
    content: "";
    position: absolute;
    top: clamp(1.4rem, 3vw, 2rem);
    left: clamp(1.6rem, 3vw, 2.4rem);
    width: clamp(42px, 9vw, 58px);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f5a623 0%, rgba(245, 166, 35, 0) 100%);
}

.about-highlight-eyebrow {
    color: var(--brand-secondary);
    letter-spacing: 0.22em;
    margin-bottom: 0.6rem;
    padding-left: clamp(3.2rem, 7vw, 4.6rem);
}

.about-highlight-content h2 {
    margin: 0 0 1.1rem;
    font-family: var(--font-sans);
    font-size: clamp(2.2rem, 4.6vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    padding-left: clamp(3.2rem, 7vw, 4.6rem);
}

.about-highlight-content p {
    color: var(--text-muted);
    padding-left: clamp(3.2rem, 7vw, 4.6rem);
}

.about-highlight-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.4rem;
    padding-left: clamp(3.2rem, 7vw, 4.6rem);
}

.about-highlight-meta div {
    background: rgba(15, 124, 144, 0.06);
    border-radius: 16px;
    padding: 1rem 1.2rem;
}

.meta-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    margin-bottom: 0.4rem;
}

.impact-map {
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
    background: linear-gradient(180deg, #f6f9fb 0%, #eef4f7 100%);
}

.impact-map-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

.map-visual {
    position: relative;
    background: #fff;
    border-radius: calc(var(--border-radius) + 4px);
    padding: clamp(1rem, 3vw, 1.6rem);
    box-shadow: var(--shadow-soft);
}

.map-visual svg {
    width: 100%;
    height: auto;
    display: block;
}

#nigeria-map {
    width: 100%;
    height: auto;
    min-height: 360px;
}

.map-base {
    fill: #e7edf2;
    stroke: #ffffff;
    stroke-width: 1;
}

.map-state {
    fill: rgba(15, 124, 144, 0.78);
    stroke: #ffffff;
    stroke-width: 3;
    cursor: pointer;
    transition: fill 0.25s ease, transform 0.25s ease, stroke-width 0.25s ease;
    filter: drop-shadow(0 8px 18px rgba(15, 28, 36, 0.15));
}

.map-state--circle {
    stroke-width: 4;
}

.map-state:hover,
.map-state:focus-visible,
.map-state.is-active {
    fill: #0f8fb0;
    transform: translateY(-2px);
    outline: none;
}

.map-state:focus-visible {
    box-shadow: 0 0 0 3px rgba(15, 124, 144, 0.35);
}

.map-dots circle {
    fill: #fff;
    stroke: rgba(15, 124, 144, 0.65);
    stroke-width: 2;
}

.map-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #0f7c90;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.map-tooltip.visible {
    opacity: 1;
}

.map-copy h2 {
    margin-top: 0;
}

.map-info {
    background: #fff;
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-subtle);
    margin: 1.5rem 0;
}

.map-info-title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.map-info-body {
    margin: 0;
    color: var(--text-muted);
}

.map-focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.map-focus-list li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-muted);
}

.map-focus-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-size: 0.7rem;
    top: 0.4rem;
}

.statement {
    position: relative;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background:
        radial-gradient(120% 120% at 10% 10%, rgba(15, 124, 144, 0.08) 0%, transparent 45%),
        radial-gradient(120% 140% at 90% 20%, rgba(5, 90, 122, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f3f7f9 100%);
    overflow: hidden;
}

.statement::before {
    content: "";
    position: absolute;
    inset: 10% -40% auto;
    height: clamp(280px, 45vw, 420px);
    background: conic-gradient(from 210deg, rgba(15, 124, 144, 0.14), rgba(255, 255, 255, 0));
    filter: blur(60px);
    opacity: 0.8;
    z-index: 0;
}

.statement::after {
    content: "";
    position: absolute;
    inset: auto -30% -35%;
    height: clamp(260px, 40vw, 380px);
    background: conic-gradient(from 20deg, rgba(245, 166, 35, 0.18), rgba(255, 255, 255, 0));
    filter: blur(70px);
    opacity: 0.7;
    z-index: 0;
}

.statement-inner {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    position: relative;
    z-index: 1;
}

.statement h2 {
    margin-bottom: 1.4rem;
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(120deg, #0f1c24 0%, #1c4350 45%, #0f7c90 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.impact-metrics {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    backdrop-filter: blur(6px);
}

.metric {
    flex: 1 1 150px;
    padding: 1.8rem;
    border-radius: calc(var(--border-radius) - 6px);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.2)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(15, 28, 36, 0.08);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.metric::before {
    content: "";
    position: absolute;
    inset: -40% 40% 60% -40%;
    background: linear-gradient(120deg, rgba(15, 124, 144, 0.12), transparent);
    transform: rotate(8deg);
    opacity: 0.8;
}

.metric:hover,
.metric:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 28, 36, 0.18);
}

.metric-value {
    font-size: clamp(2.1rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--brand-secondary);
}

.metric-value span {
    font-size: 1.2rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.4rem;
    font-weight: 500;
}

.statement-text p {
    font-size: 1.05rem;
    color: rgba(84, 99, 113, 0.9);
    max-width: 520px;
}

.who-we-are {
    position: relative;
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    background:
        linear-gradient(135deg, rgba(15, 124, 144, 0.05) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
    overflow: hidden;
}

.who-we-are::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -18%;
    width: clamp(360px, 40vw, 520px);
    height: clamp(360px, 40vw, 520px);
    background: radial-gradient(circle, rgba(15, 124, 144, 0.18), transparent 65%);
    filter: blur(6px);
    opacity: 0.6;
    z-index: 0;
}

.who-we-are-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.who-we-are .content {
    background: #fff;
    border-radius: 26px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-soft);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.4rem 0 1rem;
}

.vision-card {
    background: rgba(244, 249, 251, 0.85);
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(15, 124, 144, 0.08);
}

.vision-card h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-secondary);
}

.image-frame {
    position: relative;
    border-radius: calc(var(--border-radius) + 10px);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 124, 144, 0.15), transparent 60%);
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pillars li {
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    background:
        linear-gradient(120deg, rgba(15, 124, 144, 0.2) 0%, rgba(5, 90, 122, 0.28) 45%, rgba(15, 124, 144, 0.12) 100%);
    color: #0e4a5a;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.pillars li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    margin-right: 0.5rem;
    display: inline-block;
}

.reach {
    background: var(--text-dark);
    color: #f0f7f9;
    position: relative;
    overflow: hidden;
}

.reach .container {
    padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(1rem, 4vw, 2rem);
}

.state-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.2rem 0 1.4rem;
}

.state-badge {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.sector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.sector-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sector-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f5a623;
}

.sector-card p {
    margin: 0;
    color: rgba(240, 247, 249, 0.85);
    font-size: 0.95rem;
}

.reach-header p {
    color: rgba(255, 255, 255, 0.72);
}

.reach-header h2 {
    color: #fff;
}

.map-layer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    isolation: isolate;
}

.map-layer img {
    width: 100%;
    height: clamp(380px, 48vw, 460px);
    object-fit: cover;
    filter: grayscale(0.12) saturate(1.15);
    opacity: 0.9;
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.progress-card {
    background: rgba(8, 22, 30, 0.85);
    padding: clamp(1.9rem, 4vw, 2.6rem);
    border-radius: calc(var(--border-radius) + 6px);
    max-width: clamp(320px, 36vw, 420px);
    box-shadow: 0 28px 60px rgba(8, 22, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    position: relative;
}

.progress-card::before {
    content: "";
    position: absolute;
    inset: -20% -30% 65% 45%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.25), transparent 65%);
    opacity: 0.6;
}

.progress-card h3 {
    color: #fff;
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
}

.progress-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(236, 245, 247, 0.88);
    display: grid;
    gap: 0.7rem;
}

.values {
    position: relative;
    padding: clamp(3.2rem, 7vw, 6rem) 0;
    background:
        radial-gradient(110% 110% at 20% 20%, rgba(15, 124, 144, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(110% 110% at 80% 0%, rgba(5, 90, 122, 0.09) 0%, rgba(255, 255, 255, 0) 65%),
        var(--brand-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 249, 251, 0.7) 65%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: calc(var(--border-radius) - 4px);
    padding: 2.2rem 2rem;
    box-shadow: 0 20px 40px rgba(15, 28, 36, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 80%;
    background: radial-gradient(circle at top, rgba(15, 124, 144, 0.16), transparent 62%);
    transition: transform 0.35s ease;
}

.value-card:hover,
.value-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.value-card:hover::after,
.value-card:focus-within::after {
    transform: translateY(8px);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 124, 144, 0.18), rgba(15, 124, 144, 0.05));
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.value-card:hover .icon-circle,
.value-card:focus-within .icon-circle {
    animation: pulseGlow 1.4s ease-in-out infinite alternate;
}

.projects {
    position: relative;
    padding: clamp(3.2rem, 7vw, 6.5rem) 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f9fb 100%);
}

.projects::before {
    content: "";
    position: absolute;
    inset: 0 10% auto;
    height: 40%;
    background: radial-gradient(circle at 20% 20%, rgba(15, 124, 144, 0.12), transparent 65%);
    opacity: 0.7;
}

.projects::after {
    content: "";
    position: absolute;
    inset: auto 15% 5%;
    height: 30%;
    background: radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.16), transparent 65%);
    opacity: 0.6;
}

.projects-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.projects-slider {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 1.6rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.projects-slider::-webkit-scrollbar {
    height: 6px;
}

.projects-slider::-webkit-scrollbar-thumb {
    background: rgba(15, 124, 144, 0.4);
    border-radius: 999px;
}

.project-card {
    background: #fff;
    border-radius: calc(var(--border-radius) - 6px);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 124, 144, 0.12));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.project-card:hover,
.project-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(15, 28, 36, 0.16);
}

.project-card:hover::after,
.project-card:focus-within::after {
    opacity: 1;
}

.project-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img,
.project-card:focus-within img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.tag {
    align-self: flex-start;
    padding: 0.4rem 0.9rem;
    background: rgba(245, 166, 35, 0.18);
    color: #a96307;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

.project-content p {
    flex: 1;
}

.stories {
    position: relative;
    padding: clamp(3.2rem, 7vw, 6rem) 0;
    background:
        radial-gradient(120% 120% at 15% 10%, rgba(15, 124, 144, 0.08), transparent 60%),
        radial-gradient(120% 110% at 85% 5%, rgba(5, 90, 122, 0.08), transparent 65%),
        linear-gradient(180deg, #ffffff, #f7fbfc);
}

.stories-inner {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
}

.stories-list {
    display: grid;
    gap: 1.5rem;
}

.story-card {
    padding: 1.5rem;
    border-radius: calc(var(--border-radius) - 10px);
    background: #fff;
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 124, 144, 0.08), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover::before,
.story-card:focus-within::before {
    opacity: 1;
}

.story-card:hover,
.story-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 28, 36, 0.14);
}

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

.objective-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.1em;
}

.story-card time {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.media-panel {
    background: #fff;
    border-radius: calc(var(--border-radius) - 4px);
    padding: 2.2rem;
    box-shadow: 0 22px 50px rgba(15, 28, 36, 0.1);
    display: grid;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-panel::before {
    content: "";
    position: absolute;
    inset: -5% 35% 65% -25%;
    background: linear-gradient(130deg, rgba(15, 124, 144, 0.18), transparent 60%);
    opacity: 0.6;
}

.media-panel:hover,
.media-panel:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 28, 36, 0.16);
}

.social-links {
    display: grid;
    gap: 0.75rem;
}

.social-links a {
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 124, 144, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-secondary);
    transition: background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    background: rgba(15, 124, 144, 0.1);
    transform: translateX(4px);
}

.video-card {
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(15, 124, 144, 0.12), rgba(255, 255, 255, 0.9));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-thumb button {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.88);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.video-body {
    padding: 1.4rem 1.6rem 1.8rem;
}

.partners {
    position: relative;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8fa 100%);
}

.partners-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.carousel-controls {
    display: flex;
    gap: 0.75rem;
}

.carousel-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 124, 144, 0.3);
    background: #fff;
    color: var(--brand-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
    background: rgba(15, 124, 144, 0.1);
    transform: translateY(-2px);
}

.carousel-track {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(15, 124, 144, 0.35);
    border-radius: 999px;
}

.partner-card {
    background: #fff;
    border-radius: calc(var(--border-radius) - 10px);
    box-shadow: var(--shadow-subtle);
    padding: 1.6rem;
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card img {
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    filter: saturate(1.05);
    margin-bottom: 1rem;
    transition: transform 0.45s ease;
}

.partner-card figcaption {
    font-weight: 600;
    color: var(--text-muted);
}

.office-address {
    margin: 0.5rem 0 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.office-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.office-contacts a {
    color: var(--brand-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.partner-card:hover,
.partner-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 28, 36, 0.14);
}

.partner-card:hover img,
.partner-card:focus-within img {
    transform: scale(1.04);
}

.site-footer {
    background: linear-gradient(180deg, #0f5f75, #0a4253);
    color: #e6f3f7;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -20% 60% auto -10%;
    height: 60%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.18), transparent 70%);
    opacity: 0.6;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: auto -10% -25%;
    height: 50%;
    background: radial-gradient(circle, rgba(15, 124, 144, 0.25), transparent 65%);
    opacity: 0.4;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    z-index: 1;
}

.footer-brand .brand-mark {
    margin-bottom: 1rem;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #f5fbfd;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-col ul li {
    position: relative;
    padding-left: 0.8rem;
}

.footer-col ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(230, 243, 247, 0.6);
}

.footer-col a {
    color: rgba(230, 243, 247, 0.9);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
    color: #fff;
}

address {
    font-style: normal;
    font-size: 0.95rem;
    color: rgba(230, 243, 247, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(230, 243, 247, 0.8);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    html.js-enabled [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    section[data-section]:not(.hero) {
        transform: none !important;
        transition: none !important;
    }

    section[data-section]:not(.hero)::before {
        transition: none !important;
    }

    .scroll-progress span {
        transition: none !important;
    }

    .metric,
    .value-card,
    .project-card,
    .story-card,
    .media-panel,
    .partner-card {
        transition-duration: 0s !important;
    }

    .value-card:hover .icon-circle,
    .value-card:focus-within .icon-circle {
        animation: none;
    }

    .project-card:hover img,
    .project-card:focus-within img,
    .partner-card:hover img,
    .partner-card:focus-within img {
        transform: none;
    }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .about-highlight-inner,
    .statement-inner,
    .who-we-are-inner,
    .stories-inner,
    .impact-map-inner {
        grid-template-columns: 1fr;
    }

    .about-highlight-inner {
        gap: clamp(2rem, 7vw, 3.2rem);
    }

    .about-highlight-image {
        max-width: 560px;
        margin: 0 auto;
    }

    .about-highlight-content {
        padding: clamp(2rem, 5.5vw, 2.8rem);
    }

    .about-highlight-content::before {
        left: clamp(1.8rem, 5vw, 2.6rem);
    }

    .about-highlight-eyebrow,
    .about-highlight-content h2,
    .about-highlight-content p {
        padding-left: clamp(1.8rem, 5vw, 2.6rem);
    }

    .statement-inner {
        text-align: center;
    }

    .statement-text p {
        margin: 0 auto;
    }

    .map-overlay {
        justify-content: center;
    }

    .progress-card {
        max-width: min(420px, 100%);
    }

    .map-visual {
        order: 2;
    }

    .map-copy {
        order: 1;
    }
}

@media (max-width: 860px) {
    .about-highlight {
        padding: clamp(3.6rem, 12vw, 4.6rem) 0;
    }

    .about-highlight-content {
        padding: clamp(1.8rem, 7vw, 2.4rem);
    }

    .about-highlight-content::before {
        left: clamp(1.2rem, 6vw, 1.8rem);
    }

    .about-highlight-eyebrow,
    .about-highlight-content h2,
    .about-highlight-content p {
        padding-left: clamp(1.4rem, 6vw, 2rem);
    }

    .about-highlight-meta {
        padding-left: clamp(1.4rem, 6vw, 2rem);
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        position: absolute;
        top: 100%;
        right: 1rem;
        width: min(240px, calc(100vw - 2rem));
        flex-direction: column;
        gap: 0;
        background: rgba(236, 241, 244, 0.98);
        border-radius: 18px;
        padding: 0.5rem;
        box-shadow: var(--shadow-soft);
        transform-origin: top right;
        transform: scale(0.8);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .main-nav ul.open {
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav li {
        border-radius: 14px;
    }

    .main-nav a {
        display: block;
        padding: 0.8rem 1.1rem;
    }

    .main-nav ul.open a {
        color: var(--text-dark);
    }

    .main-nav a::after {
        display: none;
    }

    .header-social {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .donate-btn {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .impact-metrics {
        justify-content: center;
    }

    .projects-slider,
    .carousel-track {
        grid-auto-columns: 80%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.6rem;
    }
}

@media (max-width: 600px) {
    .about-highlight-content {
        padding: clamp(1.6rem, 8vw, 2.1rem);
    }

    .about-highlight-content::before {
        left: 1.2rem;
        width: 42px;
    }

    .about-highlight-eyebrow,
    .about-highlight-content h2,
    .about-highlight-content p {
        padding-left: 1.2rem;
    }

    .about-highlight-content h2 {
        font-size: clamp(1.9rem, 8vw, 2.3rem);
    }

    .hero-content {
        padding-bottom: 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .impact-metrics {
        gap: 1rem;
    }

    .metric {
        padding: 1.1rem;
    }

    .video-thumb button {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
}
