:root{

    --forest:#4E6524;
    --olive:#798E4D;
    --sage:#A4B07A;
    --leaf:#C9D5A4;

    --bark:#6B4D2E;

    --cream:#FBF8F2;
    --white:#F6F3EC;

    --text:#40382F;
    --text-light:#6B6358;

    --shadow:rgba(40,35,25,.12);
    --shadow-lg:rgba(40,35,25,.18);

}

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

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

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

/* ── Navigation ── */

#navbar{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(251,248,242,.92);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(78,101,36,.08);
}

.nav-inner{
    width:min(1200px,92%);
    margin:auto;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo img{
    width:50px;
    transition:transform .3s;
}

.logo:hover img{
    transform:scale(1.08);
}

.logo span{
    font-family:"Cormorant Garamond";
    font-size:1.8rem;
    font-weight:600;
    color:var(--forest);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    font-size:.95rem;
    font-weight:400;
    position:relative;
    transition:color .25s;
    padding:4px 0;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:2px;
    background:var(--forest);
    transition:width .25s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--forest);
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.nav-cta{
    background:var(--forest);
    color:white!important;
    padding:8px 20px!important;
    border-radius:50px;
    transition:background .3s,transform .3s!important;
}

.nav-cta:hover{
    background:var(--olive)!important;
    transform:translateY(-2px);
}

.nav-cta::after{
    display:none!important;
}

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:40px;
    height:40px;
    background:none;
    border:none;
    cursor:pointer;
    padding:8px;
    z-index:101;
    margin:0;
    border-radius:0;
}

.hamburger span{
    display:block;
    width:24px;
    height:2px;
    background:var(--forest);
    border-radius:2px;
    transition:.3s;
}

.hamburger.open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* ── Hero ── */

.hero{
    width:min(1200px,92%);
    margin:auto;
    min-height:80vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding:40px 0;
}

.hero-badge{
    display:inline-block;
    background:var(--leaf);
    color:var(--forest);
    font-size:.85rem;
    font-weight:500;
    padding:6px 18px;
    border-radius:50px;
    margin-bottom:20px;
    letter-spacing:.02em;
}

.hero h1{
    font-family:"Cormorant Garamond";
    font-size:4.5rem;
    font-weight:600;
    color:var(--forest);
    line-height:1.05;
    letter-spacing:-.01em;
}

.hero p{
    margin-top:24px;
    font-size:1.15rem;
    max-width:520px;
    line-height:1.8;
    color:var(--text-light);
}

.hero-image{
    display:flex;
    justify-content:center;
}

.tree-circle{
    width:520px;
    height:520px;
    background:linear-gradient(180deg,white,#eef2e7);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:
        0 40px 80px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.8);
}

.tree-circle img{
    width:360px;
    filter:drop-shadow(0 18px 22px rgba(0,0,0,.18));
}

/* ── Buttons ── */

.btn{
    display:inline-block;
    margin-top:32px;
    background:var(--forest);
    color:white;
    border:none;
    padding:16px 36px;
    border-radius:50px;
    cursor:pointer;
    font-family:Inter,sans-serif;
    font-size:1rem;
    font-weight:500;
    text-decoration:none;
    transition:background .3s,transform .3s,box-shadow .3s;
    box-shadow:0 4px 14px rgba(78,101,36,.25);
}

.btn:hover{
    background:var(--olive);
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(78,101,36,.35);
}

.btn-sm{
    margin-top:20px;
    padding:12px 28px;
    font-size:.9rem;
}

.btn-outline{
    background:transparent;
    color:var(--forest);
    border:2px solid var(--forest);
    box-shadow:none;
}

.btn-outline:hover{
    background:var(--forest);
    color:white;
}

/* ── Wave Divider ── */

.wave{
    height:140px;
    background:
        radial-gradient(circle at 50% -40px,transparent 120px,var(--white) 122px);
}

/* ── Cards ── */

.cards{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:70px 0 90px;
}

.cards article{
    background:white;
    border-radius:24px;
    padding:44px 36px;
    box-shadow:0 20px 45px var(--shadow);
    transition:transform .3s,box-shadow .3s;
}

.cards article:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 55px var(--shadow-lg);
}

.card-icon{
    font-size:1.6rem;
    color:var(--sage);
    margin-bottom:18px;
    line-height:1;
}

.cards h2{
    color:var(--forest);
    margin-bottom:14px;
    font-family:"Cormorant Garamond";
    font-size:2rem;
    font-weight:600;
}

.cards p{
    line-height:1.8;
    color:var(--text-light);
}

/* ── Section Shared ── */

.section-inner{
    width:min(1200px,92%);
    margin:auto;
    padding:100px 0;
}

