:root {
    --cream: #FFFAF4;
    --peach: #FFECD2;
    --coral: #E07A5F;
    --coral-light: #F2A07B;
    --sage: #6B9F8B;
    --sage-light: #A8D5BA;
    --sage-bg: #EFF7F2;
    --gold: #F2CC8F;
    --gold-light: #F7DFB4;
    --warm-dark: #3D405B;
    --text: #5A5A6E;
    --text-light: #8888A0;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(61, 64, 91, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 64, 91, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--warm-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; }
a { color: var(--coral); }

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 250, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 122, 95, 0.1);
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--coral);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo svg { width: 32px; height: 32px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--coral);
    background: rgba(224, 122, 95, 0.08);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ---- HERO (home only) ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(170deg, var(--cream) 0%, var(--peach) 50%, var(--gold-light) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 120px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-icon {
    width: 80px; height: 80px;
    margin-bottom: 2rem;
    animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--warm-dark);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--coral); }

.hero p {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--text);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--coral);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.hero-badge .dot {
    width: 10px; height: 10px;
    background: var(--sage);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(170deg, var(--cream) 0%, var(--peach) 60%, var(--gold-light) 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--warm-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem; }

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--warm-dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 650px;
    line-height: 1.8;
}

/* ---- STORY ---- */
.story { background: var(--white); }
.story .section-text { margin-bottom: 1.5rem; }

.story-highlight {
    background: linear-gradient(135deg, var(--peach), var(--gold-light));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.story-highlight::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 8rem;
    font-family: 'Nunito', sans-serif;
    color: rgba(224, 122, 95, 0.15);
    line-height: 1;
}

.story-highlight p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--warm-dark);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ---- CARDS ---- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg { width: 28px; height: 28px; }
.card-icon.coral { background: var(--peach); }
.card-icon.sage { background: var(--sage-bg); }
.card-icon.gold { background: #FFF3DC; }

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--warm-dark);
}

.card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- FEATURES (centered headers) ---- */
.features { background: var(--cream); }
.features .section-label,
.features .section-title { text-align: center; }
.features .section-title { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- CTA ---- */
.cta {
    background: linear-gradient(170deg, var(--sage-bg) 0%, var(--white) 100%);
    text-align: center;
}

.cta .section-inner { max-width: 600px; }
.cta .section-title { margin-bottom: 1rem; }
.cta .section-text { max-width: 500px; margin: 0 auto 2rem; text-align: center; }

.cta-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--sage-bg);
}

.cta-box p { color: var(--text); font-size: 1rem; line-height: 1.7; }
.cta-box .highlight { color: var(--coral); font-weight: 600; }

/* ---- LINK BUTTON ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-coral {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    color: var(--coral);
    border: 2px solid var(--coral);
}

/* ---- PHASES (approach page) ---- */
.phase {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.phase:last-child { margin-bottom: 0; }

.phase-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.phase-number.coral-bg { background: linear-gradient(135deg, var(--coral), var(--coral-light)); }
.phase-number.sage-bg { background: linear-gradient(135deg, var(--sage), var(--sage-light)); }
.phase-number.gold-bg { background: linear-gradient(135deg, var(--gold), #E8B96D); }

.phase-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--warm-dark);
    margin-bottom: 0.25rem;
}

.phase-content .phase-subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.phase-content p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.phase-content p:last-child { margin-bottom: 0; }

.phase-line {
    position: absolute;
    left: 39px;
    top: 72px;
    bottom: -24px;
    width: 3px;
    background: linear-gradient(to bottom, var(--peach), var(--gold-light));
    border-radius: 3px;
}

.phase:last-child .phase-line { display: none; }

/* ---- STEPS CARD CALLOUT ---- */
.callout {
    background: linear-gradient(135deg, var(--peach), var(--gold-light));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 1rem;
}

.callout h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--warm-dark);
    margin-bottom: 0.75rem;
}

.callout p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

/* ---- PRICING (membership page) ---- */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--peach);
    text-align: center;
    max-width: 480px;
    margin: 2.5rem auto 0;
}

.pricing-card .price {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1.1;
}

.pricing-card .price-period {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.pricing-card .price-alt {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 2rem;
}

.pricing-card .divider {
    height: 2px;
    background: var(--peach);
    border: none;
    margin: 1.5rem 0;
    border-radius: 2px;
}

.pricing-includes {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-includes li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-includes li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.85rem;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--sage-bg);
    border: 2px solid var(--sage);
}

/* ---- SPONSORSHIP/DONATE ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.split-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.split-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-dark);
    margin-bottom: 1rem;
}

.split-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- WHO WE SERVE ---- */
.serve-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.serve-list li {
    padding: 1.25rem 1.25rem 1.25rem 2rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.serve-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
    background: linear-gradient(to bottom, var(--coral), var(--gold));
}

/* ---- FOUNDER ---- */
.founder {
    background: var(--cream);
}

.founder-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--warm-dark);
    margin-bottom: 0.25rem;
}

.founder-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 1.25rem;
}

.founder p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

/* ---- CONTACT FORM ---- */
.contact { background: var(--white); }
.contact .section-inner { max-width: 600px; }
.contact-form { margin-top: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--warm-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid #E8E8F0;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--warm-dark);
    background: var(--cream);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224, 122, 95, 0.3); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

.form-status {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    display: block;
    background: var(--sage-bg);
    color: var(--sage);
    border: 2px solid var(--sage-light);
}

.form-status.error {
    display: block;
    background: #FFF0ED;
    color: #C0392B;
    border: 2px solid #F5C6CB;
}

/* ---- FOOTER ---- */
footer {
    background: var(--warm-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand .footer-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-brand p { font-size: 0.85rem; }

.footer-links { display: flex; gap: 1.5rem; list-style: none; }

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--cream);
        padding: 1rem;
        border-bottom: 1px solid rgba(224, 122, 95, 0.1);
        box-shadow: var(--shadow);
    }

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

    .nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    section { padding: 4rem 1.5rem; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    .story-highlight { padding: 2rem 1.5rem; }
    .cards { grid-template-columns: 1fr; }
    .card { padding: 2rem 1.5rem; }

    .phase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .phase-number { width: 48px; height: 48px; font-size: 1.2rem; }
    .phase-line { display: none; }

    .split { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

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

/* ---- ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
    .hero-icon { animation: none; }
    .hero-badge .dot { animation: none; }
    html { scroll-behavior: auto; }
    .card { transition: none; }
    .btn { transition: none; }
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    border-radius: 4px;
}
