/* ==========================================================
   Serene Wellness
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#f7f5f1;
    --white:#ffffff;

    --text:#3b332d;
    --muted:#81766d;

    --sage:#d7ddd2;
    --beige:#e8ddd1;
    --accent:#9f8b76;

    --border:#ebe6df;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:Inter,sans-serif;

    line-height:1.7;

}

/* ==========================
HEADER
========================== */

header{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 70px;

    background:rgba(247,245,241,.92);

    backdrop-filter:blur(14px);

    position:sticky;

    top:0;

    z-index:100;

    border-bottom:1px solid var(--border);

}

.logo{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    letter-spacing:.08em;

}

nav{

    display:flex;

    gap:36px;

}

nav a{

    text-decoration:none;

    color:var(--muted);

    transition:.3s;

}

nav a:hover{

    color:var(--text);

}

.book{

    text-decoration:none;

    background:var(--text);

    color:white;

    padding:15px 30px;

    border-radius:999px;

    transition:.3s;

}

.book:hover{

    background:var(--accent);

}

/* ==========================
HERO
========================== */

.hero{

    max-width:1380px;

    margin:auto;

    padding:90px 70px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.hero-image{

    overflow:hidden;

    border-radius:40px;

}

.hero-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    display:block;

}

.hero-content span{

    display:inline-block;

    background:var(--white);

    border:1px solid var(--border);

    padding:10px 18px;

    border-radius:999px;

    text-transform:uppercase;

    letter-spacing:.12em;

    font-size:.8rem;

    color:var(--muted);

}

.hero-content h1{

    font-family:"Cormorant Garamond",serif;

    font-size:4.8rem;

    line-height:.92;

    margin:28px 0;

}

.hero-content p{

    max-width:520px;

    color:var(--muted);

    font-size:1.08rem;

}

.buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.buttons a{

    text-decoration:none;

    padding:18px 34px;

    border-radius:999px;

    background:var(--text);

    color:white;

}

.buttons .outline{

    background:white;

    color:var(--text);

    border:1px solid var(--border);

}

/* ==========================
FEATURES
========================== */

.features{

    max-width:1380px;

    margin:auto;

    padding:0 70px 100px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.features div{

    background:white;

    border-radius:28px;

    padding:45px;

    border:1px solid var(--border);

}

.features h3{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    margin-bottom:16px;

}

.features p{

    color:var(--muted);

}

/* ==========================
TREATMENTS
========================== */

.treatments{

    max-width:1380px;

    margin:auto;

    padding:0 70px 100px;

}

.treatments h2{

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    font-size:3.5rem;

    margin-bottom:55px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.cards article{

    background:white;

    border-radius:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.cards article:hover{

    transform:translateY(-10px);

}

.cards img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.cards div{

    padding:30px;

}

.cards h3{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    margin-bottom:12px;

}

.cards p{

    color:var(--muted);

}

/* ==========================
QUOTE
========================== */

.quote{

    margin:0 70px 100px;

    padding:90px 70px;

    background:linear-gradient(135deg,var(--sage),var(--beige));

    border-radius:40px;

    text-align:center;

}

.quote h2{

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

    max-width:800px;

    margin:auto;

}

.quote p{

    margin:28px auto;

    max-width:600px;

    color:#5e554d;

}

.quote strong{

    color:#5e554d;

}

/* ==========================
FOOTER
========================== */

footer{

    text-align:center;

    padding:45px;

    background:white;

    color:var(--muted);

    border-top:1px solid var(--border);

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1000px){

header{

    padding:0 30px;

}

nav{

    display:none;

}

.book{

    display:none;

}

.hero{

    grid-template-columns:1fr;

    padding:70px 30px;

}

.hero-image img{

    height:420px;

}

.hero-content h1{

    font-size:3.4rem;

}

.features{

    grid-template-columns:1fr;

    padding:0 30px 70px;

}

.treatments{

    padding:0 30px 70px;

}

.cards{

    grid-template-columns:1fr;

}

.quote{

    margin:0 30px 70px;

    padding:60px 30px;

}

.quote h2{

    font-size:2.4rem;

}

}