@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);
}

body{
    font-family:"Inter",sans-serif;
    background:var(--beige);
    color:var(--text);
}

.services-hero{
    padding:110px 6% 80px;
    background:
        radial-gradient(circle at 12% 20%, rgba(198,161,91,.16), transparent 28%),
        linear-gradient(135deg,var(--cream),var(--beige));
    text-align:center;
}

.section-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:800;
}

.services-hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(60px,7vw,105px);
    line-height:.95;
    color:var(--green);
    margin:20px 0;
}

.services-hero p{
    max-width:850px;
    margin:auto;
    color:var(--muted);
    font-size:20px;
    line-height:1.8;
}

.services-section,
.care-section{
    padding:90px 6%;
}

.section-heading{
    max-width:850px;
    margin:0 auto 55px;
    text-align:center;
}

.section-heading h2{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:clamp(44px,5vw,70px);
    line-height:1;
    margin-top:14px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
    max-width:1180px;
    margin:auto;
}

.service-card{
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:30px;
    padding:42px;
    box-shadow:0 22px 70px rgba(20,56,47,.09);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:var(--green);
    color:var(--cream);
    display:grid;
    place-items:center;
    font-size:32px;
    margin-bottom:26px;
}

.service-card h3{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:44px;
    margin-bottom:18px;
}

.service-card p{
    color:var(--muted);
    line-height:1.85;
    font-size:16px;
}

.service-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:28px 0;
}

.service-meta span{
    border:1px solid var(--border);
    background:#fff;
    border-radius:40px;
    padding:10px 16px;
    color:var(--green);
    font-weight:700;
    font-size:14px;
}

.service-meta i{
    color:var(--gold);
    margin-right:6px;
}

.service-btn,
.services-cta a{
    min-height:58px;
    padding:0 26px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:var(--green);
    color:var(--cream);
    text-decoration:none;
    font-weight:800;
    transition:.3s;
}

.service-btn:hover,
.services-cta a:hover{
    background:var(--gold);
    color:var(--green-dark);
    transform:translateY(-4px);
}

.care-section{
    background:#F1E7D7;
}

.couple-care{
    background:var(--beige);
}

.care-grid{
    max-width:1120px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.care-chip{
    background:var(--cream);
    border:1px solid var(--border);
    border-radius:18px;
    padding:20px 22px;
    color:var(--green);
    font-weight:700;
    display:flex;
    align-items:flex-start;
    gap:12px;
    box-shadow:0 12px 35px rgba(20,56,47,.06);
}

.care-chip i{
    color:var(--gold);
    font-size:20px;
    margin-top:2px;
}

.services-cta{
    margin:70px 6% 90px;
    padding:60px 40px;
    border-radius:34px;
    background:
        radial-gradient(circle at right, rgba(198,161,91,.22), transparent 34%),
        var(--green);
    color:var(--cream);
    text-align:center;
}

.services-cta h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(44px,5vw,72px);
    margin:16px 0;
}

.services-cta p{
    max-width:760px;
    margin:0 auto 34px;
    color:#E8DCC8;
    line-height:1.8;
    font-size:18px;
}
.empty-text{
    text-align:center;
    color:var(--muted);
    font-size:18px;
    grid-column:1/-1;
}

@media(max-width:991px){
    .services-grid,
    .care-grid{
        grid-template-columns:1fr;
    }

    .services-hero{
        padding-top:80px;
    }
}

@media(max-width:576px){
    .services-hero{
        padding:70px 22px;
    }

    .services-section,
    .care-section{
        padding:70px 22px;
    }

    .service-card{
        padding:30px;
    }

    .service-card h3{
        font-size:36px;
    }

    .services-cta{
        margin:50px 22px;
        padding:42px 24px;
    }
}