:root {
    --cream: #efe7d8;
    --cream-light: #faf7f1;
    --teal-dark: #4f7c75;
    --teal-deep: #2f5f58;
    --gold: #c9a85b;
    --text: #3d3d3d;
    --muted: #6f6f6f;
    --white: #ffffff;
}

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

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: Georgia, serif;
    line-height: 1.08;
    color: var(--teal-dark);
}

h1 {
    font-size: clamp(3.1rem, 5.05vw, 5.35rem);
    line-height: 1.03;
    max-width: 585px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
    font-size: 1.45rem;
}

p {
    font-size: 1rem;
}

a {
    color: inherit;
}

.nav {
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: bold;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.95rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
}

.nav-donate {
    border: 1px solid var(--teal-dark);
    border-radius: 999px;
    padding: 9px 18px;
    color: var(--teal-dark) !important;
}

.hero,
.split-section,
.program-section,
.vision-section,
.nonprofit-panel,
.contact-section {
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    min-height: auto;
    padding: 36px 62px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(239, 231, 216, 0.9), rgba(255, 255, 255, 0.92));
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 22px;
    overflow: hidden;
}

.eyebrow,
.card-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.subtitle {
    max-width: 760px;
    font-size: 1.2rem;
    margin-top: 28px;
    color: var(--muted);
}

.cta-buttons,
.support-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.btn.primary {
    background: var(--gold);
    color: var(--white);
}

.btn.secondary {
    background: var(--white);
    color: var(--teal-dark);
    border: 1px solid rgba(79, 124, 117, 0.35);
}

.light-btn {
    background: rgba(255, 255, 255, 0.95);
}

.hero-card {
    background: var(--white);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.hero-card h2 {
    font-size: 2.1rem;
    margin-bottom: 16px;
}

.hero-side {
    display: grid;
    gap: 8px;
    align-items: center;
    justify-items: center;
    margin-top: -112px;
}

.hero-logo {
    width: 138%;
    max-width: 830px;
    display: block;
    margin: 0 auto;
    transform: translateX(-44px);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.08));
}

.founder-card {
    width: 92%;
    max-width: 590px;
    margin: -155px auto 0;
    transform: translateX(42px);
}

.founder-card h2 {
    font-size: clamp(1.45rem, 2.1vw, 1.85rem);
}

.split-section {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.text-stack p + p {
    margin-top: 18px;
}

.story-panel,
.support-section {
    width: min(1360px, calc(100% - 32px));
    margin: 90px auto 0;
    border-radius: 30px;
    padding: 58px 70px;
}

.story-panel {
    background: var(--white);
}

.story-panel p:not(.eyebrow),
.section-heading p,
.program-card p,
.vision-list p,
.nonprofit-panel p,
.contact-section p,
.support-section p {
    color: var(--muted);
}

.story-panel p:not(.eyebrow) {
    max-width: 850px;
    margin-top: 18px;
}

.program-section {
    margin-top: 90px;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
    margin-top: 18px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.program-card {
    background: var(--white);
    border-radius: 26px;
    padding: 34px;
}

.featured-card {
    border-top: 5px solid var(--gold);
}

.program-card h3 {
    margin-bottom: 14px;
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--teal-dark);
    font-weight: 800;
    text-decoration-color: var(--gold);
}

.vision-section {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.vision-list {
    display: grid;
    gap: 18px;
}

.vision-list div {
    background: var(--cream);
    border-radius: 22px;
    padding: 28px;
}

.vision-list h3 {
    margin-bottom: 8px;
}

.nonprofit-panel {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
}

.nonprofit-panel p {
    margin-top: 16px;
}

.status-card {
    background: var(--cream-light);
    border-radius: 24px;
    padding: 28px;
}

.status-card h3 {
    margin-bottom: 14px;
}

.status-logo {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 28px auto 0;
}

.support-section {
    background: var(--teal-dark);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
    align-items: center;
}

.support-section h2,
.support-section .eyebrow {
    color: var(--white);
}

.support-section p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.84);
    margin-top: 18px;
}

.contact-section {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.contact-section p {
    margin-top: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: 26px;
    padding: 32px;
}

.contact-card p {
    margin-top: 0;
    margin-bottom: 14px;
}

.footer {
    width: min(1360px, calc(100% - 32px));
    margin: 80px auto 35px;
    text-align: center;
    color: var(--muted);
}

.footer a {
    color: var(--teal-dark);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .hero-side {
        margin-top: 20px;
    }

    .hero-logo {
        width: 100%;
        max-width: 520px;
        transform: none;
    }

    .founder-card {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 850px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand {
        font-size: clamp(1.35rem, 8vw, 1.8rem);
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero,
    .split-section,
    .program-grid,
    .vision-section,
    .nonprofit-panel,
    .support-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 45px 28px;
        overflow: hidden;
    }

    .hero-side {
        margin-top: 0;
        transform: none;
    }

    .founder-card {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        transform: none;
    }

    .founder-card h2 {
        font-size: 1.65rem;
    }

    .hero-logo {
        width: 100%;
        max-width: 320px;
        transform: none;
    }

    .story-panel,
    .support-section,
    .nonprofit-panel {
        padding: 38px 28px;
    }

    .support-buttons {
        width: 100%;
    }

    .support-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav,
    .hero,
    .split-section,
    .program-section,
    .vision-section,
    .nonprofit-panel,
    .contact-section,
    .story-panel,
    .support-section,
    .footer {
        width: min(100% - 32px, 1180px);
        max-width: 100%;
    }

    .hero {
        padding: 42px 26px;
    }

    .hero-content {
        min-width: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(3rem, 12.5vw, 4.25rem);
        line-height: 1;
        max-width: 100%;
    }

    .subtitle {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-logo {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 430px) {
    .nav,
    .hero,
    .split-section,
    .program-section,
    .vision-section,
    .nonprofit-panel,
    .contact-section,
    .story-panel,
    .support-section,
    .footer {
        width: min(100% - 26px, 1180px);
    }

    .brand {
        font-size: clamp(1.25rem, 7vw, 1.55rem);
        letter-spacing: 0.07em;
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
    }

    .nav-links {
        gap: 12px 18px;
    }

    .hero {
        padding: 38px 22px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 10.4vw, 3.25rem);
        line-height: 1.02;
    }

    .eyebrow,
    .card-label {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .contact-section {
        overflow: hidden;
        gap: 28px;
    }

    .contact-section h2 {
        font-size: clamp(2.15rem, 10vw, 2.8rem);
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .contact-section p,
    .contact-card,
    .contact-card p,
    .contact-card a {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-card {
        width: 100%;
        min-width: 0;
        padding: 26px 22px;
    }
}