:root {
    --bg: #f7f5f2;
    --surface: #ffffff;
    --text: #1f1f1f;
    --muted: #6b7280;
    --accent: #d6336c;
    --accent-dark: #a11d43;
    --shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

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

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    z-index: 100;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(31, 41, 55, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.btn-pill {
    padding: 0.85rem 1.4rem;
}

.btn-large {
    min-width: 160px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 24px;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    object-fit: cover;
    opacity: 0.62;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.82));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 760px;
    padding: 0 16px;
}

.hero-content .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.75rem, 5vw, 4.75rem);
    line-height: 1.02;
    margin: 0;
}

.hero-copy {
    max-width: 720px;
    margin: 1.4rem auto 2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

section {
    padding: 80px 0;
}

.impact-section,
.about-section,
.programs-section,
.gallery-section,
.volunteer-section,
.donate-section {
    background: #fff;
}

.impact-grid,
.about-grid,
.program-grid,
.volunteer-grid,
.donate-grid {
    display: grid;
    gap: 32px;
}

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

.impact-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: #fdf4f8;
    text-align: center;
    box-shadow: var(--shadow);
}

.impact-card h2 {
    font-size: 3rem;
    margin: 0 0 0.75rem;
    color: var(--accent);
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: 2.75rem;
    margin: 0.75rem auto 0;
    max-width: 780px;
}

.section-heading .eyebrow {
    color: var(--accent);
    font-weight: 700;
}

.about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.about-image-card,
.volunteer-image-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-card img,
.volunteer-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.about-actions,
.volunteer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.accountability-section {
    background: #fff;
}

.accountability-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2rem;
}

.accountability-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: #fdf0f6;
    box-shadow: var(--shadow);
}

.accountability-card h3 {
    margin-top: 0;
    color: var(--accent);
}

.accountability-card ul {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--muted);
}

.accountability-card li {
    margin-bottom: 0.75rem;
}

.checklist li {
    list-style-type: disc;
}

.governance-block,
.policies-block {
    background: #fdf4f8;
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.governance-block h3,
.policies-block h3 {
    margin-top: 0;
    color: var(--accent);
}

.policies-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.policy-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    color: inherit;
}

.policy-link span:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}

.program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-card {
    background: #faf5f8;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(31, 41, 55, 0.12);
}

.program-card h3 {
    margin: 0 0 1rem;
}

.program-card p {
    margin: 0 0 1.4rem;
    color: var(--muted);
}

.link-arrow {
    color: var(--accent);
    font-weight: 700;
}

.gallery-section {
    background: var(--bg);
}

.carousel {
    position: relative;
    display: grid;
    place-items: center;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    gap: 24px;
    width: 100%;
    transition: transform 0.35s ease;
}

.carousel-item {
    scroll-snap-align: center;
    min-width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font-size: 1.35rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.volunteer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.volunteer-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.volunteer-list li {
    background: #ffeff5;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    color: var(--text);
}

.donate-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
    gap: 32px;
}

.donate-card {
    background: #fdf4f8;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.donate-card h3 {
    margin-top: 0;
}

.donate-list {
    padding: 0;
    list-style: none;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 1rem;
}

.donate-list li {
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(31, 41, 55, 0.08);
}

.site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1180px;
}

.footer-contact {
    font-size: 0.95rem;
    color: rgba(229, 231, 235, 0.85);
    text-align: right;
    min-width: 280px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(229, 231, 235, 0.9);
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(229, 231, 235, 0.9);
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(229, 231, 235, 0.7);
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.1);
}

@media (max-width: 780px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
        min-width: auto;
    }

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

@media (max-width: 520px) {
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 960px) {
    .impact-grid,
    .program-grid,
    .about-grid,
    .volunteer-grid,
    .donate-grid {
        grid-template-columns: 1fr;
    }

    .about-image-card img,
    .volunteer-image-card img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 780px) {
    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(31, 41, 55, 0.08);
        padding: 1rem 18px 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.25s ease;
        visibility: hidden;
        opacity: 0;
    }

    .site-nav.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .site-header {
        padding: 0 0 8px;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .carousel-item img {
        height: 320px;
    }
}

@media (max-width: 520px) {
    .site-nav {
        padding: 1rem 14px 1rem;
    }

    .header-inner {
        flex-direction: row;
    }

    .nav-toggle {
        margin-left: auto;
    }

    .impact-card h2 {
        font-size: 2.4rem;
    }

    .carousel-item img {
        height: 260px;
    }
}