@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#14382F;
    --green-dark:#0C2722;
    --gold:#C6A15B;
    --beige:#F6F1E8;
    --cream:#FFFDF8; 
    --soft:#EFE4D3;
    --text:#1F2F2B;
    --muted:#74695C;
    --border:rgba(198,161,91,.28);
}

*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:"Inter",sans-serif;
    background:var(--beige);
    color:var(--text);
    overflow-x:hidden;
}

.explore-hero{
    padding:95px 0 85px;
    background:linear-gradient(135deg,var(--cream),var(--beige));
}

.welcome-grid{
    min-height:620px;
    display:grid;
    grid-template-columns:58% 42%;
    align-items:center;
    gap:60px;
}

.section-label,
.gold-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:800;
}

.welcome-left h1{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(78px,8vw,130px);
    line-height:.9;
    color:var(--green);
    margin:24px 0 34px;
}

.welcome-left p{
    color:var(--text);
    font-size:20px;
    line-height:1.9;
    max-width:720px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:38px;
}

.primary-btn,
.secondary-btn,
.btn-luxury,
.btn-outline-luxury{
    min-height:58px;
    padding:0 28px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    font-weight:800;
    transition:.3s;
}

.primary-btn,
.btn-luxury{
    background:var(--green);
    color:var(--cream);
    border:1px solid var(--green);
}

.secondary-btn,
.btn-outline-luxury{
    background:transparent;
    color:var(--green);
    border:1px solid var(--green);
}

.primary-btn:hover,
.secondary-btn:hover,
.btn-luxury:hover,
.btn-outline-luxury:hover{
    background:var(--gold);
    color:var(--green-dark);
    border-color:var(--gold);
    transform:translateY(-4px);
}

.doctor-card{
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:34px;
    padding:30px;
    box-shadow:0 30px 90px rgba(20,56,47,.12);
    text-align:center;
}

.doctor-image img{
    width:100%;
    max-width:360px;
    height:420px;
    object-fit:cover;
    border-radius:52% 48% 45% 55%;
    border:2px solid var(--gold);
}

.doctor-info{
    margin-top:24px;
}

.doctor-info span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    font-weight:800;
}

.doctor-info h3{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:38px;
    margin:10px 0;
}

.doctor-info p{
    color:var(--muted);
    line-height:1.7;
}

.doctor-info a{
    color:var(--green);
    font-weight:800;
    text-decoration:none;
}

.section-padding{
    padding:90px 0;
    background:var(--beige);
}

.couple-section,
.resources-preview{
    background:#F1E7D7;
}

.section-heading{
    max-width:850px;
    margin:0 auto 55px;
}

.section-heading h2{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:clamp(44px,5vw,72px);
    margin-top:14px;
}

.section-heading p{
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.therapy-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:12px 5px 25px;
    scrollbar-width:none;
}

.therapy-slider::-webkit-scrollbar{
    display:none;
}

.therapy-card{
    min-width:260px;
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    box-shadow:0 14px 45px rgba(20,56,47,.08);
}

.therapy-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--green);
    color:var(--cream);
    display:grid;
    place-items:center;
    font-size:25px;
    margin-bottom:22px;
}

.therapy-card h4{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:30px;
    line-height:1.1;
}

.stats-section{
    padding:80px 0;
    background:var(--green);
}

.stats-section .section-heading h2{
    color:var(--cream);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    text-align:center;
    padding:36px 24px;
    border-radius:24px;
    border:1px solid rgba(198,161,91,.28);
    background:rgba(255,255,255,.06);
}

.stat-card h2{
    font-family:"Cormorant Garamond",serif;
    font-size:56px;
    color:var(--gold);
}

.stat-card p{
    color:#E8DCC8;
    font-weight:700;
}

.explore-card,
.resource-card,
.blog-card,
.testimonial-card{
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:28px;
    padding:34px;
    height:100%;
    box-shadow:0 18px 50px rgba(20,56,47,.08);
    transition:.3s;
    text-decoration:none;
    color:var(--text);
    display:block;
}

.explore-card:hover,
.resource-card:hover,
.blog-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
}

.card-icon,
.resource-card i{
    width:64px;
    height:64px;
    border-radius:50%;
    background:var(--green);
    color:var(--cream);
    display:grid;
    place-items:center;
    font-size:28px;
    margin-bottom:22px;
}

.explore-card h3,
.resource-card h3,
.blog-card h3{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:34px;
}

.explore-card p,
.resource-card p,
.blog-card p,
.testimonial-card p{
    color:var(--muted);
    line-height:1.7;
}

.explore-card a,
.explore-card span,
.blog-card a{
    color:var(--green);
    text-decoration:none;
    font-weight:800;
}

.blog-card{
    padding:0;
    overflow:hidden;
}

.blog-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.blog-content{
    padding:28px;
}

.explore-final-cta{
    margin:70px 6% 90px;
    padding:60px 40px;
    border-radius:34px;
    background:var(--green);
    text-align:center;
    color:var(--cream);
}

.explore-final-cta h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(44px,5vw,72px);
    margin:16px 0;
}

.explore-final-cta p{
    max-width:740px;
    margin:0 auto 34px;
    color:#E8DCC8;
    line-height:1.8;
}

.light-btn{
    background:var(--cream);
    color:var(--green);
}

.stars{
    color:var(--gold);
    margin-bottom:18px;
}

.testimonial-card h4{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:28px;
}

.empty-text{
    color:var(--muted);
}

@media(max-width:991px){
    .welcome-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .explore-hero{
        text-align:center;
        padding:80px 24px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .doctor-image img{
        height:360px;
    }
}

@media(max-width:576px){
    .welcome-left h1{
        font-size:58px;
    }

    .welcome-left p{
        font-size:17px;
    }

    .section-padding{
        padding:70px 22px;
    }

    .therapy-card{
        min-width:245px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .explore-final-cta{
        margin:50px 22px;
        padding:42px 24px;
    }
}