/* ============================ FONTS ============================ */
@font-face{ font-family:"Kannada MN"; src:url("fonts/kannada-mn.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face{ font-family:"Roboto Condensed"; src:url("fonts/roboto-condensed-300.woff2") format("woff2"); font-weight:300; font-style:normal; font-display:swap; }
@font-face{ font-family:"Roboto Condensed"; src:url("fonts/roboto-condensed-400.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face{ font-family:"Roboto Condensed"; src:url("fonts/roboto-condensed-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }

/* ============================ RESET / BASE ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --serif:"Kannada MN",Georgia,serif;
  --sans:"Roboto Condensed","Inter",system-ui,sans-serif;
  --anthracite:#2D3730;
  --ink:#3a352f;
  --ink-soft:#6c6459;
  --gold:#bb8f66;
  --gold-deep:#9a6e45;
  --gold-tint:#d8c2a9;
  --sage:#8e9a82;
  --sage-deep:#6f7c63;
  --off-white:#fbf8f3;
  --cream:#f4ece1;
  --sand:#ece1d2;
  --beige:#e3d7c5;
  --taupe:#b7a793;
  --line:rgba(43,40,36,.10);
  --line-soft:rgba(43,40,36,.06);
  --shadow-sm:0 2px 14px rgba(74,63,46,.06);
  --shadow:0 18px 50px -24px rgba(74,63,46,.30);
  --shadow-lg:0 40px 90px -40px rgba(74,63,46,.40);
  --r-lg:28px;
  --r-md:20px;
  --r-sm:14px;
  --maxw:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
}
html{ scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--off-white);
  font-size:18px;
  line-height:1.72;
  font-weight:300;
  overflow-x:hidden;
  touch-action:manipulation;
}
h1,h2,h3,h4{ font-family:var(--serif); color:var(--anthracite); font-weight:400; line-height:1.14; letter-spacing:0; }
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--gold); color:#fff; }

/* ============================ LAYOUT HELPERS ============================ */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 40px; }
.section{ padding:130px 0; position:relative; }
.section--tight{ padding:96px 0; }
.bg-cream{ background:var(--cream); }
.bg-sand{ background:linear-gradient(180deg,var(--cream),var(--sand)); }
.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-size:12.5px; font-weight:500; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold-deep);
}
.eyebrow::before{ content:""; width:30px; height:1px; background:var(--gold); opacity:.7; }
.eyebrow.center{ justify-content:flex-start; }
.lead{ font-size:21px; line-height:1.6; color:var(--ink-soft); }
.muted{ color:var(--ink-soft); }
.section-head{ max-width:680px; }
.section-head.center{ text-align:left; }
.section-head h2{ font-size:clamp(34px,4.4vw,54px); margin:20px 0 0; }
.section-head .lead{ margin-top:22px; }

/* ============================ BUTTONS ============================ */
.btn{
  display:inline-flex; align-items:center; gap:11px;
  font-family:var(--sans); font-size:15px; font-weight:500; letter-spacing:.01em;
  padding:16px 30px; border-radius:100px; cursor:pointer; border:1px solid transparent;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; }
.btn--primary{ background:var(--gold); color:#fff; box-shadow:0 14px 30px -14px rgba(154,110,69,.7); }
.btn--primary:hover{ background:var(--gold-deep); transform:translateY(-2px); box-shadow:0 22px 40px -16px rgba(154,110,69,.8); }
.btn--ghost{ background:transparent; color:var(--anthracite); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--gold); color:var(--gold-deep); transform:translateY(-2px); }
.btn--light{ background:#fff; color:var(--anthracite); box-shadow:var(--shadow-sm); }
.btn--light:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }

/* ============================ HEADER ============================ */
.topbar{
  background:var(--anthracite); color:#e8e0d4;
  font-size:13px; letter-spacing:.02em;
}
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; height:42px; }
.topbar a{ color:#e8e0d4; opacity:.85; transition:opacity .2s; }
.topbar a:hover{ opacity:1; color:#fff; }
.topbar .tb-right{ display:flex; gap:26px; align-items:center; }
.topbar .tb-badge{ display:inline-flex; align-items:center; gap:8px; color:var(--gold-tint); }
.topbar .tb-badge::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--sage); }