.section-title{
    font-family:"Cormorant Garamond";
    font-size:3rem;
    font-weight:600;
    color:var(--forest);
    text-align:center;
}

.section-title-small{
    font-size:2.2rem;
    text-align:left;
}

.section-subtitle{
    max-width:700px;
    margin:20px auto 0;
    text-align:center;
    font-size:1.1rem;
    line-height:1.8;
    color:var(--text-light);
}

/* ── Who We Are ── */

.who-we-are{
    background:var(--white);
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:36px;
    margin-top:60px;
}

.team-card{
    background:white;
    border-radius:24px;
    padding:48px 40px;
    text-align:center;
    box-shadow:0 20px 45px var(--shadow);
    transition:transform .3s;
}

.team-card:hover{
    transform:translateY(-4px);
}

.team-avatar{
    width:110px;
    height:110px;
    border-radius:50%;
    margin:0 auto 24px;
    background:var(--leaf);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:"Cormorant Garamond";
    font-size:2.5rem;
    font-weight:600;
    color:var(--forest);
    position:relative;
    overflow:hidden;
}

.team-avatar.melissa::before{
    content:"M";
}

.team-avatar.vivian::before{
    content:"V";
}

.team-card h3{
    font-family:"Cormorant Garamond";
    font-size:1.8rem;
    color:var(--forest);
    margin-bottom:4px;
}

.team-role{
    display:block;
    font-size:.9rem;
    color:var(--olive);
    font-weight:500;
    margin-bottom:16px;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.team-card p{
    line-height:1.7;
    color:var(--text-light);
    max-width:360px;
    margin:0 auto;
}

/* ── Curriculum ── */

.curriculum{
    background:var(--cream);
}

.curriculum-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:56px;
}

.curriculum-item{
    background:white;
    border-radius:20px;
    padding:36px 32px;
    box-shadow:0 14px 35px var(--shadow);
    transition:transform .3s,box-shadow .3s;
}

.curriculum-item:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px var(--shadow-lg);
}

.curriculum-icon{
    font-size:1.4rem;
    color:var(--sage);
    margin-bottom:16px;
}

.curriculum-item h3{
    font-family:"Cormorant Garamond";
    font-size:1.5rem;
    color:var(--forest);
    margin-bottom:10px;
}

.curriculum-item p{
    line-height:1.7;
    color:var(--text-light);
    font-size:.95rem;
}

/* ── Info Dual (Hours + Fees) ── */

.info-dual{
    background:var(--white);
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.info-box{
    background:white;
    border-radius:24px;
    padding:48px 40px;
    box-shadow:0 14px 35px var(--shadow);
}

.hours-list{
    list-style:none;
    margin-top:28px;
}

.hours-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid rgba(64,56,47,.08);
    gap:16px;
}

.hours-list li:last-child{
    border-bottom:none;
}

.hours-label{
    font-weight:500;
    color:var(--text);
}

.hours-time{
    color:var(--olive);
    font-weight:500;
    text-align:right;
}

.info-note{
    margin-top:24px;
    font-size:.9rem;
    color:var(--text-light);
    line-height:1.6;
}

/* ── Location ── */

.location{
    background:var(--cream);
}

.location-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    margin-top:52px;
}

.map-placeholder{
    background:var(--leaf);
    border-radius:24px;
    min-height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 35px var(--shadow);
}

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

.map-pin{
    font-size:3rem;
    color:var(--forest);
    display:block;
    margin-bottom:12px;
}

.map-inner p{
    font-family:"Cormorant Garamond";
    font-size:1.4rem;
    color:var(--forest);
    font-weight:600;
}

.location-details{
    display:flex;
    flex-direction:column;
    gap:32px;
}

.address-block h3,
.contact-block h3{
    font-family:"Cormorant Garamond";
    font-size:1.6rem;
    color:var(--forest);
    margin-bottom:12px;
}

.address-block p,
.contact-block p{
    line-height:1.8;
    color:var(--text-light);
}

/* ── Gallery ── */

.gallery{
    background:var(--white);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:52px;
}

.gallery-item{
    aspect-ratio:4/3;
    background:linear-gradient(135deg,var(--leaf),var(--sage));
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:transform .3s,box-shadow .3s;
    cursor:default;
}

.gallery-item:hover{
    transform:scale(1.03);
    box-shadow:0 14px 35px var(--shadow);
}

.gallery-item span{
    font-family:"Cormorant Garamond";
    font-size:1.3rem;
    color:var(--forest);
    font-weight:500;
    opacity:.7;
}

/* ── Contact Form ── */

.contact{
    background:var(--cream);
}

