/* ==========================
   CENTERED & CONNECTED THERAPY
   VERSION 3
========================== */

:root{

--sage:#dfe8e2;
--cream:#faf8f3;
--blush:#dcb7c0;
--taupe:#8b7f78;
--text:#3f4643;
--white:#ffffff;

--shadow:0 12px 35px rgba(0,0,0,.08);
--shadowHover:0 18px 45px rgba(0,0,0,.12);

--radius:22px;

}

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:var(--cream);

color:var(--text);

line-height:1.8;

font-size:17px;

-webkit-font-smoothing:antialiased;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

transition:.3s ease;

}

/* ==========================
TYPOGRAPHY
========================== */

h1,h2,h3{

font-family:'Cormorant Garamond',serif;

font-weight:600;

letter-spacing:.5px;

color:var(--text);

}

h1{

font-size:4.2rem;

line-height:1.08;

margin-bottom:25px;

}

h2{

font-size:3rem;

margin-bottom:25px;

text-align:center;

}

h3{

font-size:2rem;

margin-bottom:18px;

}

p{

margin-bottom:20px;

max-width:760px;

}

/* ==========================
HEADER
========================== */

header{

position:sticky;

top:0;

z-index:1000;

background:rgba(250,248,243,.95);

backdrop-filter:blur(12px);

padding:22px 8%;

display:flex;

justify-content:space-between;

align-items:center;

box-shadow:0 2px 18px rgba(0,0,0,.05);

}

.logo{

font-family:'Cormorant Garamond',serif;

font-size:2rem;

font-weight:600;

letter-spacing:.5px;

}

nav{

display:flex;

gap:32px;

}

nav a{

font-weight:500;

position:relative;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--blush);

transition:.3s;

}

nav a:hover::after{

width:100%;

}

/* ==========================
HERO
========================== */

.hero{

padding:110px 8% 90px;

text-align:center;

background:

linear-gradient(

180deg,

#dfe9e6 0%,

#edf4f1 35%,

#faf8f3 100%

);

}

.hero img{

width:100%;
max-width:450px;
margin:50px auto 0 auto;
border-radius:24px
transition:.4s;

}

.hero img:hover{

transform:scale(1.03);

}

.tag{

font-size:1.35rem;

font-weight:300;

max-width:720px;

margin: 30px auto;

color:#666;

text-align: center;

}

.btn{

display:inline-block;

margin-top:38px;

padding:16px 36px;

background:var(--blush);

color:white;

border-radius:999px;

font-weight:600;

box-shadow:var(--shadow);

transition:.3s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:var(--shadowHover);

}

/* =====================================
   CONTENT SECTIONS
===================================== */

.section{

max-width:1100px;

margin:auto;

padding:90px 8%;

}

.section p{

margin-left:auto;

margin-right:auto;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

/* =====================================
   CARDS
===================================== */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

gap:32px;

margin-top:50px;

}

.card{

background:white;

padding:42px;

border-radius:24px;

box-shadow:var(--shadow);

transition:.35s;

border:1px solid rgba(0,0,0,.03);

}

.card:hover{

transform:translateY(-8px);

box-shadow:var(--shadowHover);

}

.card h3{

margin-bottom:18px;

text-align:left;

}

.card p{

margin-bottom:0;

}

/* =====================================
   ABOUT PAGE
===================================== */

.about-grid{

display:grid;

grid-template-columns:1fr 1.3fr;

gap:70px;

align-items:center;

}

.about-photo{

border-radius:30px;

overflow:hidden;

box-shadow:var(--shadowHover);

}

.about-photo img{

width:100%;
max-width: 360px;
height:auto;
border-radius:22px;
display:block;

}

.about-text h2{

text-align:left;

}

.about-text p{

max-width:none;

}

/* ===== HOLDING HANDS IMAGE ===== */

.hands-section{
    text-align:center;
    padding:20px 0 60px;
}

.hands-photo{
    display:block;
    width:100%;
    max-width:650px;
    margin:0 auto;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

/* =====================================
   SERVICES
===================================== */

.service{

margin-bottom:65px;

padding-bottom:55px;

border-bottom:1px solid rgba(0,0,0,.08);

}

.service:last-child{

border:none;

}

/* =====================================
   QUOTE
===================================== */

.quote{

background:white;

padding:55px;

border-left:6px solid var(--blush);

border-radius:22px;

font-style:italic;

font-size:1.25rem;

margin:70px auto;

max-width:900px;

box-shadow:var(--shadow);

}

/* =====================================
   CONTACT BOX
===================================== */

.contact-box{

background:linear-gradient(
135deg,
#eef4f1,
#faf8f3
);

padding:60px;

border-radius:28px;

text-align:center;

box-shadow:var(--shadow);

margin-top:70px;

}

.contact-box h2{

margin-bottom:20px;

}

.contact-box p{

margin:auto auto 30px;

}

/* =====================================
   FOOTER
===================================== */

footer{

margin-top:80px;

padding:55px 8%;

background:#dfe8e2;

text-align:center;

font-size:.95rem;

color:#666;

}

footer p{

margin:auto;

}

/* =====================================
   SUBTLE FADE IN
===================================== */

.card,
.about-photo,
.quote,
.contact-box{

animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(25px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* =====================================
   MOBILE
===================================== */

@media(max-width:900px){

h1{

font-size:3rem;

}

h2{

font-size:2.4rem;

}

header{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.hero{

padding-top:70px;

}

.hero img{

width:190px;

}

.about-grid{

grid-template-columns:1fr;

}

.section{

padding:70px 7%;

}

.cards{

grid-template-columns:1fr;

}

.contact-box{

padding:40px 30px;

}

}

/* ===== ABOUT PAGE ===== */

.about-container{
    max-width:1100px;
    margin:80px auto;
    padding:0 8%;
    display:grid;
    grid-template-columns:350px 1fr;
    gap:60px;
    align-items:start;
}

.about-photo img{
    width:100%;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-text h2{
    margin-top:0;
    color:#5b5f78;
    font-size:2rem;
}

.about-text p{
    margin-bottom:22px;
    font-size:1.08rem;
    line-height:1.9;
}

@media (max-width:900px){

.about-container{
    grid-template-columns:1fr;
    text-align:center;
}

.about-photo{
    max-width:320px;
    margin:0 auto;
}

}

/* ===== SERVICES PAGE ===== */

.tagline{
    font-size:1.3rem;
    font-weight:300;
    max-width:720px;
    margin:30px auto;
    color:#666;
    text-align:center;
}

.service ul{
    margin:20px 0 25px 55px;
    padding-left:45px;
}

.service li{
    margin-bottom:10px;
}