header.site{
  position:sticky; top:0; z-index:60;
  background:rgba(251,248,243,.82); backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:background .4s, border-color .4s, box-shadow .4s;
}
header.site.scrolled{ background:rgba(251,248,243,.92); border-color:var(--line-soft); box-shadow:0 6px 30px -22px rgba(74,63,46,.5); }
.nav{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; height:104px; transition:height .35s var(--ease); }
.nav .logo{ justify-self:start; grid-column:1; }
.nav .nav-cta{ justify-self:end; grid-column:3; }
header.site.scrolled .nav{ height:84px; }
.logo{ display:inline-flex; align-items:baseline; gap:3px; font-family:var(--sans); }
.logo .l-main{ font-size:25px; font-weight:300; letter-spacing:.32em; color:var(--anthracite); text-transform:uppercase; padding-left:.32em; }
.logo .l-dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); display:inline-block; transform:translateY(-2px); }
.logo-img{ height:86px; width:auto; display:block; transition:height .35s var(--ease); }
header.site.scrolled .logo-img{ height:68px; }
.logo-img--drawer{ height:58px; }
.logo-img--foot{ height:auto; width:300px; max-width:100%; opacity:.95; }
@media (max-width:640px){
  .logo-img{ height:58px; }
  .logo-img--drawer{ height:52px; }
  .logo-img--foot{ width:220px; height:auto; }
  .nav, header.site.scrolled .nav{ height:84px; }
  .nav{ display:flex; position:relative; justify-content:flex-end; }
  header.site .logo, header.site.scrolled .logo{ position:absolute; left:50%; transform:translateX(-50%); }
}
.nav-links{ display:flex; align-items:center; justify-content:center; justify-self:center; gap:38px; }
.nav-links a{ font-size:16.5px; color:var(--ink); position:relative; transition:color .25s; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background:var(--gold); transition:width .3s var(--ease); }
.nav-links a:hover{ color:var(--anthracite); }
.nav-links a:hover::after{ width:100%; }
.nav-dropdown{ position:relative; display:flex; align-items:center; }
.nav-dropdown > a{ display:inline-flex; align-items:center; gap:6px; }
.nav-dropdown .caret{ width:9px; height:9px; stroke:currentColor; transition:transform .3s var(--ease); flex-shrink:0; }
.nav-dropdown:hover .caret,.nav-dropdown:focus-within .caret{ transform:rotate(180deg); }
.nav-dropdown::after{ content:""; position:absolute; top:100%; left:-20px; right:-20px; height:16px; }
.nav-dropdown-menu{
  position:absolute; top:calc(100% + 16px); left:50%; transform:translateX(-50%) translateY(6px);
  min-width:220px; background:#fff; border:1px solid var(--line-soft); border-radius:var(--r-md);
  box-shadow:var(--shadow-lg); padding:10px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; z-index:70;
}
.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}
.nav-dropdown-menu a{ display:block; padding:11px 16px; border-radius:8px; font-size:14.5px; color:var(--ink); white-space:nowrap; }
.nav-dropdown-menu a::after{ display:none; }
.nav-dropdown-menu a:hover{ background:var(--cream); color:var(--gold-deep); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.menu-btn{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.menu-btn span{ width:24px; height:2px; background:var(--anthracite); border-radius:2px; transition:.3s var(--ease); }

/* mobile drawer */
.drawer{ position:fixed; inset:0; z-index:80; visibility:hidden; pointer-events:none; }
.drawer-overlay{ position:absolute; inset:0; background:rgba(43,40,36,.4); opacity:0; transition:opacity .4s; }
.drawer-panel{ position:absolute; top:0; right:0; width:min(86vw,360px); height:100%; background:var(--off-white); padding:32px; transform:translateX(100%); transition:transform .45s var(--ease); display:flex; flex-direction:column; }
.drawer.open{ visibility:visible; pointer-events:auto; }
.drawer.open .drawer-overlay{ opacity:1; }
.drawer.open .drawer-panel{ transform:translateX(0); }
.drawer-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:42px; }
.drawer-close{ background:none; border:none; font-size:30px; cursor:pointer; color:var(--anthracite); line-height:1; }
.drawer-panel nav{ display:flex; flex-direction:column; gap:6px; }
.drawer-panel nav a{ font-family:var(--serif); font-size:25px; padding:11px 0; border-bottom:1px solid var(--line-soft); color:var(--anthracite); }
.drawer-drop summary{ font-family:var(--serif); font-size:25px; padding:11px 0; border-bottom:1px solid var(--line-soft); color:var(--anthracite); cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.drawer-drop summary::-webkit-details-marker{ display:none; }
.drawer-drop summary .caret{ width:12px; height:12px; stroke:var(--anthracite); transition:transform .3s var(--ease); flex-shrink:0; }
.drawer-drop[open] summary .caret{ transform:rotate(180deg); }
.drawer-drop-menu{ display:flex; flex-direction:column; padding:2px 0 14px 4px; }
.drawer-drop-menu a{ font-size:18px; padding:9px 0; color:var(--ink-soft); }
.drawer-drop-menu a:hover{ color:var(--gold-deep); }
.drawer-panel .btn{ margin-top:30px; justify-content:center; }

/* ============================ HERO ============================ */
.hero{ position:relative; padding:72px 0 110px; }
.hero-grid{ display:grid; grid-template-columns:1.04fr 1fr; gap:64px; align-items:center; }
.hero-copy{ max-width:560px; }
.hero h1{ font-size:clamp(44px,5.6vw,72px); margin:26px 0 0; }
.hero h1 em{ font-style:italic; color:var(--gold-deep); }
.hero p.sub{ font-size:21px; line-height:1.62; color:var(--ink-soft); margin-top:26px; max-width:500px; }
.hero-actions{ display:flex; gap:16px; margin-top:38px; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:34px; margin-top:48px; padding-top:34px; border-top:1px solid var(--line); }
.hero-trust .ht{ }
.hero-trust .ht b{ font-size:30px; font-weight:600; color:var(--anthracite); display:block; }
.hero-trust .ht span{ font-size:13.5px; color:var(--ink-soft); letter-spacing:.01em; }
.hero-visual{ position:relative; }
.hero-visual .frame{ position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/4.6; }
.hero-visual .frame img{ width:100%; height:100%; object-fit:cover; }
.hero-float{
  position:absolute; left:-34px; bottom:46px; z-index:3;
  background:#fff; border-radius:var(--r-md); padding:18px 22px; box-shadow:var(--shadow);
  display:flex; align-items:center; gap:14px; max-width:260px;
}
.hero-float .hf-ic{ width:46px; height:46px; border-radius:50%; background:var(--cream); display:grid; place-items:center; flex-shrink:0; }
.hero-float .hf-ic svg{ width:22px; height:22px; stroke:var(--gold-deep); }
.hero-float p{ font-size:13.5px; line-height:1.45; color:var(--ink); }
.hero-float p b{ color:var(--anthracite); font-weight:600; }
.hero-leaf{ position:absolute; top:-26px; right:-22px; width:120px; height:120px; border-radius:50%; overflow:hidden; box-shadow:var(--shadow); border:5px solid var(--off-white); z-index:3; }
.hero-leaf img{ width:100%; height:100%; object-fit:cover; }

/* ============================ ABOUT PRACTICE ============================ */
.about-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:80px; align-items:center; }
.about-media{ position:relative; }
.about-media .m-main{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); aspect-ratio:5/4; }
.about-media .m-main img{ width:100%; height:100%; object-fit:cover; }
.about-media .m-quote{
  position:absolute; right:-26px; bottom:-30px; background:var(--anthracite); color:#f3ece1;
  border-radius:var(--r-md); padding:26px 28px; max-width:270px; box-shadow:var(--shadow);
}
.about-media .m-quote p{ font-family:var(--serif); font-style:italic; font-size:19px; line-height:1.5; }
.about-media .m-quote span{ display:block; margin-top:12px; font-family:var(--sans); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-tint); }
.about-copy h2{ font-size:clamp(32px,4vw,50px); margin:18px 0 0; }
.about-copy p{ margin-top:22px; }
.values{ list-style:none; margin-top:34px; display:grid; grid-template-columns:1fr 1fr; gap:18px 26px; }
.values li{ display:flex; gap:13px; align-items:flex-start; font-size:16.5px; color:var(--ink); }
.values li svg{ width:21px; height:21px; stroke:var(--gold-deep); flex-shrink:0; margin-top:2px; }

