﻿
:root {
    --maroon: #5a0616;
    --maroon-light: #7a1228;
    --maroon-deep: #3e030f;
    --cream: #f9f1e6;
    --cream-soft: #fffaf2;
    --gold: #e3a73a;
    --gold-light: #f3cf8a;
    --sage: #7fa17a;
    --sage-light: #c9dcc4;
    --rose: #e08a96;
    --sky: #7fb5c9;
    --ink: #2b1410;
    --line: rgba(90,6,22,0.14);
    --shadow: 0 18px 40px -18px rgba(90,6,22,0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.15;
}

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

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

section {
    position: relative;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== decorative motifs ===== */
.doodle {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
}

.blob-watermark {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    z-index: 0;
}



/* ===== HERO ===== */
.hero {
    padding: 64px 0 90px;
    position: relative;
    overflow: hidden;
}

    .hero .blob-watermark.b1 {
        width: 340px;
        height: 340px;
        background: var(--sky);
        opacity: 0.18;
        top: -120px;
        left: -140px;
    }

    .hero .blob-watermark.b2 {
        width: 260px;
        height: 260px;
        background: var(--sage);
        opacity: 0.18;
        bottom: -80px;
        left: 6%;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(90,6,22,0.07);
    border: 1px solid rgba(90,6,22,0.18);
    color: var(--maroon);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}
    .eyebrow svg {
        width: 14px;
        height: 14px;
    }
.hero h1 {
    font-size: 50px;
    margin-bottom: 14px;
}

    .hero h1 .accent {
        color: var(--rose);
        position: relative;
        display: inline-block;
    }

        .hero h1 .accent svg {
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 14px;
        }
.hero p.lead {
    font-size: 16.92px;
    color: #5a3b35;
    max-width: 480px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 30px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-primary {
    background: var(--maroon);
    color: var(--cream-soft);
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 14px 26px -10px rgba(90,6,22,0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 30px -10px rgba(90,6,22,0.6);
    }

    .btn-primary svg {
        width: 18px;
        height: 18px;
    }

.btn-ghost {
    color: var(--maroon);
    font-weight: 700;
    font-size: 0.98rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

    .btn-ghost:hover {
        color: var(--maroon-light);
    }

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

    .hero-stats div {
        display: flex;
        flex-direction: column;
    }

    .hero-stats strong {
        font-family: 'Baloo 2';
        font-size: 1.7rem;
        color: var(--maroon);
    }
    .hero-stats span {
        font-size: 16px;
        font-weight: 600;
        color: #7a5a4f;
    }

.hero-visual {
    position: relative;
}

    .hero-visual .frame {
        border-radius: 32px;
        overflow: hidden;
        box-shadow: var(--shadow);
        position: relative;
        border: 6px solid var(--cream-soft);
        outline: 3px solid var(--maroon);
    }
        .hero-visual .frame img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
.btn-ghost {
    color: var(--maroon);
    font-weight: 700;
    font-size: 15px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
    transition: color 0.2s ease;
}
.float-card {
    position: absolute;
    background: var(--cream-soft);
    border-radius: 18px;
    box-shadow: 0 14px 30px -10px rgba(90,6,22,0.3);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

    .float-card.fc1 {
        top: -26px;
        right: -10px;
    }

    .float-card.fc2 {
        bottom: -22px;
        left: -30px;
    }

    .float-card .ic {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .float-card .ic svg {
            width: 22px;
            height: 22px;
            stroke: white;
        }
    .float-card strong {
        font-size: 16px;
        color: var(--maroon);
        display: block;
        font-family: 'Baloo 2';
    }
    .float-card span {
        font-size: 16px;
        color: #7a5a4f;
        font-weight: 600;
    }
/* ===== Path / journey divider (signature element) ===== */
.journey-rail {
    position: relative;
    height: 90px;
    margin: 0 auto;
    max-width: 1180px;
}

    .journey-rail svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* ===== PILLARS (4 cards from image content) ===== */
.pillars {
    padding: 10px 0 90px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 46px;
}

.pillar-card {
    background: var(--cream-soft);
    border-radius: 22px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

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

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

    .pillar-icon svg {
        width: 30px;
        height: 30px;
    }
.pillar-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.pillar-card p {
    font-size: 14px;
    color: #6b4a40;
    font-weight: 300;
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 10px;
}

    .section-head .eyebrow {
        margin-bottom: 16px;
    }

    .section-head h2 {
        font-size: 36px;
        margin-bottom: 9px;
    }
    .section-head p {
        color: #6b4a40;
        font-size: 1.02rem;
        font-weight: 500;
    }

/* ===== ABOUT / INTRO with image ===== */
    .section-head p {
        color: #6b4a40;
        font-size: 16px;
        font-weight: 300;
    }
    .about .blob-watermark {
        width: 420px;
        height: 420px;
        background: var(--gold);
        opacity: 0.12;
        top: -160px;
        right: -160px;
    }

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-img-wrap {
    position: relative;
}
    .about-img-wrap img {
        border-radius: 26px;
        box-shadow: var(--shadow);
        width: 100%;
        height: 340px;
        object-fit: cover;
        border: 6px solid var(--cream);
    }
.about-tag {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--maroon);
    color: var(--cream-soft);
    padding: 18px 22px;
    border-radius: 18px;
    font-family: 'Baloo 2';
    font-size: 15px;
    box-shadow: 0 14px 26px -10px rgba(90,6,22,0.5);
    max-width: 200px;
    line-height: 1.3;
}
.about-text h2 {
    font-size: 33px;
    margin-bottom: 18px;
}
.about-text p {
    color: #5a3b35;
    margin-bottom: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
}

    .about-text p strong {
        color: var(--maroon);
    }

.quote-strip {
    margin-top: 28px;
    border-left: 4px solid var(--gold);
    padding-left: 18px;
    font-family: 'Baloo 2';
    font-size: 1.12rem;
    color: var(--maroon);
    font-style: normal;
}

/* ===== APPROACH (6 items) ===== */
.approach {
    padding: 90px 0;
}

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

.approach-card {
    background: var(--cream-soft);
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid var(--line);
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

    .approach-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
    }
.approach-num {
    font-family: 'Baloo 2';
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.approach-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
    .approach-card h3 svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        stroke: var(--maroon);
    }

.approach-card p {
    font-size: 0.9rem;
    color: #6b4a40;
    font-weight: 500;
}

/* ===== GALLERY / CLASSROOM (banner image) ===== */
.approach-card p {
    font-size: 14px;
    color: #6b4a40;
    font-weight: 300;
    line-height: 27px;
}
.gallery-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

    .gallery-frame img {
        width: 100%;
        height: auto;
        display: block;
    }

    .gallery-frame::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(90,6,22,0) 60%, rgba(62,3,15,0.55) 100%);
    }

.gallery-caption {
    position: absolute;
    bottom: 26px;
    left: 32px;
    z-index: 3;
    color: var(--cream-soft);
}

    .gallery-caption h3 {
        color: var(--cream-soft);
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .gallery-caption p {
        font-size: 0.9rem;
        font-weight: 600;
        opacity: 0.92;
    }

/* ===== SAFE ENVIRONMENT band ===== */
.safe-band {
    background: var(--maroon);
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
}
    .safe-band .blob-watermark {
        width: 380px;
        height: 380px;
        background: var(--rose);
        opacity: 0.18;
        bottom: -180px;
        left: -100px;
    }

        .safe-band .blob-watermark.b2 {
            width: 300px;
            height: 300px;
            background: var(--sky);
            opacity: 0.15;
            top: -140px;
            right: -60px;
        }

.safe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .safe-grid h2 {
        color: var(--cream-soft);
        font-size: 2.1rem;
        margin-bottom: 18px;
    }
    .safe-grid h2 {
        color: var(--cream-soft);
        font-size: 33px;
        margin-bottom: 18px;
    }
    .safe-grid p {
        color: #f0d9d0;
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 20px;
        line-height: 27px;
    }
.safe-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(249,241,230,0.08);
    border: 1px solid rgba(249,241,230,0.18);
    padding: 18px 20px;
    border-radius: 16px;
}

    .safe-item .ic {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .safe-item .ic svg {
            width: 18px;
            height: 18px;
            stroke: var(--maroon-deep);
        }

    .safe-item strong {
        color: var(--cream-soft);
        font-family: 'Baloo 2';
        font-size: 1.02rem;
        display: block;
        margin-bottom: 3px;
    }
    .safe-item strong {
        color: var(--cream-soft);
        font-family: 'Baloo 2';
        font-size: 16px;
        display: block;
        margin-bottom: 3px;
    }
/* ===== PROGRAMS OFFERED ===== */
.programs {
    padding: 30px 0 80px;
    position: relative;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    margin-top: 50px;
}

.program-card {
    border-radius: 22px;
    padding: 36px 24px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--cream-soft);
    transition: transform 0.25s ease;
}

    .program-card:hover {
        transform: translateY(-8px);
    }
    .program-card .bubble {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Baloo 2';
        font-weight: 800;
        font-size: 24px;
        color: white;
    }
    .program-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    .program-card p {
        font-size: 13px;
        color: #6b4a40;
        font-weight: 300;
    }
    .program-card .age {
        display: inline-block;
        margin-top: 12px;
        font-size: 11px;
        font-weight: 700;
        color: var(--maroon);
        background: var(--gold-light);
        padding: 4px 12px;
        border-radius: 999px;
        letter-spacing: 0.03em;
    }
/* ===== FOUNDATION / CLOSING with image ===== */
.foundation {
    padding: 40px 0 80px;
    background: var(--cream-soft);
    position: relative;
    overflow: hidden;
}

    .foundation .blob-watermark {
        width: 360px;
        height: 360px;
        background: var(--sage);
        opacity: 0.14;
        top: -140px;
        left: -140px;
    }

.foundation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.foundation-text h2 {
    font-size: 33px;
    margin-bottom: 18px;
}
.foundation-text p {
    color: #5a3b35;
    font-weight: 300;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 27px;
}
.foundation-img {
    position: relative;
}
    .foundation-img img {
        border-radius: 26px;
        box-shadow: var(--shadow);
        width: 100%;
        height: 350px;
        object-fit: cover;
        border: 6px solid var(--cream);
    }
.foundation-badge {
    position: absolute;
    top: -22px;
    left: -22px;
    background: var(--gold);
    color: var(--maroon-deep);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2';
    font-weight: 800;
    box-shadow: 0 14px 26px -10px rgba(90,6,22,0.4);
    text-align: center;
    line-height: 1.1;
}
    .foundation-badge span {
        font-size: 9.92px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .foundation-badge strong {
        font-size: 24px;
    }
/* ===== FINAL CTA ===== */
.cta-final {
    padding: 30px 0;
    text-align: center;
    position: relative;
}
.cta-card {
    background: var(--maroon);
    border-radius: 32px;
    padding: 64px 50px;
    position: relative;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
}

    .cta-card .blob-watermark {
        width: 300px;
        height: 300px;
        background: var(--gold);
        opacity: 0.2;
        top: -120px;
        right: -60px;
    }

        .cta-card .blob-watermark.b2 {
            width: 260px;
            height: 260px;
            background: var(--sky);
            opacity: 0.18;
            bottom: -120px;
            left: -40px;
        }
    .cta-card h2 {
        color: var(--cream-soft);
        font-size: 35px;
        margin-bottom: 14px;
        position: relative;
        z-index: 2;
    }
.safe-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.safe-item span {
    color: #e8c9bf;
    font-size: 13px;
    font-weight: 500;
}
    .cta-card p {
        color: #f0d9d0;
        font-size: 1.05rem;
        font-weight: 500;
        margin-bottom: 30px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cream {
    background: var(--cream-soft);
    color: var(--maroon);
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    box-shadow: 0 14px 26px -10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

    .btn-cream:hover {
        transform: translateY(-3px);
    }

.btn-outline-cream {
    border: 2px solid rgba(249,241,230,0.5);
    color: var(--cream-soft);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .btn-outline-cream:hover {
        border-color: var(--cream-soft);
        background: rgba(249,241,230,0.1);
    }



/* ===== reveal-on-scroll ===== */
.reveal {
     
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .safe-grid, .foundation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .pillars-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream-soft);
        flex-direction: column;
        padding: 20px 28px 26px;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        display: none;
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .nav-links .nav-cta-mobile {
        display: inline-flex;
        background: var(--maroon);
        color: var(--cream-soft);
        padding: 10px 22px;
        border-radius: 999px;
        font-weight: 700;
        width: fit-content;
    }

    .hero {
        padding: 40px 0 60px;
    }
        .hero h1 {
            font-size: 30px;
        }
    .hero-visual .frame img {
        height: 200px;
    }
    .float-card {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .pillars-grid, .approach-grid, .programs-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 1.7rem;
    }

    .about-text h2, .foundation-text h2, .safe-grid h2 {
        font-size: 1.6rem;
    }
    .about-tag {
        margin-top: 18px;
        max-width: 240px;
        padding: 10px 10px;
        border-radius: 10px;
        bottom: -24px;
        right: 6px;
    }
    .foundation-badge {
        width: 76px;
        height: 76px;
    }

    .gallery-caption h3 {
        font-size: 1.1rem;
    }

    .cta-card {
        padding: 46px 26px;
    }
    .cta-card {
        padding: 16px 16px;
        transform: unset;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats strong {
        font-size: 20px;
    }
    .journey-rail {
        height: 50px;
    }
    .wrap {
        padding: 0 15px;
    }
    .about-img-wrap img {
        height: 230px;
    }
    .pillars {
        padding: 10px 0 50px;
    }
    .approach {
        padding: 40px 0;
    }
    .approach-grid {
        gap: 12px;
        margin-top: 20px;
    }
    .safe-grid{
        gap: 10px;
    }
    .foundation-img img {
        height: 230px;
    }
    .foundation {
        padding: 40px 0 20px;
    }
    .cta-card h2 {
        margin-bottom: 0;
        font-size: 18px;
    }
    .cta-final {
        padding: 15px 0;
    }
    .foundation-badge {
        left: 8px;
    }
}

