/* ==========================================================
   AETERNUM Medical Aesthetics — Apple-Stil in Gold
   Design-Tokens aus "Aeternum Website.dc.html"
   ========================================================== */
:root {
  --bg: #fdfcfa;
  --bg-alt: #f6f3ee;
  --ink: #0f0e0c;
  --ink-60: rgba(15,14,12,.6);
  --ink-55: rgba(15,14,12,.55);
  --gold: #a8873f;
  --gold-light: #c9a86a;
  --hair: rgba(15,14,12,.12);
  --hair-soft: rgba(15,14,12,.08);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color .5s var(--ease), opacity .5s var(--ease); }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
.serif { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; line-height: 1.12; color: var(--ink); }
.wrap { max-width: 1240px; margin: 0 auto; padding-inline: 40px; }
@media (max-width: 720px) { .wrap { padding-inline: 22px; } }

/* ---------- labels & buttons ---------- */
.label { display: flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.label::before { content: ""; width: 36px; height: 1px; background: var(--gold-light); flex: none; }
.label.centered { justify-content: center; }
.label.centered::before { display: none; }

.btn-gold {
  display: inline-block; color: var(--ink) !important; background: var(--gold-light);
  padding: 16px 38px; border-radius: 100px; font-size: 13px; letter-spacing: .14em;
  font-weight: 500; text-transform: uppercase; white-space: nowrap;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.btn-gold:hover { background: #d4b67c; box-shadow: 0 16px 34px -14px rgba(169,135,63,.55); transform: translateY(-2px); }
.btn-gold:active { transform: scale(.98); }
.btn-dark {
  display: inline-block; color: var(--bg) !important; background: var(--ink);
  padding: 12px 26px; border-radius: 100px; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; white-space: nowrap;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.btn-dark:hover { opacity: .85; transform: translateY(-2px); }
.link-line {
  color: var(--ink) !important; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  padding-bottom: 6px; border-bottom: 1px solid var(--gold-light);
  transition: border-color .5s var(--ease), opacity .5s var(--ease);
}
.link-line:hover { opacity: .65; }

/* ---------- nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253,252,250,.82);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--hair-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 22px; gap: 24px; }
.nav-left, .nav-right { display: flex; gap: 36px; align-items: center; flex: 1; }
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a:not(.btn-dark) {
  font-size: 13px; letter-spacing: .14em; color: rgba(15,14,12,.7); text-transform: uppercase;
  position: relative; white-space: nowrap;
}
.nav-left a::after, .nav-right a:not(.btn-dark)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px;
  background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.nav-left a:hover::after, .nav-right a:not(.btn-dark):hover::after { transform: scaleX(1); }
.nav-left a:hover, .nav-right a:not(.btn-dark):hover { color: var(--ink); }
.nav-brand {
  font-family: "Cormorant Garamond", serif; font-size: 24px; letter-spacing: .32em;
  color: var(--ink) !important; font-weight: 500; padding-left: .32em; white-space: nowrap;
}

.burger { display: none; position: relative; width: 40px; height: 40px; flex: none; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--ink); transition: transform .6s var(--ease); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 24px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: rgba(253,252,250,.92);
  backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px;
  opacity: 0; pointer-events: none; transition: opacity .6s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: "Cormorant Garamond", serif; font-size: 30px; color: var(--ink);
  opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: .07s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .13s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .19s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .25s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: .31s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: .37s; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- hero ---------- */
.hero-grid {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  gap: 64px; padding: 84px 0 100px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 30px; }
.hero-copy h1 { font-size: clamp(46px, 6vw, 76px); line-height: 1.06; }
.hero-copy h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 16px; line-height: 1.7; color: var(--ink-60); max-width: 460px; }
.hero-ctas { display: flex; gap: 18px; align-items: center; margin-top: 6px; flex-wrap: wrap; }
.hero-photo { width: 100%; height: 640px; object-fit: cover; border-radius: 6px; }
.hero-rating { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-60); letter-spacing: .06em; }
.hero-rating .stars { color: var(--gold-light); letter-spacing: .18em; font-size: 15px; }
.hero-rating strong { color: var(--ink); }

/* ---------- section: behandlungen list ---------- */
.sec-alt { background: var(--bg-alt); }
.sec-pad { padding: 100px 0; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 24px; flex-wrap: wrap; }
.sec-head-col { display: flex; flex-direction: column; gap: 16px; }
.sec-title { font-size: clamp(34px, 4.4vw, 50px); font-weight: 400; }

.t-row {
  display: grid; grid-template-columns: 80px 1.1fr 1.3fr auto auto; gap: 32px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--hair); color: inherit;
  transition: background .5s var(--ease), padding-left .5s var(--ease);
}
.t-row:last-child { border-bottom: 1px solid var(--hair); }
.t-row:hover { background: rgba(255,255,255,.6); }
.t-row .t-num { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--gold); }
.t-row .t-name { font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 2.6vw, 32px); color: var(--ink); line-height: 1.15; }
.t-row .t-desc { font-size: 14px; line-height: 1.6; color: var(--ink-55); }
.t-row .t-price { font-size: 12px; letter-spacing: .1em; color: var(--ink-60); text-transform: uppercase; white-space: nowrap; }
.t-row .t-price b { display: block; font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--ink); letter-spacing: 0; font-weight: 500; }
.t-row .t-more { font-size: 13px; letter-spacing: .12em; color: var(--ink); text-transform: uppercase; white-space: nowrap; transition: transform .5s var(--ease); }
.t-row:hover .t-more { transform: translateX(6px); color: var(--gold); }

