/* ─── Seidenhaut · Behandlungs-Unterseiten ───────────────────────── */
:root{
  --gold:#C9A84C; --gold-light:#E2C67A; --gold-pale:#F5E6C0;
  --bg:#1E1A15; --bg-card:#29231B; --bg-card2:#2E271E;
  --text:#F0EAE0; --text-muted:#B8AD9C; --border:rgba(201,168,76,0.22);
  --radius:1rem;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Montserrat',sans-serif;background:var(--bg);color:var(--text);
  line-height:1.8;overflow-x:hidden;
  background:
    radial-gradient(50% 40% at 12% 4%,rgba(201,168,76,0.08),transparent 70%),
    radial-gradient(45% 45% at 90% 96%,rgba(201,168,76,0.06),transparent 70%),
    linear-gradient(180deg,#1E1A15,#15110d);
  background-attachment:fixed;
}
h1,h2,h3{font-family:'Cormorant Garamond',serif;line-height:1.2;letter-spacing:.01em}
a{color:inherit}
img{max-width:100%;display:block}

/* Container */
.wrap{max-width:1000px;margin:0 auto;padding:0 1.5rem}

/* Header */
.sub-header{
  position:sticky;top:0;z-index:50;
  background:rgba(20,17,13,0.82);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.sub-header .bar{max-width:1100px;margin:0 auto;padding:.7rem 1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.sub-logo{display:flex;align-items:center;gap:.65rem;text-decoration:none;flex-shrink:0}
.sub-logo-mark{width:38px;height:38px;border-radius:50%;background:url('logo.png') 50% 33%/205% no-repeat;border:1px solid var(--border)}
.sub-logo img.wm{height:15px;width:auto}
.sub-cta{
  background:linear-gradient(135deg,#b8902f,var(--gold) 45%,var(--gold-light));color:#0A0A0A;
  text-decoration:none;padding:.6rem 1.3rem;border-radius:2rem;font-size:.72rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;white-space:nowrap;transition:transform .25s,box-shadow .25s;
}
.sub-cta:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(201,168,76,.35)}
.back-link{color:var(--text-muted);text-decoration:none;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;transition:color .25s;display:inline-flex;align-items:center;gap:.4rem}
.back-link:hover{color:var(--gold)}

/* Breadcrumb */
.crumb{font-size:.78rem;color:var(--text-muted);letter-spacing:.05em;margin:1.5rem 0 .5rem}
.crumb a{color:var(--text-muted);text-decoration:none}
.crumb a:hover{color:var(--gold)}
.crumb span{color:var(--gold)}

/* Hero/Banner */
/* Split-Layout: Text links, Foto (hochkant, voll sichtbar) rechts */
.b-hero{display:grid;grid-template-columns:1fr minmax(280px,46%);align-items:stretch;
  border-radius:1.4rem;overflow:hidden;margin-top:1rem;border:1px solid var(--border);
  background:linear-gradient(180deg,#ffffff,#FBF6EC);box-shadow:0 16px 40px rgba(120,100,60,.10)}
.b-hero img{grid-column:2;grid-row:1;width:100%;height:100%;min-height:460px;max-height:620px;object-fit:cover;object-position:center;display:block}
.b-hero .b-hero-text{grid-column:1;grid-row:1;position:static;display:flex;flex-direction:column;justify-content:center;padding:clamp(1.8rem,4vw,3.4rem)}
.b-tag{display:inline-block;width:fit-content;font-size:.68rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);background:rgba(201,168,76,.12);border:1px solid var(--border);padding:.35rem .9rem;border-radius:2rem;margin-bottom:1rem}
.b-hero h1{font-size:clamp(2rem,4vw,3.1rem);font-weight:600;color:var(--text)}
.b-hero .lead{margin-top:.8rem;color:var(--text-muted);font-size:clamp(.95rem,2vw,1.1rem);max-width:520px}
@media(max-width:760px){
  .b-hero{grid-template-columns:1fr}
  .b-hero img{grid-column:1;grid-row:1;min-height:0;height:auto;max-height:none;aspect-ratio:4/5}
  .b-hero .b-hero-text{grid-column:1;grid-row:2;padding:2rem 1.6rem 2.6rem}
}

/* Sections */
.section{padding:3.5rem 0 0}
.eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.6rem}
.section h2{font-size:clamp(1.8rem,3.5vw,2.6rem);color:var(--text);margin-bottom:.4rem}
.section p{color:var(--text-muted);margin-bottom:1rem;max-width:760px}
.section p strong{color:var(--text)}

/* Info-Grid (Dauer / Fakten) */
.facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:1rem;margin-top:1rem}
.fact{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.4rem}
.fact .label{font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.fact .value{font-family:'Cormorant Garamond',serif;font-size:1.5rem;color:#fff;line-height:1.25}

/* Listen mit Häkchen */
.checklist{list-style:none;display:flex;flex-direction:column;gap:.85rem;margin-top:1rem}
.checklist li{display:flex;gap:.85rem;align-items:flex-start;color:var(--text-muted)}
.checklist li::before{content:'';flex-shrink:0;width:22px;height:22px;margin-top:2px;border-radius:50%;background:rgba(201,168,76,.15);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:13px}
.checklist li strong{color:var(--text);font-weight:600}

/* Ablauf-Schritte */
.steps{display:flex;flex-direction:column;gap:1rem;margin-top:1.2rem;counter-reset:step}
.step{display:flex;gap:1.1rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.3rem 1.5rem}
.step::before{counter-increment:step;content:counter(step,decimal-leading-zero);font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--gold);flex-shrink:0;min-width:2rem}
.step h3{font-size:1.25rem;color:#fff;margin-bottom:.25rem;font-style:italic}
.step p{color:var(--text-muted);margin:0;font-size:.92rem}

/* Hinweis-Box */
.note{background:rgba(201,168,76,.06);border:1px solid var(--border);border-left:3px solid var(--gold);border-radius:.8rem;padding:1.3rem 1.5rem;margin-top:1.2rem}
.note .label{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:.6rem;font-weight:600}

/* FAQ */
.faq{margin-top:1.2rem;display:flex;flex-direction:column;gap:.7rem}
.faq details{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.faq summary{cursor:pointer;list-style:none;padding:1.1rem 1.4rem;font-weight:600;color:var(--text);display:flex;align-items:center;justify-content:space-between;gap:1rem;transition:color .25s}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+';font-family:'Cormorant Garamond',serif;font-size:1.6rem;color:var(--gold);transition:transform .3s}
.faq details[open] summary{color:var(--gold)}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq .answer{padding:0 1.4rem 1.2rem;color:var(--text-muted);font-size:.92rem}

/* CTA */
.cta{margin:4rem 0 2rem;text-align:center;background:
  radial-gradient(60% 80% at 50% 0%,rgba(201,168,76,.12),transparent 70%),var(--bg-card);
  border:1px solid var(--border);border-radius:1.4rem;padding:clamp(2.5rem,6vw,4rem) 1.5rem}
.cta h2{font-size:clamp(1.8rem,4vw,2.8rem);color:#fff;margin-bottom:.6rem}
.cta p{color:var(--text-muted);max-width:480px;margin:0 auto 1.8rem}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn-gold{background:linear-gradient(135deg,#b8902f,var(--gold) 45%,var(--gold-light));color:#0A0A0A;text-decoration:none;
  padding:.9rem 2rem;border-radius:3rem;font-size:.85rem;font-weight:600;letter-spacing:.08em;display:inline-flex;align-items:center;gap:.5rem;transition:transform .25s,box-shadow .25s}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(201,168,76,.38)}
.btn-line{border:1px solid var(--border);color:var(--text);text-decoration:none;padding:.9rem 2rem;border-radius:3rem;font-size:.85rem;font-weight:500;transition:border-color .25s,color .25s,transform .25s}
.btn-line:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-3px)}

/* Verwandte Behandlungen */
.related{margin-top:3rem}
.related-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:.8rem;margin-top:1rem}
.related-grid a{background:var(--bg-card);border:1px solid var(--border);border-radius:.8rem;padding:1rem 1.2rem;text-decoration:none;color:var(--text-muted);font-size:.9rem;font-style:italic;font-family:'Cormorant Garamond',serif;transition:border-color .25s,color .25s,transform .25s}
.related-grid a:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px)}

/* Footer */
.sub-footer{border-top:1px solid var(--border);margin-top:4rem;padding:2.5rem 1.5rem;text-align:center;color:var(--text-muted);font-size:.82rem;background:#15110d}
.sub-footer a{color:var(--gold);text-decoration:none}
.sub-footer .legal{margin-top:.6rem;display:flex;gap:1.2rem;justify-content:center;flex-wrap:wrap}
.sub-footer .legal a{color:var(--text-muted)}
.sub-footer .legal a:hover{color:var(--gold)}

@media (prefers-reduced-motion:reduce){*{transition:none!important}}

/* ── Navigation im Sub-Header (alle Unterseiten) – Desktop inline, Mobil Hamburger ── */
.sub-header .bar{position:relative}
.sub-toggle{display:none}
.sub-burger{display:none}
.sub-nav{display:flex;align-items:center;gap:1.7rem;margin-left:auto}
.sub-nav a{color:var(--text);text-decoration:none;font-size:.74rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;white-space:nowrap;transition:color .25s}
.sub-nav a:hover{color:var(--gold)}
.sub-cta{margin-left:1.6rem}
@media(max-width:860px){
  .sub-burger{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:4px;
    width:40px;height:40px;cursor:pointer;border:1px solid var(--border);border-radius:11px;
    background:rgba(255,255,255,.55);margin-left:auto;flex-shrink:0}
  .sub-burger span{display:block;width:18px;height:2px;background:var(--text);border-radius:2px;transition:.25s}
  .sub-toggle:checked ~ .sub-burger span:nth-child(1){transform:translateY(6px) rotate(45deg)}
  .sub-toggle:checked ~ .sub-burger span:nth-child(2){opacity:0}
  .sub-toggle:checked ~ .sub-burger span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .sub-nav{position:absolute;top:calc(100% + .6rem);right:1rem;left:auto;flex-direction:column;align-items:stretch;
    gap:.15rem;margin:0;background:#FBF7F0;border:1px solid var(--border);border-radius:1rem;padding:.5rem;
    min-width:210px;box-shadow:0 18px 44px rgba(120,100,60,.20);display:none;z-index:60}
  .sub-toggle:checked ~ .sub-nav{display:flex}
  .sub-nav a{padding:.8rem 1rem;border-radius:.6rem;font-size:.78rem}
  .sub-nav a:hover{background:rgba(184,144,47,.12)}
  .sub-cta{margin-left:.6rem;padding:.55rem .95rem;font-size:.64rem}
}
