/* Gemeinsames Stylesheet für die Behandlungs-Unterseiten
   – Markendesign wie die Startseite (Fraunces + warme Beige-Palette) */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-sub.woff2') format('woff2-variations');
  font-weight: 360 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic-sub.woff2') format('woff2-variations');
  font-weight: 360 700; font-style: italic; font-display: swap;
}
:root {
  --teal-deep:#8B6F47; --teal:#B89773; --teal-light:#D4B896; --teal-mist:#EBDDC8;
  --teal-whisper:#F6EFE3; --rose-mist:#F2E5D1; --blush:#A8835F;
  --white:#fff; --cream:#FDF9F2; --off-white:#FCF8F1;
  --gray-100:#F1ECDF; --gray-200:#E6DCC7; --gray-300:#CEC1A4;
  --gray-500:#7B6D55; --gray-600:#544833; --gray-700:#3B3222; --gray-800:#251E13;
  --font-display:'Fraunces',Georgia,serif;
  --font-body:'Helvetica Neue',Helvetica,Arial,sans-serif;
  --shadow-md:0 4px 16px rgba(0,0,0,.06),0 2px 4px rgba(0,0,0,.03);
  --shadow-lg:0 12px 40px rgba(0,0,0,.08),0 4px 12px rgba(0,0,0,.04);
  --radius:18px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-body); background:var(--cream); color:var(--gray-600); line-height:1.7; -webkit-font-smoothing:antialiased; }
a { color:var(--teal-deep); }
img, video { max-width:100%; display:block; }
.container { max-width:1080px; margin:0 auto; padding:0 24px; }
.narrow { max-width:820px; }

/* Skip-Link */
.skip-link { position:absolute; left:12px; top:-60px; z-index:2000; background:var(--teal-deep); color:#fff; padding:10px 18px; border-radius:8px; font-size:14px; text-decoration:none; transition:top .2s; }
.skip-link:focus { top:12px; }
:focus-visible { outline:2px solid var(--teal-deep); outline-offset:3px; border-radius:4px; }

/* Header */
.site-header { position:sticky; top:0; z-index:100; background:rgba(253,249,242,.9); backdrop-filter:blur(10px); border-bottom:1px solid var(--gray-200); }
.site-header .container { display:flex; align-items:center; justify-content:space-between; height:68px; }
.brand { display:inline-flex; align-items:center; gap:12px; text-decoration:none; color:var(--gray-800); }
.brand img { width:34px; height:34px; object-fit:contain; }
.brand-eyebrow { display:block; font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--gray-500); }
.brand-name { font-family:var(--font-display); font-size:18px; font-weight:500; }
.header-cta { display:inline-flex; gap:10px; }

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 24px; border-radius:999px; font-size:15px; font-weight:500; text-decoration:none; border:none; cursor:pointer; transition:transform .2s, box-shadow .2s, background .2s; }
.btn--primary { background:linear-gradient(135deg,var(--teal) 0%,var(--teal-light) 60%,var(--blush) 100%); color:#fff; box-shadow:var(--shadow-md); }
.btn--primary:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn--ghost { background:rgba(255,255,255,.14); color:#fff; border:1px solid rgba(255,255,255,.5); }
.btn--ghost:hover { background:rgba(255,255,255,.24); }
.btn--outline { background:transparent; color:var(--teal-deep); border:1.5px solid var(--teal); }
.btn--outline:hover { background:var(--teal-whisper); }
@media (max-width:640px){ .header-cta .btn span{ display:none; } .header-cta .btn{ padding:12px 16px; } .brand-eyebrow{ display:none; } }

/* Hero */
.thero { position:relative; min-height:clamp(420px,62vh,600px); display:flex; align-items:flex-end; overflow:hidden; color:#fff; }
.thero__media { position:absolute; inset:0; z-index:0; }
.thero__media img, .thero__media video { width:100%; height:100%; object-fit:cover; }
.thero__scrim { position:absolute; inset:0; z-index:1; background:linear-gradient(to top,rgba(20,15,8,.72) 0%,rgba(20,15,8,.28) 45%,rgba(20,15,8,.12) 100%); }
.thero__inner { position:relative; z-index:2; padding:48px 0 56px; width:100%; }
.thero__eyebrow { font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.85); margin-bottom:14px; }
.thero__title { font-family:var(--font-display); font-weight:420; font-size:clamp(32px,5.2vw,56px); line-height:1.05; color:#fff; margin-bottom:16px; }
.thero__title em { font-style:italic; }
.thero__lead { font-size:clamp(16px,1.5vw,19px); max-width:620px; color:rgba(255,255,255,.94); margin-bottom:26px; }
.thero__actions { display:flex; flex-wrap:wrap; gap:14px; }

/* Breadcrumb */
.crumbs { font-size:13px; color:var(--gray-500); padding:16px 0 0; }
.crumbs a { color:var(--gray-500); text-decoration:none; }
.crumbs a:hover { color:var(--teal-deep); }

/* Sections */
section.block { padding:clamp(48px,7vw,84px) 0; }
.eyebrow { display:block; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--teal-deep); font-weight:600; margin-bottom:14px; }
h2.heading { font-family:var(--font-display); font-weight:460; font-size:clamp(26px,3.4vw,40px); line-height:1.12; color:var(--gray-800); margin-bottom:18px; }
h2.heading em { font-style:italic; }
.block p { font-size:17px; margin-bottom:16px; }
.lead { font-size:clamp(18px,2vw,21px); color:var(--gray-700); }

/* Feature / step grid */
.grid { display:grid; gap:22px; margin-top:32px; }
.grid--3 { grid-template-columns:repeat(3,1fr); }
.grid--2 { grid-template-columns:repeat(2,1fr); }
.card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius); padding:26px 24px; box-shadow:var(--shadow-md); }
.card h3 { font-family:var(--font-display); font-size:20px; font-weight:500; color:var(--gray-800); margin-bottom:8px; }
.card p { font-size:15px; margin:0; }
.step-num { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background:var(--teal-whisper); color:var(--teal-deep); font-family:var(--font-display); font-weight:600; margin-bottom:14px; }
.tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.tag { background:var(--teal-whisper); color:var(--teal-deep); border-radius:999px; padding:8px 16px; font-size:14px; }
@media (max-width:860px){ .grid--3,.grid--2{ grid-template-columns:1fr; } }