/* ---------- praxis ---------- */
.praxis-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 72px; align-items: center; padding: 110px 0; }
.praxis-photos { display: flex; gap: 24px; align-items: flex-start; }
.praxis-photos img { border-radius: 4px; object-fit: cover; }
.praxis-photos .ph-1 { width: 52%; height: 460px; }
.praxis-photos .ph-2 { width: 48%; height: 360px; margin-top: 88px; }
.praxis-copy { display: flex; flex-direction: column; gap: 26px; }
.praxis-copy h2 { font-size: clamp(34px, 4.2vw, 50px); line-height: 1.12; }
.praxis-copy p { font-size: 15px; line-height: 1.75; color: var(--ink-60); }
.hours { display: grid; gap: 8px; max-width: 340px; }
.hours div { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink-60); border-bottom: 1px solid var(--hair-soft); padding-bottom: 7px; letter-spacing: .04em; }
.hours div b { color: var(--ink); font-weight: 500; }

/* ---------- zitat ---------- */
.zitat { background: var(--bg-alt); padding: 100px 40px; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.zitat blockquote { font-family: "Cormorant Garamond", serif; font-size: clamp(26px, 3.4vw, 38px); font-style: italic; color: var(--ink); max-width: 760px; line-height: 1.4; }
.zitat .z-by { font-size: 12px; letter-spacing: .22em; color: rgba(15,14,12,.5); text-transform: uppercase; }

/* ---------- ablauf / steps ---------- */
.steps-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 56px; align-items: center; text-align: center; }
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.step { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--gold-light); padding-top: 26px; }
.step .s-num { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--gold); }
.step .s-name { font-family: "Cormorant Garamond", serif; font-size: 28px; color: var(--ink); }
.step p { font-size: 14px; line-height: 1.7; color: var(--ink-60); }

/* ---------- bewertungen ---------- */
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.rev-score { display: flex; align-items: baseline; gap: 18px; }
.rev-score .num { font-family: "Cormorant Garamond", serif; font-size: 84px; line-height: 1; color: var(--ink); }
.rev-score .stars { color: var(--gold-light); font-size: 18px; letter-spacing: .2em; }
.rev-score p { font-size: 13px; color: var(--ink-60); letter-spacing: .04em; }
.rev-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.rev { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid var(--gold-light); padding-top: 26px; }
.rev .stars { color: var(--gold-light); letter-spacing: .2em; font-size: 14px; }
.rev blockquote { font-family: "Cormorant Garamond", serif; font-size: 19px; font-style: italic; line-height: 1.5; color: var(--ink); flex: 1; }
.rev cite { font-style: normal; font-size: 12px; letter-spacing: .18em; color: var(--ink-60); text-transform: uppercase; }

/* ---------- footer dark ---------- */
.footer-dark { background: var(--ink); margin-top: 110px; }
.footer-cta { padding: 110px 40px 0; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer-claim { font-size: clamp(30px, 4vw, 44px); color: #fff; font-weight: 400; max-width: 680px; line-height: 1.25; }
.footer-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.footer-meta a { color: rgba(255,255,255,.75); }
.footer-meta a:hover { color: var(--gold-light); }
.footer-bottom { padding: 80px 40px 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); margin-top: 80px; }
.footer-addr { display: flex; flex-direction: column; gap: 8px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); text-align: left; }
.footer-brand { font-family: "Cormorant Garamond", serif; font-size: 16px; letter-spacing: .28em; color: var(--gold-light); }
.footer-links { display: flex; gap: 32px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--gold-light); }
.footer-note { padding: 0 40px 44px; font-size: 11px; line-height: 1.8; color: rgba(255,255,255,.35); max-width: 900px; }

