
:root{
--bg:#ffffff;
--card:rgba(242,242,238,.96);
--text:#111;
--muted:#6e6e73;
--radius:28px;
}

*{box-sizing:border-box}

body{
margin:0;
font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display",sans-serif;
background:
radial-gradient(circle at top, rgba(214,236,214,.55), transparent 42%),
var(--bg);
color:var(--text);
}

.header{
position:sticky;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
background:rgba(255,255,255,.88);
backdrop-filter:blur(18px);
}

.header img{
width:170px;
}

.globe-btn{
width:46px;
height:46px;
border:none;
border-radius:999px;
background:rgba(242,242,238,.98);
font-size:22px;
}

.container{
max-width:920px;
margin:auto;
padding:20px 18px 120px;
}

.hero{
text-align:center;
padding:34px 0;
}

.eyebrow{
font-size:13px;
letter-spacing:.12em;
font-weight:700;
color:var(--muted);
}

h1{
font-size:clamp(50px,14vw,96px);
line-height:.9;
letter-spacing:-.08em;
margin:14px 0;
}

.hero-text{
max-width:700px;
margin:auto;
font-size:20px;
line-height:1.5;
color:var(--muted);
}

.cards{
display:grid;
gap:14px;
margin-top:24px;
}

.card,.location{
background:var(--card);
padding:26px;
border-radius:var(--radius);
box-shadow:0 16px 42px rgba(0,0,0,.07);
}

.card span{
display:block;
font-size:28px;
font-weight:700;
}

.card a{
display:block;
margin-top:12px;
font-size:22px;
font-weight:700;
text-decoration:none;
color:#111;
}

.location{
margin-top:18px;
}

.location h2{
font-size:42px;
margin:0 0 14px;
}

.location p{
font-size:18px;
line-height:1.6;
color:var(--muted);
}

.btn{
display:flex;
justify-content:center;
align-items:center;
min-height:56px;
border-radius:999px;
text-decoration:none;
font-weight:700;
}

.outline{
background:white;
border:1px solid #ddd;
color:#111;
margin-top:18px;
}

.map{
margin-top:22px;
height:320px;
overflow:hidden;
border-radius:24px;
}

.map img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.bottom-bar{
position:fixed;
left:0;
right:0;
bottom:0;
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
padding:12px;
background:rgba(255,255,255,.94);
}

.bottom-bar a{
display:flex;
justify-content:center;
align-items:center;
min-height:54px;
border-radius:999px;
background:#111;
color:white;
text-decoration:none;
font-weight:700;
}


.map iframe{
width:100%;
height:100%;
border:none;
filter:grayscale(1);
}


.seo-section{
margin-top:24px;
}

.therapy-grid{
display:grid;
gap:14px;
margin-top:22px;
}

.therapy-card,
.faq-item{
background:rgba(242,242,238,.96);
padding:24px;
border-radius:28px;
box-shadow:0 16px 42px rgba(0,0,0,.06);
}

.therapy-card h3,
.faq-item h3{
margin:0 0 10px;
font-size:26px;
letter-spacing:-.04em;
}

.therapy-card p,
.faq-item p{
margin:0;
font-size:17px;
line-height:1.6;
color:#6e6e73;
}

.faq{
margin-top:18px;
display:grid;
gap:14px;
}

@media(min-width:760px){
.therapy-grid{
grid-template-columns:repeat(3,1fr);
}
}