/* ============================ SERVICES ============================ */
.svc-grid{ margin-top:64px; display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.svc-card{
  background:#fff; border:1px solid var(--line-soft); border-radius:var(--r-md);
  padding:38px 34px; box-shadow:var(--shadow-sm);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
  position:relative; overflow:hidden;
}
.svc-card::after{ content:""; position:absolute; left:0; top:0; height:3px; width:0; background:linear-gradient(90deg,var(--gold),var(--gold-tint)); transition:width .5s var(--ease); }
.svc-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow); border-color:transparent; }
.svc-card:hover::after{ width:100%; }
.svc-ic{ width:62px; height:62px; border-radius:18px; background:var(--cream); display:grid; place-items:center; margin-bottom:24px; transition:background .4s, transform .5s var(--ease); }
.svc-ic svg{ width:30px; height:30px; stroke:var(--gold-deep); fill:none; stroke-width:1.4; }
.svc-card:hover .svc-ic{ background:var(--gold); transform:rotate(-4deg); }
.svc-card:hover .svc-ic svg{ stroke:#fff; }
.svc-card h3{ font-size:23px; margin-bottom:12px; }
.svc-card p{ font-size:16.5px; color:var(--ink-soft); line-height:1.62; }
.svc-card .svc-no{ position:absolute; top:30px; right:34px; font-family:var(--serif); font-size:15px; color:var(--gold-tint); }

/* ============================ FAÏZA ============================ */
.bio-grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:78px; align-items:center; }
.bio-media{ position:relative; }
.bio-media .b-img{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:3/3.7; }
.bio-media .b-img img{ width:100%; height:100%; object-fit:cover; object-position:center top; }
.bio-media .b-tag{
  position:absolute; left:-30px; top:44px; background:#fff; border-radius:100px;
  padding:12px 22px; box-shadow:var(--shadow); font-size:13.5px; font-weight:500; color:var(--anthracite);
  display:flex; align-items:center; gap:9px;
}
.bio-media .b-tag::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--sage); }
.bio-copy .signature{ font-family:var(--serif); font-style:italic; font-size:34px; color:var(--gold-deep); margin-top:30px; }
.bio-copy h2{ font-size:clamp(32px,4vw,50px); margin:16px 0 0; }
.bio-copy p{ margin-top:22px; }
.bio-creds{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.bio-creds .cred{ background:var(--off-white); border:1px solid var(--line); border-radius:12px; padding:10px 18px; font-size:14.5px; color:var(--ink); }
.bio-creds .cred b{ color:var(--anthracite); }

/* ============================ PSYCHO ============================ */
.psy{ background:var(--anthracite); color:#ece3d6; overflow:hidden; }
.psy .wrap{ position:relative; }
.psy-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.psy-media{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:5/4; }
.psy-media img{ width:100%; height:100%; object-fit:cover; }
.psy h2{ color:#fff; font-size:clamp(32px,4vw,50px); margin:18px 0 0; }
.psy .eyebrow{ color:var(--gold-tint); }
.psy .eyebrow::before{ background:var(--gold-tint); }
.psy p.lead{ color:#cdc3b4; margin-top:22px; }
.psy-list{ list-style:none; margin-top:32px; display:grid; gap:2px; }
.psy-list li{ display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.1); font-size:17.5px; color:#e6dccd; }
.psy-list li span.n{ font-family:var(--serif); font-size:14px; color:var(--gold); width:28px; }
.psy .btn{ margin-top:36px; }

/* ============================ BENEFITS ============================ */
.ben-grid{ margin-top:60px; display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.ben-card{ background:#fff; border-radius:var(--r-md); padding:34px 32px; border:1px solid var(--line-soft); transition:transform .45s var(--ease), box-shadow .45s; }
.ben-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.ben-ic{ width:50px; height:50px; border-radius:14px; background:var(--cream); display:grid; place-items:center; margin-bottom:20px; }
.ben-ic svg{ width:25px; height:25px; stroke:var(--sage-deep); fill:none; stroke-width:1.5; }
.ben-card h3{ font-size:20px; margin-bottom:9px; }
.ben-card p{ font-size:15.8px; color:var(--ink-soft); line-height:1.6; }

/* ============================ PRICING ============================ */
.price-grid{ margin-top:62px; display:flex; flex-wrap:wrap; justify-content:center; gap:24px; }
.price-grid .price-card{ flex:1 1 320px; max-width:360px; }
.price-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:42px 36px;
  position:relative; transition:transform .45s var(--ease), box-shadow .45s, border-color .4s;
}
.price-card:hover{ transform:translateY(-7px); box-shadow:var(--shadow); }
.price-card.feature{ background:var(--anthracite); border-color:var(--anthracite); }
.price-card.feature h3,.price-card.feature .amt{ color:#fff; }
.price-card.feature .price-desc,.price-card.feature .dur{ color:#c9bfb0; }
.price-card.feature .price-line{ background:rgba(255,255,255,.14); }
.price-tag{ position:absolute; top:30px; right:34px; font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); }
.price-card .dur{ font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-deep); }
.price-card h3{ font-size:24px; margin:14px 0 18px; }
.price-card .amt{ font-family:var(--serif); font-size:46px; font-weight:500; color:var(--anthracite); }
.price-card .amt small{ font-size:20px; color:var(--ink-soft); font-family:var(--sans); font-weight:400; margin-right:4px; }
.price-line{ height:1px; background:var(--line); margin:24px 0; }
.price-desc{ font-size:15.5px; color:var(--ink-soft); line-height:1.6; }
.insurance-note{ max-width:680px; margin:34px auto 0; background:#fff; border:1px solid var(--line); border-radius:var(--r-md); box-shadow:var(--shadow-sm); overflow:hidden; }
.insurance-note summary{ cursor:pointer; list-style:none; display:flex; align-items:center; gap:10px; font-weight:600; color:var(--anthracite); padding:22px 28px; user-select:none; }
.insurance-note summary::-webkit-details-marker{ display:none; }
.insurance-note summary svg{ width:18px; height:18px; stroke:var(--sage-deep); flex-shrink:0; }
.insurance-note summary .plus{ margin-right:2px; font-weight:400; color:var(--ink-soft); }
.insurance-note .note-body{ padding:0 28px 26px; font-size:15.5px; color:var(--ink-soft); line-height:1.65; text-align:left; }
.insurance-note .note-body p + p{ margin-top:14px; }

/* ============================ FAQ ============================ */
.faq-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; background:none; border:none; cursor:pointer; text-align:left; display:flex; justify-content:space-between; align-items:center; gap:24px; padding:28px 0; font-family:var(--serif); font-size:21px; color:var(--anthracite); }
.faq-q .ic{ flex-shrink:0; width:34px; height:34px; border-radius:50%; border:1px solid var(--line); display:grid; place-items:center; position:relative; transition:.35s var(--ease); }
.faq-q .ic::before,.faq-q .ic::after{ content:""; position:absolute; background:var(--gold-deep); transition:.35s var(--ease); }
.faq-q .ic::before{ width:13px; height:1.6px; }
.faq-q .ic::after{ width:1.6px; height:13px; }
.faq-item.open .faq-q .ic{ background:var(--gold); border-color:var(--gold); }
.faq-item.open .faq-q .ic::before,.faq-item.open .faq-q .ic::after{ background:#fff; }
.faq-item.open .faq-q .ic::after{ transform:scaleY(0); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-a-inner{ padding:0 0 28px; font-size:17px; color:var(--ink-soft); line-height:1.7; max-width:90%; }
.faq-aside{ background:var(--cream); border-radius:var(--r-lg); padding:42px 38px; position:sticky; top:110px; }
.faq-aside h3{ font-size:26px; }
.faq-aside p{ margin-top:14px; font-size:16.5px; color:var(--ink-soft); }
.faq-aside .btn{ margin-top:26px; }

/* ============================ CONTACT ============================ */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:60px; align-items:stretch; }
.contact-info{ }
.contact-info h2{ font-size:clamp(32px,4vw,50px); margin:18px 0 0; }
.contact-rows{ margin-top:38px; display:flex; flex-direction:column; gap:4px; }
.crow{ display:flex; gap:20px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--line); }
.crow .c-ic{ width:48px; height:48px; border-radius:50%; background:var(--cream); display:grid; place-items:center; flex-shrink:0; }
.crow .c-ic svg{ width:21px; height:21px; stroke:var(--gold-deep); fill:none; stroke-width:1.5; }
.crow .c-tx span{ font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); }
.crow .c-tx p{ font-size:19px; color:var(--anthracite); margin-top:3px; }
.crow .c-tx p a:hover{ color:var(--gold-deep); }
.contact-actions{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
.contact-map{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); min-height:440px; border:1px solid var(--line); }
.contact-map iframe{ width:100%; height:100%; min-height:440px; border:0; display:block; filter:grayscale(.2) contrast(.98); }

/* ============================ BOOKING / TERMIN ============================ */
.booking-embed{ margin-top:54px; }
.booking-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow); overflow:hidden; max-width:780px; margin-inline:0; }
.booking-placeholder{ padding:66px 40px; text-align:center; display:flex; flex-direction:column; align-items:center; background:linear-gradient(180deg,#fff,var(--off-white)); }
.booking-placeholder .bp-ic{ width:76px; height:76px; border-radius:50%; background:var(--cream); display:grid; place-items:center; margin-bottom:24px; }
.booking-placeholder .bp-ic svg{ width:34px; height:34px; stroke:var(--gold-deep); fill:none; stroke-width:1.4; }
.booking-placeholder h3{ font-size:27px; }
.booking-placeholder p{ margin-top:13px; max-width:480px; color:var(--ink-soft); }
.booking-placeholder .bp-note{ margin-top:18px; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--taupe); border:1px dashed var(--gold-tint); border-radius:100px; padding:7px 16px; }
.booking-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; justify-content:center; }
/* OneDoc-Embed füllt die Karte randlos aus; Höhe wird per JS an den Inhalt angepasst */
.booking-card iframe{ width:100%; height:680px; border:0; display:block; }
.cancel-note{ max-width:780px; margin:22px auto 0; margin-inline:0; font-size:14px; color:var(--ink-soft); line-height:1.6; text-align:left; }
@media (max-width:640px){ .booking-placeholder{ padding:48px 22px; } .booking-actions .btn{ flex:1; justify-content:center; } }

/* ============================ FOOTER ============================ */
footer.site{ background:var(--anthracite); color:#bdb2a3; padding:84px 0 36px; }
.foot-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:48px; }
.foot-brand .logo .l-main{ color:#fff; }
.foot-brand p{ margin-top:22px; font-size:16px; line-height:1.7; max-width:300px; color:#a99e8f; }
.foot-col h4{ font-family:var(--sans); font-size:12.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-tint); font-weight:500; margin-bottom:20px; }
.foot-col ul{ list-style:none; display:flex; flex-direction:column; gap:13px; }
.foot-col a{ color:#bdb2a3; font-size:16px; transition:color .25s; }
.foot-col a:hover{ color:#fff; }
.foot-hours{ font-size:15.5px; line-height:1.9; color:#bdb2a3; }
.foot-hours b{ color:#fff; font-weight:500; }
.foot-bottom{ margin-top:64px; padding-top:28px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:13.5px; color:#8f8576; }
.foot-bottom a:hover{ color:#fff; }
.foot-credit{ margin-top:22px; padding-top:20px; border-top:1px solid rgba(255,255,255,.07); text-align:center; font-size:12.5px; letter-spacing:.02em; color:#7a7161; }
.foot-credit a{ color:#a89e8d; font-weight:500; text-decoration:none; transition:color .2s ease; }
.foot-credit a:hover{ color:#fff; }

/* ============================ REVEAL ============================ */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; } .reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }

/* ============================ REVIEWS ============================ */
.rev-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; }
.rev-badge{ display:inline-flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--line); border-radius:100px; padding:12px 24px; box-shadow:var(--shadow-sm); }
.rev-badge .rb-score{ font-family:var(--serif); font-size:30px; color:var(--anthracite); line-height:1; }
.rev-stars{ display:inline-flex; gap:3px; }
.rev-stars svg{ width:18px; height:18px; fill:var(--gold); }
.rev-badge .rb-meta{ font-size:13px; color:var(--ink-soft); line-height:1.35; }
.rev-badge .rb-meta b{ color:var(--anthracite); font-weight:600; }
.rev-grid{ margin-top:56px; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.rev-card{ background:#fff; border:1px solid var(--line-soft); border-radius:var(--r-md); padding:34px 32px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; transition:transform .45s var(--ease), box-shadow .45s; }
.rev-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.rev-card .rev-stars{ margin-bottom:18px; }
.rev-card blockquote{ font-size:17.5px; line-height:1.66; color:var(--ink); flex:1; }
.rev-author{ display:flex; align-items:center; gap:14px; margin-top:26px; padding-top:22px; border-top:1px solid var(--line-soft); }
.rev-avatar{ width:44px; height:44px; border-radius:50%; background:var(--cream); display:grid; place-items:center; font-family:var(--serif); font-size:18px; color:var(--gold-deep); flex-shrink:0; }
.rev-author .ra-tx b{ display:block; font-size:15px; color:var(--anthracite); font-weight:600; }
.rev-author .ra-tx span{ font-size:12.5px; color:var(--ink-soft); }
.rev-cta-row{ margin-top:40px; text-align:center; }

/* reviews carousel */
.rev-carousel{ margin-top:56px; }
.rev-track{ display:flex; align-items:stretch; gap:24px; overflow-x:auto; scroll-snap-type:x proximity; scroll-behavior:smooth; padding:8px 2px 26px; scrollbar-width:none; -ms-overflow-style:none; }
.rev-track::-webkit-scrollbar{ display:none; }
.rev-carousel .rev-card{ flex:0 0 calc((100% - 48px)/3); scroll-snap-align:start; }
.rev-controls{ display:flex; align-items:center; justify-content:center; gap:18px; margin-top:6px; }
.rev-arrow{ width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background:#fff; color:var(--anthracite); display:grid; place-items:center; cursor:pointer; box-shadow:var(--shadow-sm); transition:background .25s var(--ease), color .25s, border-color .25s, opacity .25s; flex-shrink:0; }
.rev-arrow svg{ width:20px; height:20px; }
.rev-arrow:hover{ background:var(--anthracite); color:#fff; border-color:var(--anthracite); }
.rev-arrow:disabled{ opacity:.3; cursor:default; }
.rev-arrow:disabled:hover{ background:#fff; color:var(--anthracite); border-color:var(--line); }
.rev-dots{ display:flex; align-items:center; gap:9px; }
.rev-dots button{ width:9px; height:9px; border-radius:50%; border:none; padding:0; background:var(--gold-tint); cursor:pointer; transition:background .25s, transform .25s; }
.rev-dots button.active{ background:var(--gold-deep); transform:scale(1.3); }
@media (max-width:920px){ .rev-carousel .rev-card{ flex-basis:calc((100% - 24px)/2); } }
@media (max-width:640px){ .rev-carousel .rev-card{ flex-basis:100%; } }

/* ============================ RESPONSIVE ============================ */
@media (max-width:1080px){
  .svc-grid,.ben-grid{ grid-template-columns:repeat(2,1fr); }
  .hero-grid{ gap:44px; }
}
@media (max-width:1040px){
  .nav-links,.nav-cta .btn{ display:none; }
  .menu-btn{ display:flex; }
  .nav-cta{ gap:0; }
}
@media (max-width:920px){
  .menu-btn{ display:flex; }
  .nav-cta{ gap:0; }
  .hero-grid,.about-grid,.bio-grid,.psy-grid,.faq-grid,.contact-grid,.price-grid{ grid-template-columns:1fr; }
  .hero-copy{ order:2; }
  .hero-visual{ order:1; max-width:520px; margin:0 auto; }
  .price-grid{ gap:18px; }
  .section{ padding:88px 0; }
  .hero{ padding:48px 0 80px; }
  .about-copy,.bio-copy{ order:2; }
  .about-media,.bio-media{ order:1; max-width:520px; margin:0 auto 24px; }
  .about-media .m-quote{ right:0; }
  .faq-aside{ position:static; }
  .hero-trust{ gap:26px; }
  .contact-map{ order:1; }
  .contact-info{ order:2; }
}
@media (max-width:640px){
  body{ font-size:16px; }
  .wrap{ padding:0 22px; }
  .topbar .tb-left{ display:none; }
  .topbar .wrap{ justify-content:center; }
  .svc-grid,.ben-grid,.price-grid,.values{ grid-template-columns:1fr; }
  .hero-actions .btn,.contact-actions .btn{ flex:1; justify-content:center; }
  .hero-leaf{ width:88px; height:88px; right:-6px; top:-18px; }
  .hero-float{ left:0; }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:36px; }
  .about-media .m-quote{ position:static; margin-top:18px; max-width:none; }
  .section-head h2,.about-copy h2,.bio-copy h2,.psy h2,.contact-info h2{ font-size:32px; }
}

/* ============================ V2 — INNER PAGES ============================ */
.nav-links a.active{ color:var(--anthracite); }
.nav-links a.active::after{ width:100%; }
.page-hero{ padding:118px 0 72px; background:linear-gradient(180deg,var(--cream),var(--off-white)); border-bottom:1px solid var(--line-soft); }
.page-hero .wrap.page-hero-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:56px; align-items:center; }
.page-hero-media{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/3.3; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:900px){ .page-hero .wrap.page-hero-grid{ grid-template-columns:1fr; } .page-hero-media{ order:-1; max-width:420px; margin-inline:auto; } }
/* gleicher Abstand: Linie → Inhalt = letzter Satz → Linie (72px) */
.page-hero + .section{ padding-top:72px; }
.page-hero + .section > .wrap > .svc-grid:first-child{ margin-top:0; }
.page-hero .crumb{ font-size:13px; letter-spacing:.02em; color:var(--ink-soft); margin-bottom:20px; }
.page-hero .crumb a:hover{ color:var(--gold-deep); }
.page-hero h1{ font-size:clamp(40px,5.4vw,66px); margin-top:16px; }
.page-hero h1 em{ font-style:italic; color:var(--gold-deep); }
.page-hero p{ margin-top:22px; max-width:640px; font-size:20px; line-height:1.6; color:var(--ink-soft); }
.cta-band{ background:var(--anthracite); color:#ece3d6; border-radius:var(--r-lg); padding:70px 56px; text-align:center; display:flex; flex-direction:column; align-items:center; }
.cta-band .eyebrow{ color:var(--gold-tint); justify-content:center; }
.cta-band .eyebrow::before{ background:var(--gold-tint); }
.cta-band h2{ color:#fff; font-size:clamp(30px,3.6vw,46px); margin-top:18px; max-width:640px; }
.cta-band p{ color:#cdc3b4; margin-top:18px; max-width:540px; }
.cta-band .cta-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; justify-content:center; }
.home-teaser{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.home-teaser .ht-media{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); aspect-ratio:5/4; }
.home-teaser .ht-media img{ width:100%; height:100%; object-fit:cover; }
.home-teaser h2{ font-size:clamp(30px,3.6vw,46px); margin:16px 0 0; }
.home-teaser p{ margin-top:20px; }
.home-teaser .btn{ margin-top:28px; }
@media (max-width:920px){
  .cta-band{ padding:54px 26px; }
  .home-teaser{ grid-template-columns:1fr; gap:34px; }
  .home-teaser .ht-media{ order:1; max-width:520px; margin:0 auto 24px; }
  .home-teaser .ht-copy{ order:2; }
}

/* clickable service cards */
a.svc-card{ text-decoration:none; color:inherit; cursor:pointer; }
.svc-more{ margin-top:18px; display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:500; color:var(--gold-deep); transition:gap .35s var(--ease); }
.svc-more svg{ width:15px; height:15px; }
a.svc-card:hover .svc-more{ gap:13px; }

/* service detail — "weitere Leistungen" mini links */
.svc-other{ margin-top:54px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.svc-other a{ display:flex; align-items:center; justify-content:space-between; gap:12px; background:#fff; border:1px solid var(--line-soft); border-radius:var(--r-sm); padding:18px 20px; font-size:15px; font-weight:500; color:var(--anthracite); box-shadow:var(--shadow-sm); transition:transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.svc-other a:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; color:var(--gold-deep); }
.svc-other a svg{ width:15px; height:15px; stroke:var(--gold-deep); flex-shrink:0; }
@media (max-width:820px){ .svc-other{ grid-template-columns:1fr 1fr; } }

/* helps list on service pages */
.helps{ list-style:none; margin-top:30px; display:grid; grid-template-columns:1fr 1fr; gap:14px 26px; }
.helps li{ display:flex; gap:12px; align-items:flex-start; font-size:16.5px; color:var(--ink); }
.helps li svg{ width:20px; height:20px; stroke:var(--gold-deep); fill:none; stroke-width:1.6; flex-shrink:0; margin-top:2px; }
@media (max-width:560px){ .helps{ grid-template-columns:1fr; } }

/* colleague recommendation — above footer, no box */
.colleague-note{ text-align:center; padding:78px 22px; }
.colleague-note p{ max-width:660px; margin:0 auto; font-size:18px; line-height:1.8; color:var(--ink-soft); }
.colleague-note a{ color:var(--gold-deep); text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; transition:color .2s; }
.colleague-note a:hover{ color:var(--anthracite); }

/* legal pages (Impressum / Datenschutz) */
.legal{ max-width:760px; }
.legal h2{ font-size:25px; margin:46px 0 14px; }
.legal h2:first-child{ margin-top:0; }
.legal p{ margin-bottom:16px; font-size:17px; line-height:1.75; color:var(--ink); }
.legal p strong{ color:var(--anthracite); font-weight:600; }
.legal ul{ margin:0 0 16px; padding-left:22px; }
.legal li{ font-size:17px; line-height:1.75; color:var(--ink); margin-bottom:6px; }
.legal a{ color:var(--gold-deep); text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; transition:color .2s; }
.legal a:hover{ color:var(--anthracite); }

/* skip link (accessibility) */
.skip-link{ position:absolute; left:-9999px; top:0; z-index:200; background:var(--anthracite); color:#fff; padding:12px 22px; border-radius:0 0 10px 0; font-family:var(--sans); font-size:15px; font-weight:500; text-decoration:none; }
.skip-link:focus{ left:0; outline:2px solid var(--gold); outline-offset:2px; }