/* ---------- subpage hero ---------- */
.sub-hero { padding: 76px 0 60px; display: flex; flex-direction: column; gap: 26px; max-width: 820px; }
.sub-hero .crumb { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-60); }
.sub-hero .crumb a { color: var(--gold); }
.sub-hero h1 { font-size: clamp(42px, 5.6vw, 68px); line-height: 1.06; }
.sub-hero h1 em { font-style: italic; color: var(--gold); }
.sub-hero .lead { font-size: 16px; line-height: 1.75; color: var(--ink-60); max-width: 620px; }

/* facts */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 90px; }
.fact { border-top: 1px solid var(--gold-light); padding-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.fact h4 { font-size: 11px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-weight: 500; font-family: "Helvetica Neue", Helvetica, sans-serif; }
.fact p { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--ink); line-height: 1.3; }

/* price rows */
.price-section { padding: 90px 0; }
.price-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,.65fr); gap: 72px; align-items: start; }
.price-side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 18px; border-top: 1px solid var(--gold-light); padding-top: 26px; }
.price-side h3 { font-size: 28px; }
.price-side p { font-size: 14px; line-height: 1.7; color: var(--ink-60); }
.price-side .mini { font-size: 11.5px; color: rgba(15,14,12,.45); line-height: 1.7; }
.pgroup-title { font-family: "Cormorant Garamond", serif; font-size: 28px; margin: 44px 0 8px; }
.pgroup-title:first-child { margin-top: 0; }
.p-row { display: flex; align-items: baseline; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--hair); }
.p-row .p-name { font-size: 14.5px; font-weight: 500; letter-spacing: .02em; }
.p-row .p-note { display: block; font-size: 12px; color: var(--ink-55); font-weight: 400; margin-top: 2px; letter-spacing: 0; }
.p-row .dots { flex: 1; border-bottom: 1px dotted rgba(15,14,12,.3); transform: translateY(-4px); min-width: 24px; }
.p-row .p-price { font-family: "Cormorant Garamond", serif; font-size: 20px; white-space: nowrap; color: var(--ink); }
.p-row .p-price small { font-family: "Helvetica Neue", Helvetica, sans-serif; font-size: 10px; letter-spacing: .14em; color: var(--ink-55); text-transform: uppercase; margin-right: 6px; }

/* faq */
.faq-wrap { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 2px; font-size: 15px; font-weight: 500; letter-spacing: .02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: "Cormorant Garamond", serif; font-size: 26px; color: var(--gold); transition: transform .5s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 2px 24px; font-size: 14px; line-height: 1.75; color: var(--ink-60); max-width: 640px; }