.contact-form{
    max-width:720px;
    margin:48px auto 0;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:.9rem;
    font-weight:500;
    color:var(--text);
    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
    font-family:Inter,sans-serif;
    font-size:1rem;
    padding:14px 18px;
    border:2px solid rgba(64,56,47,.15);
    border-radius:14px;
    background:white;
    color:var(--text);
    transition:border-color .25s,box-shadow .25s;
    outline:none;
    width:100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--olive);
    box-shadow:0 0 0 4px rgba(121,142,77,.15);
}

.form-group textarea{
    resize:vertical;
    min-height:120px;
}

.form-group select{
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2340382F' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 16px center;
    padding-right:44px;
    cursor:pointer;
}

.contact-form .btn{
    display:block;
    margin:8px auto 0;
    font-size:1rem;
    padding:16px 48px;
}

.form-note{
    text-align:center;
    margin-top:16px;
    font-size:.85rem;
    color:var(--text-light);
}

/* ── Footer ── */

footer{
    background:var(--forest);
    color:rgba(255,255,255,.85);
    padding:80px 0 0;
}

.footer-inner{
    width:min(1200px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:48px;
    padding-bottom:48px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
}

.footer-logo img{
    width:40px;
    filter:brightness(10);
}

.footer-logo span{
    font-family:"Cormorant Garamond";
    font-size:1.5rem;
    font-weight:600;
    color:white;
}

.footer-brand p{
    font-size:.9rem;
    line-height:1.7;
    opacity:.8;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4{
    font-family:"Cormorant Garamond";
    font-size:1.3rem;
    color:white;
    margin-bottom:16px;
}

.footer-links a{
    display:block;
    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-size:.9rem;
    padding:5px 0;
    transition:color .25s;
}

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

.footer-contact p,
.footer-hours p{
    font-size:.9rem;
    line-height:1.8;
    opacity:.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:24px 0;
    text-align:center;
}

.footer-bottom p{
    font-size:.85rem;
    opacity:.6;
}

/* ── Mobile Navigation Overlay ── */

@media(max-width:900px){

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:var(--cream);
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        padding:80px 40px 40px;
        gap:24px;
        transition:right .35s ease;
        box-shadow:-10px 0 40px rgba(0,0,0,.1);
        z-index:100;
    }

    .nav-links.open{
        right:0;
    }

    .nav-links a{
        font-size:1.25rem;
        font-weight:500;
    }

    .nav-cta{
        display:inline-block;
        margin-top:8px;
    }

    /* backdrop */
    .nav-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.3);
        opacity:0;
        pointer-events:none;
        transition:opacity .35s;
        z-index:99;
    }

    .nav-overlay.visible{
        opacity:1;
        pointer-events:auto;
    }

}

/* ── Responsive ── */

@media(max-width:1024px){

    .hero h1{
        font-size:3.6rem;
    }

    .tree-circle{
        width:420px;
        height:420px;
    }

    .tree-circle img{
        width:280px;
    }

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

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

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

}

@media(max-width:900px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        min-height:auto;
        padding:60px 0 80px;
        gap:40px;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero h1{
        font-size:3rem;
    }

    .tree-circle{
        width:300px;
        height:300px;
    }

    .tree-circle img{
        width:200px;
    }

    .cards{
        grid-template-columns:1fr;
        max-width:480px;
    }

    .team-grid{
        grid-template-columns:1fr;
        max-width:480px;
        margin-left:auto;
        margin-right:auto;
    }

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

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

    .location-content{
        grid-template-columns:1fr;
    }

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

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

    .section-title{
        font-size:2.5rem;
    }

    .section-inner{
        padding:70px 0;
    }

}

@media(max-width:600px){

    .logo span{
        font-size:1.4rem;
    }

    .logo img{
        width:40px;
    }

    .hero h1{
        font-size:2.5rem;
    }

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

    .tree-circle{
        width:240px;
        height:240px;
    }

    .tree-circle img{
        width:160px;
    }

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

    .gallery-grid{
        grid-template-columns:1fr 1fr;
        gap:16px;
    }

    .team-card{
        padding:32px 24px;
    }

    .section-title{
        font-size:2.2rem;
    }

    .section-title-small{
        font-size:1.8rem;
    }

    .section-subtitle{
        font-size:1rem;
    }

    .info-box{
        padding:32px 24px;
    }

    .footer-inner{
        grid-template-columns:1fr;
        gap:36px;
    }

    .btn{
        padding:14px 30px;
        font-size:.95rem;
    }

}

@media(max-width:400px){

    .hero h1{
        font-size:2rem;
    }

    .tree-circle{
        width:200px;
        height:200px;
    }

    .tree-circle img{
        width:130px;
    }

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

    .hero-badge{
        font-size:.75rem;
        padding:5px 14px;
    }

}