/* Video block */
.video-band { background:var(--teal-whisper); }
.video-wrap { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); background:#000; aspect-ratio:16/9; }
.video-wrap video { width:100%; height:100%; object-fit:cover; }
.video-note { font-size:13px; color:var(--gray-500); margin-top:12px; text-align:center; }

/* Info / facts row */
.facts { display:flex; flex-wrap:wrap; gap:14px; margin-top:26px; }
.fact { background:var(--white); border:1px solid var(--gray-200); border-radius:14px; padding:16px 22px; }
.fact strong { display:block; font-family:var(--font-display); font-size:22px; color:var(--gray-800); }
.fact span { font-size:13px; color:var(--gray-500); }

/* FAQ */
.faq details { border-bottom:1px solid var(--gray-200); padding:18px 0; }
.faq summary { font-family:var(--font-display); font-size:19px; color:var(--gray-800); cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:16px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:'+'; color:var(--teal-deep); font-size:24px; line-height:1; }
.faq details[open] summary::after { content:'–'; }
.faq details p { margin-top:12px; font-size:16px; }

/* CTA band */
.cta-band { background:linear-gradient(135deg,var(--teal-deep) 0%,var(--blush) 100%); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color:rgba(255,255,255,.9); max-width:560px; margin:0 auto 26px; }
.cta-band .btn--primary { background:#fff; color:var(--teal-deep); }
.cta-band .btn--outline { color:#fff; border-color:rgba(255,255,255,.6); }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-contact { margin-top:24px; font-size:14px; color:rgba(255,255,255,.85); }
.cta-contact a { color:#fff; }

/* Disclaimer */
.disclaimer { background:var(--teal-whisper); border:1px solid var(--gray-200); border-radius:14px; padding:16px 20px; font-size:13px; color:var(--gray-500); margin-top:28px; }

/* Footer */
.site-footer { background:var(--gray-800); color:rgba(255,255,255,.7); padding:40px 0; font-size:14px; }
.site-footer .container { display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; align-items:center; }
.site-footer a { color:rgba(255,255,255,.85); text-decoration:none; }
.site-footer a:hover { color:#fff; }
.other-treatments { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.other-treatments a { background:var(--white); border:1px solid var(--gray-200); border-radius:999px; padding:9px 18px; font-size:14px; text-decoration:none; color:var(--gray-700); }
.other-treatments a:hover { background:var(--teal-whisper); color:var(--teal-deep); }

@media (prefers-reduced-motion:reduce){ *{ animation:none!important; scroll-behavior:auto!important; } }