/* ---------- face map ---------- */
.facemap-section { background: var(--bg-alt); padding: 100px 0; }
.facemap-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 72px; align-items: center; }
.face-svg { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }
.face-svg .fl { fill: none; stroke: rgba(15,14,12,.55); stroke-width: 1.3; stroke-linecap: round; }
.face-svg .fl.thin { stroke-width: 0.9; opacity: .65; }
.zone-dot { cursor: pointer; }
.zone-dot circle.pulse { fill: rgba(201,168,106,.32); transform-origin: center; transform-box: fill-box; animation: pulse 2.6s var(--ease) infinite; }
.zone-dot circle.pin { fill: var(--gold-light); stroke: #fdfcfa; stroke-width: 2; transition: fill .4s var(--ease); }
.zone-dot:hover circle.pin, .zone-dot.active circle.pin { fill: var(--gold); }
@keyframes pulse { 0% { transform: scale(.6); opacity: .95; } 70% { transform: scale(1.8); opacity: 0; } 100% { transform: scale(1.8); opacity: 0; } }
.zone-panel { display: flex; flex-direction: column; gap: 18px; }
.zone-panel h3 { font-size: clamp(30px, 3.6vw, 42px); min-height: 1.2em; }
.zone-panel .z-desc { font-size: 15px; line-height: 1.75; color: var(--ink-60); min-height: 5.4em; max-width: 480px; }
.zone-panel .z-price { font-family: "Cormorant Garamond", serif; font-size: 34px; color: var(--ink); }
.zone-panel .z-price small { display: block; font-family: "Helvetica Neue", Helvetica, sans-serif; font-size: 11px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.zone-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.zone-chip {
  border: 1px solid var(--hair); border-radius: 100px; padding: 9px 18px; font-size: 12px;
  letter-spacing: .08em; background: rgba(253,252,250,.7); color: var(--ink);
  transition: all .45s var(--ease);
}
.zone-chip:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.zone-chip.active { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); font-weight: 500; }

/* cta strip on subpages */
.sub-cta { padding: 90px 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.sub-cta h2 { font-size: clamp(30px, 4vw, 44px); max-width: 640px; }
.sub-cta p { color: var(--ink-60); font-size: 15px; max-width: 520px; }

/* legal pages */
.legal { max-width: 760px; padding: 70px 0 90px; }
.legal h1 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 40px; }
.legal h2 { font-size: 26px; margin: 36px 0 12px; }
.legal p, .legal li { font-size: 14.5px; line-height: 1.8; color: var(--ink-60); margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal .hint { background: var(--bg-alt); border-left: 2px solid var(--gold-light); padding: 14px 18px; font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .praxis-grid, .price-grid, .facemap-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo { height: 440px; }
  .steps, .rev-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .t-row { grid-template-columns: 44px 1fr auto; }
  .t-row .t-desc { display: none; }
  .t-row .t-more { display: none; }
  .price-side { position: static; }
  .praxis-photos .ph-2 { margin-top: 44px; }
}
@media (max-width: 720px) {
  .nav-left { display: none; }
  .nav-right a:not(.btn-dark) { display: none; }
  .nav-right .btn-dark { display: none; }
  .burger { display: block; }
  .nav-inner { padding-block: 16px; }
  .hero-grid { padding: 54px 0 64px; }
  .sec-pad, .facemap-section { padding: 64px 0; }
  .praxis-grid { padding: 64px 0; }
  .facts { grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 60px; }
  .footer-cta { padding: 70px 22px 0; }
  .footer-bottom { padding: 50px 22px 30px; margin-top: 50px; }
  .footer-note { padding: 0 22px 34px; }
  .t-row { gap: 16px; padding: 22px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .zone-dot circle.pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- preis-akkordeon ---------- */
.price-acc details { border-bottom: 1px solid var(--hair); }
.price-acc details:first-of-type { border-top: 1px solid var(--hair); }
.price-acc summary {
  list-style: none; cursor: pointer; display: grid;
  grid-template-columns: 56px 1fr auto 40px; gap: 24px; align-items: center;
  padding: 26px 2px; transition: background .5s var(--ease);
}
.price-acc summary::-webkit-details-marker { display: none; }
.price-acc summary:hover { background: rgba(255,255,255,.6); }
.price-acc .a-num { font-family: "Cormorant Garamond", serif; font-size: 18px; color: var(--gold); }
.price-acc .a-name { font-family: "Cormorant Garamond", serif; font-size: clamp(22px, 2.4vw, 30px); color: var(--ink); line-height: 1.15; }
.price-acc .a-name small { display: block; font-family: "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: var(--ink-55); margin-top: 3px; letter-spacing: .02em; }
.price-acc .a-price { font-size: 11px; letter-spacing: .12em; color: var(--ink-60); text-transform: uppercase; white-space: nowrap; text-align: right; }
.price-acc .a-price b { display: block; font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--ink); letter-spacing: 0; font-weight: 500; }
.price-acc .a-icon { font-family: "Cormorant Garamond", serif; font-size: 28px; color: var(--gold); text-align: center; transition: transform .5s var(--ease); }
.price-acc details[open] .a-icon { transform: rotate(45deg); }
.price-acc .a-body { padding: 0 2px 30px; }
.price-acc .a-body .p-row:last-of-type { border-bottom: none; }
.price-acc .a-body .details-link { display: inline-block; margin-top: 18px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.price-acc .a-body .details-link:hover { color: var(--ink); }
@media (max-width: 720px) {
  .price-acc summary { grid-template-columns: 1fr auto 28px; gap: 14px; }
  .price-acc .a-num { display: none; }
}

/* ---------- cookie-consent banner ---------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 18px 40px 22px;
  background: rgba(15,14,12,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,168,106,.35);
  transform: translateY(100%); transition: transform .7s cubic-bezier(0.32,0.72,0,1);
}
.consent-banner.show { transform: translateY(0); }
.cb-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cb-text { flex: 1; min-width: 260px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.75); margin: 0; }
.cb-text a { color: #c9a86a; border-bottom: 1px solid rgba(201,168,106,.4); }
.cb-text a:hover { color: #fff; }
.cb-actions { display: flex; gap: 12px; align-items: center; }
.cb-accept {
  background: #c9a86a; color: #0f0e0c; border-radius: 100px; padding: 12px 30px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  transition: transform .5s cubic-bezier(0.32,0.72,0,1), background .5s;
}
.cb-accept:hover { background: #d4b67c; transform: translateY(-2px); }
.cb-decline {
  background: none; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px; padding: 12px 24px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  transition: color .5s, border-color .5s;
}
.cb-decline:hover { color: #fff; border-color: rgba(255,255,255,.6); }
@media (max-width: 720px) { .consent-banner { padding: 16px 22px 20px; } .cb-actions { width: 100%; } .cb-accept, .cb-decline { flex: 1; text-align: center; } }

/* ---------- nav dropdown ---------- */
.nav-drop { position: relative; }
.nav-drop > a::after { content: " ▾"; font-size: 9px; letter-spacing: 0; }
.drop-menu {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 280px;
  background: rgba(253,252,250,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15,14,12,.1); border-radius: 8px;
  box-shadow: 0 24px 60px -24px rgba(15,14,12,.25);
  padding: 14px 0; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .45s cubic-bezier(0.32,0.72,0,1), transform .45s cubic-bezier(0.32,0.72,0,1);
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.drop-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.drop-menu a {
  padding: 8px 22px; font-size: 12.5px; letter-spacing: .08em; color: rgba(15,14,12,.7);
  text-transform: none !important; white-space: nowrap;
}
.drop-menu a::after { display: none !important; }
.drop-menu a:hover { color: #0f0e0c; background: rgba(201,168,106,.12); }
.drop-menu .drop-all { margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(15,14,12,.08); color: #a8873f; font-weight: 500; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: .43s; }

/* startseite: behandlungsliste ohne preise */
.t-row.no-price { grid-template-columns: 80px 1fr 1.4fr auto; }
@media (max-width: 1000px) { .t-row.no-price { grid-template-columns: 44px 1fr auto; } .t-row.no-price .t-more { display: block; } }
@media (max-width: 720px) { .t-row.no-price { grid-template-columns: 1fr auto; } .t-row.no-price .t-num { display: none; } }

/* ---------- floating social buttons ---------- */
.float-social { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.float-social a {
  width: 54px; height: 54px; border-radius: 100px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(15,14,12,.45);
  transition: transform .5s cubic-bezier(0.32,0.72,0,1), box-shadow .5s;
}
.float-social a:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 34px -10px rgba(15,14,12,.55); }
.float-social a svg { width: 28px; height: 28px; }
.float-wa { background: #25D366; }
.float-ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
@media (max-width: 720px) { .float-social { right: 14px; bottom: 14px; } .float-social a { width: 48px; height: 48px; } }

/* ---------- google-bewertungs-badge ---------- */
.rating-badge {
  position: fixed; left: 22px; bottom: 22px; z-index: 70;
  display: flex; align-items: center; gap: 10px;
  background: rgba(15,14,12,.94); color: #fff !important;
  border: 1px solid rgba(201,168,106,.45); border-radius: 100px;
  padding: 10px 18px 10px 14px; font-size: 12.5px; letter-spacing: .04em;
  box-shadow: 0 10px 28px -8px rgba(15,14,12,.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .5s cubic-bezier(0.32,0.72,0,1), border-color .5s;
}
.rating-badge:hover { transform: translateY(-4px); border-color: #c9a86a; color: #fff !important; }
.rating-badge .rb-stars { color: #c9a86a; letter-spacing: .15em; font-size: 13px; }
.rating-badge b { font-weight: 600; }
.rating-badge .rb-g { width: 18px; height: 18px; flex: none; }
.rating-badge span.rb-sub { color: rgba(255,255,255,.6); }
@media (max-width: 720px) {
  .rating-badge { left: 12px; bottom: 12px; padding: 8px 14px 8px 11px; font-size: 11px; }
  .rating-badge span.rb-sub { display: none; }
}
