/* ==========================================================================
   Zahnmedizin Türkei – Designsystem
   Navy · Creme · Salbei · Ägäisblau · Champagner (nur Linien)
   ========================================================================== */

/* Newsreader und Inter werden lokal aus assets/fonts geladen (inc/fonts.php). */
/* Metrisch angepasste Fallbacks gegen Layoutsprünge beim Schriftwechsel */
@font-face {
  font-family: "Newsreader Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 96%;
  ascent-override: 92%;
  descent-override: 24%;
}
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
}

:root {
  --navy: #020526;
  --navy-2: #0c1245;
  --ink: #1e2733;
  --grey: #5a6472;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --line: #e3dccf;
  --sage-soft: #dde5db;
  --sage: #587660;
  --aegean: #3d6d89;
  --aegean-soft: #efe8da;
  --champagne: #bfa774;
  --gold: #b8914f;
  --gold-light: #dcbc84;
  --sea: #17798b;
  --sea-deep: #0f6272;
  --sea-light: #8fd6df;
  --sea-soft: #f4ecdd;

  --serif: "Newsreader", "Newsreader Fallback", Georgia, serif;
  --sans: "Inter", "Inter Fallback", Arial, sans-serif;

  --step--1: 0.875rem;
  --step-0: clamp(1.0625rem, 1.02rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.18rem + 0.35vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.33rem + 0.8vw, 2rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.5rem);
  --step-4: clamp(2.25rem, 1.7rem + 2.6vw, 3.75rem);

  --space-section: clamp(4.5rem, 3rem + 6vw, 8rem);
  --gutter: clamp(1rem, 0.6rem + 2vw, 2.5rem);
  --wrap: 75rem;
  --measure: 68ch;
  --radius: 6px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow: 0 1px 2px rgba(22, 38, 61, 0.05), 0 8px 24px -12px rgba(22, 38, 61, 0.12);
  --tap: 3.25rem; /* 52 px */
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 5rem; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--aegean); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 2px solid var(--aegean); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--sage-soft); color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 450; letter-spacing: -0.02em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.25; }
h4 { font-size: var(--step-0); font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--navy); }
small, .small { font-size: var(--step--1); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.measure { max-width: var(--measure); }
.section { padding-block: var(--space-section); }
.section--paper { background: var(--paper); }
.section--sage { background: var(--sage-soft); }
.section--navy { background: var(--navy); color: #e8edf2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy a { color: #cfe0ea; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--navy); color: #fff; padding: 0.75rem 1rem; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }

/* Rubrikmarke über Überschriften */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8125rem; font-weight: 550; letter-spacing: 0.06em;
  color: var(--sage); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: var(--champagne); }
.eyebrow--aegean { color: var(--aegean); }

.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink); max-width: 42ch; }
.muted { color: var(--grey); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: var(--tap); padding: 0.75rem 1.4rem;
  font: 550 1rem/1.2 var(--sans); text-decoration: none; text-align: center;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--sea); color: #fff; box-shadow: 0 6px 18px -8px rgba(23, 121, 139, 0.55); }
.btn--primary:hover { background: var(--sea-deep); color: #fff; }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--cream); color: var(--navy); }
.btn--ghost { color: var(--navy); padding-inline: 0.25rem; min-height: auto; }
.btn--ghost:hover { color: var(--aegean); }
.btn svg { width: 1.15rem; height: 1.15rem; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.textlink { font-weight: 550; color: var(--navy); text-decoration: none; display: inline-flex; gap: 0.4rem; align-items: center; min-height: 2.75rem; }
.textlink::after { color: var(--sea); content: "→"; transition: transform 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .textlink:hover::after { transform: translateX(3px); } }

/* ---------- Kopfzeile ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.94);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-weight: 500; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.75rem; color: var(--grey); margin-top: 0.15rem; white-space: nowrap; }
.nav { display: none; }
.nav ul { list-style: none; display: flex; gap: 0.25rem; margin: 0; padding: 0; }
.nav a { display: block; padding: 0.6rem 0.65rem; font-size: 0.9375rem; white-space: nowrap; color: var(--ink); text-decoration: none; border-radius: var(--radius); }
.nav a:hover, .nav .current-menu-item > a, .nav .current-page-ancestor > a { color: var(--navy); background: rgba(22, 38, 61, 0.05); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-actions .btn { min-height: 2.75rem; padding: 0.5rem 1rem; font-size: 0.9375rem; white-space: nowrap; }
.header-phone { display: none; font-size: 0.9375rem; font-weight: 550; color: var(--navy); text-decoration: none; }
.menu-toggle {
  width: 3rem; height: 3rem; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); cursor: pointer;
}
.menu-toggle svg { width: 1.25rem; height: 1.25rem; }

.mobile-menu {
  position: fixed; inset: 4.25rem 0 0; z-index: 49; background: var(--cream);
  padding: 1.5rem var(--gutter) 7rem; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 200ms ease, transform 220ms var(--ease-out), visibility 0s linear 220ms;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li a { display: flex; align-items: center; min-height: var(--tap); font-family: var(--serif); font-size: 1.375rem; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-menu .sub-menu a { font-family: var(--sans); font-size: 1rem; padding-left: 1rem; color: var(--ink); }
.mobile-menu__contact { margin-top: 2rem; display: grid; gap: 0.75rem; }

@media (min-width: 75em) {
  .nav { display: block; }
  .menu-toggle, .mobile-menu { display: none; }
}
/* Schmale Kontaktleiste über der Kopfzeile (nur Desktop) */
.topbar { display: none; background: var(--navy); color: #c9d3de; font-size: 0.8125rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 2.25rem; gap: 1rem; }
.topbar__links { display: flex; gap: 1.25rem; align-items: center; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 550; white-space: nowrap; }
.topbar a:hover { color: var(--champagne); }
.topbar svg { width: 0.95rem; height: 0.95rem; }
.topbar__wa { border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 999px; padding: 0.15rem 0.75rem; }
@media (min-width: 75em) { .topbar { display: block; } }
.nav .sub-menu { min-width: 13rem; }
.nav li { position: relative; }
.nav .menu-item-has-children > a { display: flex; align-items: center; gap: 0.35rem; }
.nav .menu-item-has-children > a::after { content: ""; width: 0.4rem; height: 0.4rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: 0.6; }
.nav .sub-menu {
  position: absolute; top: 100%; left: 0; z-index: 60; display: block; min-width: 16rem; padding: 0.5rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 160ms ease, transform 200ms var(--ease-out), visibility 0s linear 200ms;
}
.nav .sub-menu li { display: block; }
.nav .sub-menu a { padding: 0.6rem 0.75rem; white-space: nowrap; }
.nav li:hover > .sub-menu, .nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
@media (max-width: 30em) { .header-actions .btn--primary { display: none; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: var(--step--1); color: var(--grey); padding-top: 1.25rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.35rem; color: var(--line); }
.breadcrumbs a { color: var(--grey); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Hero: Bild über die volle Breite ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: min(78vh, 40rem); padding-block: clamp(3rem, 2rem + 4vw, 5rem); background: var(--navy); }
.hero__grid { position: static; display: block; }
.hero__grid > div:first-child { max-width: 40rem; }
.hero .eyebrow { color: #cfe9ec; }
.hero .eyebrow::before { background: var(--sea-light); }
.hero h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(2.25rem, 1.6rem + 2.2vw, 3.5rem); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--sea-light); }
.hero .lead { color: rgba(255, 255, 255, 0.92); max-width: 36ch; }
.hero .btn-row { margin-top: 1.75rem; }
.hero .btn--secondary { color: #fff; border-color: rgba(255, 255, 255, 0.8); background: rgba(255, 255, 255, 0.06); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero .btn--secondary:hover { background: #fff; color: var(--navy); }
.hero__media { position: absolute; inset: 0; z-index: -1; margin: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transform-origin: 35% 50%; animation: zmt-kenburns 20s ease-in-out infinite alternate; will-change: scale, translate; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 5, 38, 0.94) 0%, rgba(2, 5, 38, 0.86) 40%, rgba(2, 5, 38, 0.55) 70%, rgba(2, 5, 38, 0.35) 100%); }
.hero h1, .hero .lead { text-shadow: 0 1px 18px rgba(8, 18, 32, 0.45); }
.hero__media figcaption { position: absolute; right: var(--gutter); bottom: 1.25rem; z-index: 1; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.85); text-align: right; }
.hero__media figcaption strong { font-weight: 550; }
.hero__media figcaption strong::after { content: " · "; font-weight: 400; }
/* Variante: Text rechts, damit Personen links im Bild sichtbar bleiben */
@media (min-width: 56em) {
  .hero--right .hero__grid > div:first-child { margin-left: auto; max-width: 36rem; }
  .hero--right { background: #030728; }
  .hero--right .hero__media { right: 42%; overflow: hidden; }
  .hero--right .hero__media img { transform-origin: 40% 50%; }
  .hero--right .hero__media { -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 97%); mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 97%); }
  .hero--right .hero__media::after { background: linear-gradient(90deg, rgba(3, 7, 40, 0.08), rgba(3, 7, 40, 0.25)); }
  .hero--right .hero__media figcaption { right: auto; left: var(--gutter); text-align: left; }
}
/* Handy: Bild als eigener Streifen oben, Text darunter – beide Personen bleiben sichtbar */
@media (max-width: 55.99em) {
  .hero.hero--right { background: #030728; padding-block: 0 1.5rem; align-items: stretch; }
  .hero--right .hero__grid { display: flex; flex-direction: column; }
  .hero--right .hero__media { position: relative; inset: auto; z-index: 0; order: -1; flex: 1 1 auto; min-height: 12rem; max-height: 44svh; margin: 0 calc(-1 * var(--gutter)) 1.25rem; overflow: hidden; }
  .hero--right .hero__media img { position: absolute; inset: 0; object-position: 45% 40%; }
  .hero--right .hero__media::after { background: linear-gradient(180deg, rgba(3, 7, 40, 0) 55%, rgba(3, 7, 40, 0.85) 92%, #030728 100%); }
  .hero--right .hero__grid > div:first-child { margin-top: auto; }
}
@keyframes zmt-kenburns { from { scale: 1; } to { scale: 1.09; } }
@keyframes zmt-rise { from { opacity: 0; translate: 0 22px; } to { opacity: 1; translate: 0 0; } }
.hero__grid > div:first-child > * { animation: zmt-rise 0.9s var(--ease-out) both; }
.hero__grid > div:first-child > .eyebrow { animation-delay: 0.05s; }
.hero__grid > div:first-child > h1 { animation-delay: 0.15s; }
.hero__grid > div:first-child > .lead { animation-delay: 0.32s; }
.hero__grid > div:first-child > .btn-row { animation-delay: 0.48s; }
@media (max-width: 55.99em) {
  /* Füllt genau den sichtbaren Bereich zwischen Kopfzeile und Kontaktleiste */
  .hero { min-height: calc(100vh - 4.25rem - 4.5rem); min-height: calc(100svh - 4.25rem - 4.5rem - env(safe-area-inset-bottom)); align-items: flex-end; padding-block: 2rem 1.75rem; }
  .admin-bar .hero { min-height: calc(100svh - 4.25rem - 4.5rem - 46px); }
  .hero__media::after { background: linear-gradient(180deg, rgba(2, 5, 38, 0.25) 0%, rgba(2, 5, 38, 0.7) 38%, rgba(2, 5, 38, 0.94) 100%); }
  .hero__media figcaption { display: none; }
  .hero .eyebrow { margin-bottom: 0.6rem; }
  .hero h1 { font-size: clamp(1.85rem, 1.4rem + 2.4vw, 2.4rem); margin-bottom: 0.75rem; }
  .hero .lead { font-size: 1rem; line-height: 1.5; }
  .hero .btn-row { margin-top: 1.25rem; gap: 0.6rem; }
  .hero .btn-row .btn { flex: 1 1 100%; min-height: 3rem; }
}
@media (prefers-reduced-motion: reduce) { .hero__media img, .hero__grid > div:first-child > * { animation: none; } }

/* Seiten-Einstieg (Unterseiten) */
.page-hero { padding-block: clamp(2rem, 1rem + 3vw, 4rem) clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.page-hero__grid { display: grid; gap: 2.5rem; align-items: end; }
.page-hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 56em) { .page-hero__grid { grid-template-columns: 1.1fr 0.9fr; } }
.page-hero .facts { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2rem; }
.fact__value { font-family: var(--serif); font-size: var(--step-2); color: var(--sea); line-height: 1; font-variant-numeric: tabular-nums; }
.fact__label { font-size: var(--step--1); color: var(--grey); margin-top: 0.35rem; }

/* ---------- Vertrauensleiste ---------- */
.trust { border-block: 1px solid var(--line); background: var(--paper); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; }
.trust li { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.trust li:last-child { border-bottom: 0; }
.trust svg { width: 1.25rem; height: 1.25rem; color: var(--sea); flex: none; margin-top: 0.15rem; }
.trust strong { display: block; font-weight: 550; }
.trust span { color: var(--grey); font-size: 0.875rem; }
@media (min-width: 40em) { .trust ul { grid-template-columns: 1fr 1fr; column-gap: 2rem; } .trust li:nth-last-child(2) { border-bottom: 0; } }
@media (min-width: 64em) {
  .trust ul { grid-template-columns: repeat(4, 1fr); }
  .trust li { border-bottom: 0; padding: 1.5rem 1.25rem 1.5rem 0; }
  .trust li + li { border-left: 1px solid var(--line); padding-left: 1.25rem; }
}

/* ---------- Abschnittskopf ---------- */
.section-head { display: grid; gap: 1rem 4rem; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head h2 { margin: 0; max-width: 18ch; }
.section-head p { color: var(--grey); max-width: 46ch; margin: 0; }
@media (min-width: 56em) { .section-head--split { grid-template-columns: 1fr 1fr; align-items: end; } }

/* ---------- Behandlungen ---------- */
.treatments { display: grid; gap: 1rem; }
.treatment {
  position: relative; display: grid; grid-template-rows: auto 1fr; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.treatment__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage-soft); }
.treatment__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.treatment__body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.treatment h3 { margin: 0; }
.treatment p { color: var(--grey); font-size: 0.9688rem; margin: 0; }
.treatment__meta { margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--line); font-size: 0.8125rem; color: var(--sage); font-weight: 550; display: flex; justify-content: space-between; gap: 1rem; }
.treatment__meta span:last-child { color: var(--navy); }
@media (hover: hover) and (pointer: fine) {
  .treatment:hover { border-color: #cfc6b5; box-shadow: var(--shadow); }
  .treatment:hover .treatment__img img { transform: scale(1.02); }
}
.treatment--text .treatment__img { display: none; }
.treatment--text { grid-template-rows: 1fr; }
@media (min-width: 40em) { .treatments { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .treatments { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Ablauf / Stepper ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; }
.step { position: relative; display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem; padding-bottom: 2rem; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.125rem; color: var(--champagne);
  width: 2.75rem; height: 2.75rem; display: grid; place-items: center;
  border: 1px solid var(--champagne); border-radius: 50%; background: var(--paper);
  position: relative; z-index: 1;
}
.step::after { content: ""; position: absolute; left: 1.375rem; top: 2.75rem; bottom: 0; width: 1px; background: var(--line); }
.step:last-child { padding-bottom: 0; }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.1875rem; margin: 0.55rem 0 0.35rem; }
.step p { color: var(--grey); font-size: 0.9688rem; margin: 0; }
.step__who {
  display: inline-block; margin-top: 0.6rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.2rem 0.55rem; border-radius: 99px;
}
.who-clinic { background: var(--aegean-soft); color: var(--aegean); }
.who-care { background: var(--sage-soft); color: var(--sage); }
.who-you { background: #efe8da; color: #6d5a2f; }
@media (min-width: 64em) {
  .steps--h { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .steps--h .step { grid-template-columns: 1fr; padding-bottom: 0; }
  .steps--h .step::after { left: 2.75rem; right: -2rem; top: 1.375rem; bottom: auto; width: auto; height: 1px; }
  .steps--h .step:last-child::after { display: none; }
}

/* ---------- Rollenbox ---------- */
.roles { display: grid; gap: 1rem; }
.role { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); }
.role h3 { display: flex; align-items: center; gap: 0.6rem; }
.role ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.role li { display: grid; grid-template-columns: 1.25rem 1fr; gap: 0.6rem; font-size: 0.9688rem; }
.role li::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; margin-top: 0.55rem; justify-self: center; }
.role--clinic { border-top: 3px solid var(--aegean); }
.role--clinic li::before { background: var(--aegean); }
.role--care { border-top: 3px solid var(--sage); }
.role--care li::before { background: var(--sage); }
.role--not li::before { background: none; border: 1px solid var(--grey); }
.role--not { background: transparent; }
@media (min-width: 56em) { .roles { grid-template-columns: 1fr 1fr; } .roles--3 { grid-template-columns: 1fr 1fr 1fr; } }

.roles-note { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1.5rem; font-size: 0.9375rem; color: var(--grey); max-width: 60ch; }

/* ---------- Altarys Care ---------- */
.care { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.care__quote { font-family: var(--serif); font-size: var(--step-2); line-height: 1.3; color: var(--navy); margin: 0 0 1.5rem; font-weight: 400; }
.care__person { display: flex; align-items: center; gap: 1rem; }
.care__person img { width: 7rem; height: 7rem; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow); }
.care__person strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); display: block; }
.care__person span { display: block; font-size: 0.875rem; color: var(--grey); }
@media (min-width: 56em) { .care__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 4rem; align-items: end; } .care__intro h2 { margin: 0; } }

/* ---------- Klinik ---------- */
.clinic-grid { display: grid; gap: 1rem; }
.clinic-grid figure { margin: 0; position: relative; }
.clinic-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 4 / 3; }
.clinic-grid figcaption { font-size: 0.8125rem; color: var(--grey); margin-top: 0.5rem; }
@media (min-width: 56em) {
  .clinic-grid { grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; }
  .clinic-grid figure:first-child { grid-row: span 2; }
  .clinic-grid figure:first-child img { aspect-ratio: auto; height: calc(100% - 1.75rem); }
}
.facts-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
@media (min-width: 56em) { .facts-row { grid-template-columns: repeat(4, 1fr); } }

.team { display: grid; gap: 1rem; margin-top: 3rem; }
.doctor { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; align-items: start; padding: 1.25rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.doctor__photo { width: 4.5rem; height: 4.5rem; border-radius: 50%; object-fit: cover; background: var(--sage-soft); display: grid; place-items: center; font-family: var(--serif); color: var(--sage); font-size: 1.25rem; }
.doctor h3 { font-size: 1.125rem; margin: 0 0 0.15rem; }
.doctor__role { font-size: 0.875rem; color: var(--aegean); font-weight: 550; }
.doctor p { font-size: 0.9375rem; color: var(--grey); margin: 0.5rem 0 0; }
@media (min-width: 56em) { .team { grid-template-columns: repeat(3, 1fr); } }
.team--lead { max-width: 44rem; }
@media (min-width: 56em) { .team--lead { grid-template-columns: 1fr; } }
.team--lead .doctor { padding: 1.5rem 1.75rem; }
.team--lead .doctor h3 { font-size: 1.375rem; }

/* ---------- Didim ---------- */
.didim { display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.didim__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.didim__media figcaption { font-size: 0.8125rem; color: var(--grey); margin-top: 0.5rem; }
.didim dl { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem 1.5rem; margin: 1.75rem 0 2rem; font-size: 0.9688rem; }
.didim dt { color: var(--aegean); font-weight: 550; }
.didim dd { margin: 0; color: var(--ink); }
@media (min-width: 56em) { .didim { grid-template-columns: 1fr 1fr; } }

/* ---------- Stimmen ---------- */
.voices-empty { display: grid; gap: 1.5rem; padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); border: 1px dashed #cfc6b5; border-radius: var(--radius); }
@media (min-width: 56em) { .voices-empty { grid-template-columns: 1.4fr 1fr; align-items: center; } }

/* ---------- Wissen ---------- */
.articles { display: grid; gap: 0; border-top: 1px solid var(--line); }
.article-link { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--navy); }
.article-link h3 { font-size: 1.1875rem; margin: 0; transition: color 180ms ease; }
.article-link span { font-size: 0.8125rem; color: var(--grey); }
.article-link::after { content: "→"; color: var(--champagne); transition: transform 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .article-link:hover h3 { color: var(--aegean); } .article-link:hover::after { transform: translateX(4px); } }
@media (min-width: 56em) { .articles { grid-template-columns: 1fr 1fr; column-gap: 3rem; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
  min-height: var(--tap); padding: 1.1rem 0; font-family: var(--serif); font-size: var(--step-1); color: var(--navy); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.5rem; font-weight: 300; color: var(--sage); transition: transform 200ms var(--ease-out); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 0 1.5rem; color: var(--ink); max-width: var(--measure); }

/* ---------- Hinweise ---------- */
.notice { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.85rem; padding: 1.1rem 1.25rem; border-radius: var(--radius); background: var(--aegean-soft); font-size: 0.9375rem; color: var(--ink); }
.notice svg { width: 1.35rem; height: 1.35rem; color: var(--aegean); margin-top: 0.1rem; }
.notice--sage { background: var(--sage-soft); }
.notice--sage svg { color: var(--sage); }
.review-box { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; padding: 1rem 0; border-block: 1px solid var(--line); font-size: var(--step--1); color: var(--grey); margin: 2rem 0; }
.review-box strong { color: var(--ink); font-weight: 550; }

/* ---------- Abschluss-CTA ---------- */
.cta-final { display: grid; gap: 2.5rem; }
.cta-final h2 { color: #fff; max-width: 16ch; }
.cta-final p { color: #c9d3de; max-width: 44ch; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.contact-item {
  display: grid; grid-template-columns: 2.75rem 1fr auto; gap: 1rem; align-items: center; min-height: 4.5rem;
  padding: 0.75rem 1.1rem; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius);
  color: #fff; text-decoration: none; transition: background-color 180ms ease, border-color 180ms ease;
}
.contact-item:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.contact-item__icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.contact-item__icon svg { width: 1.2rem; height: 1.2rem; }
.contact-item strong { color: #fff; display: block; font-weight: 550; }
.contact-item span { font-size: 0.875rem; color: #aab7c5; }
.contact-item::after { content: "→"; color: var(--champagne); }
.contact-item--primary { background: #fff; border-color: #fff; color: var(--navy); }
.contact-item--primary strong { color: var(--navy); }
.contact-item--primary span { color: var(--grey); }
.contact-item--primary .contact-item__icon { background: var(--sage-soft); color: var(--sage); }
.contact-item--primary:hover { background: var(--cream); color: var(--navy); }
@media (min-width: 56em) { .cta-final { grid-template-columns: 1fr 1fr; align-items: center; } }

/* ---------- Inhalt (Editor) ---------- */
.content { max-width: var(--measure); }
.content > * + * { margin-top: 1.1em; }
.content h2 { margin-top: 2.5em; font-size: var(--step-2); }
.content h3 { margin-top: 2em; }
.content ul, .content ol { padding-left: 1.2em; }
.content li + li { margin-top: 0.4em; }
.content li::marker { color: var(--sage); }
.content table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.content th, .content td { text-align: left; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.content th { font-weight: 600; color: var(--navy); }
.content figure { margin-inline: 0; }
.content figcaption { font-size: 0.8125rem; color: var(--grey); margin-top: 0.5rem; }
.content blockquote { margin: 2em 0; padding-left: 1.25rem; border-left: 1px solid var(--champagne); font-family: var(--serif); font-size: var(--step-1); color: var(--navy); }
.layout-aside { display: grid; gap: 3rem; }
@media (min-width: 64em) { .layout-aside { grid-template-columns: minmax(0, 1fr) 20rem; gap: 5rem; } .aside-sticky { position: sticky; top: 6rem; align-self: start; } }
.aside-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.aside-card h2 { font-size: 1.375rem; }
.aside-card .btn { width: 100%; margin-top: 0.75rem; }
.related { list-style: none; padding: 0; margin: 0; }
.related a { display: block; padding: 0.7rem 0; border-bottom: 1px solid var(--line); color: var(--navy); text-decoration: none; }

/* ---------- Fußzeile ---------- */
.site-footer { background: #020526; color: #aab7c5; padding: 4rem 0 7rem; font-size: 0.9375rem; }
.site-footer a { color: #dfe6ee; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-grid h2 { font-family: var(--sans); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; color: #fff; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-brand .brand__name { color: #fff; }
.footer-legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: grid; gap: 1rem; font-size: 0.8125rem; line-height: 1.55; }
.footer-legal p { max-width: 80ch; }
.footer-brand > * + * { margin-top: 1rem; }
.footer-contact { display: grid; gap: 0.35rem; }
.btn--outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.55); min-height: 2.75rem; padding: 0.5rem 1.1rem; }
.site-footer .btn--outline-light:hover { background: #fff; color: var(--navy); text-decoration: none; }
.footer-legal__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
@media (min-width: 56em) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } .site-footer { padding-bottom: 3rem; } }
.didim__map { margin: 0; }
.didim__map svg { display: block; width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); }

/* ---------- Mobile Kontaktleiste ---------- */
.contact-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 253, 249, 0.97); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -16px rgba(22, 38, 61, 0.25);
  transition: transform 260ms var(--ease-out);
}
.contact-bar.is-hidden { transform: translateY(110%); }
.contact-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  min-height: var(--tap); border-radius: var(--radius); font-size: 0.75rem; font-weight: 550;
  color: var(--navy); text-decoration: none; border: 1px solid var(--line); background: var(--paper);
}
.contact-bar a:active { transform: scale(0.97); }
.contact-bar svg { width: 1.2rem; height: 1.2rem; }
.contact-bar .contact-bar__main { background: var(--sea); color: #fff; border-color: var(--sea); flex-direction: row; gap: 0.5rem; font-size: 0.875rem; }
@media (min-width: 56em) { .contact-bar { display: none; } }

/* ---------- Einblenden ---------- */
@media (prefers-reduced-motion: no-preference) {
  .io .reveal { opacity: 0; transform: translateY(8px); transition: opacity 500ms ease, transform 600ms var(--ease-out); }
  .io .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Druck ---------- */
@media print { .site-header, .contact-bar, .site-footer, .mobile-menu { display: none !important; } body { background: #fff; } }

/* ---------- Formulare & Assistent ---------- */
.wizard, .callback { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 0.8rem + 2vw, 2.5rem); max-width: 46rem; }
.wizard__progress { height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.wizard__progress span { display: block; height: 100%; background: var(--sage); transition: width 300ms var(--ease-out); }
.wizard__count { margin: 0.75rem 0 1.5rem; }
.wizard fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.wizard legend { padding: 0; }
.wizard legend h2 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.wizard h2:focus { outline: none; }
.wizard__nav { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap-reverse; }
.wizard__nav .btn--primary { margin-left: auto; min-width: 10rem; }
.choices { display: grid; gap: 0.5rem; margin: 1.25rem 0; }
@media (min-width: 40em) { .choices { grid-template-columns: 1fr 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; }
.choice span {
  display: flex; align-items: center; gap: 0.75rem; min-height: var(--tap); padding: 0.75rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; font-size: 0.9688rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.choice span::before { content: ""; width: 1.1rem; height: 1.1rem; border: 1.5px solid #b8b0a1; border-radius: 4px; flex: none; transition: background-color 160ms ease, border-color 160ms ease; }
.choice input:checked + span { border-color: var(--sage); background: #f3f6f2; }
.choice input:checked + span::before { background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 80% no-repeat; border-color: var(--sage); }
.choice input:focus-visible + span { outline: 2px solid var(--aegean); outline-offset: 2px; }
.fields { display: grid; gap: 1rem; margin: 1.25rem 0 0.75rem; }
@media (min-width: 40em) { .fields { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.35rem; font-size: 0.9375rem; font-weight: 550; color: var(--navy); }
.field em { font-style: normal; font-weight: 400; color: var(--grey); }
.field input, .field select, .field textarea {
  width: 100%; min-height: var(--tap); padding: 0.75rem 0.9rem; font: 400 1rem/1.4 var(--sans); color: var(--ink);
  background: #fff; border: 1px solid #cfc7b8; border-radius: var(--radius);
}
.field textarea { min-height: 6rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aegean); outline: 2px solid rgba(61, 109, 137, 0.25); outline-offset: 0; }
.wizard .field { margin-top: 1rem; }
.check { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.75rem; align-items: start; font-size: 0.875rem; line-height: 1.5; color: var(--ink); padding: 0.75rem 0; cursor: pointer; }
.check input { width: 1.25rem; height: 1.25rem; margin: 0.1rem 0 0; accent-color: var(--sage); }
.consents { border-top: 1px solid var(--line); margin-top: 1.25rem; padding-top: 0.5rem; }
.drop { border: 1.5px dashed #c6bdab; border-radius: var(--radius); padding: 1.75rem 1rem; text-align: center; background: #fff; transition: border-color 160ms ease, background-color 160ms ease; margin-top: 1.25rem; }
.drop > svg { width: 2rem; height: 2rem; color: var(--sage); margin: 0 auto 0.5rem; }
.drop.is-over { border-color: var(--sage); background: #f3f6f2; }
.drop .btn { cursor: pointer; }
@media (hover: hover) and (pointer: fine) { .drop__camera { display: none; } }
.filelist { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.5rem; }
.filelist li { display: grid; grid-template-columns: 1fr auto 2.75rem; gap: 0.25rem 0.75rem; align-items: center; padding: 0.6rem 0.4rem 0.6rem 0.9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); font-size: 0.875rem; }
.filelist__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filelist__size { color: var(--grey); }
.filelist__bar { grid-column: 1 / -1; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; display: none; }
.filelist__bar span { display: block; height: 100%; width: 0; background: var(--sage); transition: width 200ms linear; }
.is-uploading .filelist__bar { display: block; }
.filelist .is-done .filelist__bar span { width: 100% !important; }
.filelist__rm { width: 2.75rem; height: 2.75rem; border: 0; background: none; font-size: 1.4rem; color: var(--grey); cursor: pointer; border-radius: var(--radius); }
.is-uploading .filelist__rm { visibility: hidden; }
.filelist__warn { display: block !important; background: #fbf1e6 !important; border-color: #efd7b8 !important; color: #7a4a14; }
.tips { margin-top: 1.25rem; font-size: 0.9375rem; }
.tips summary { cursor: pointer; color: var(--aegean); font-weight: 550; min-height: 2.75rem; display: flex; align-items: center; }
.form-error { color: #9b2c1f; background: #fbeeec; border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.9375rem; margin-top: 1rem; }
.form-success { background: var(--sage-soft); border-radius: var(--radius); padding: 1rem; margin-top: 1rem; }
.wizard__done { text-align: left; }
.wizard__done:focus { outline: none; }
.done-mark { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--sage-soft); color: var(--sage); display: grid; place-items: center; margin-bottom: 1.25rem; }
.done-mark svg { width: 1.75rem; height: 1.75rem; }
.callback .btn { margin-top: 0.75rem; }

/* Einstieg ohne Hauptbild: Rollen-Hinweis statt leerer Fläche */
.page-hero__aside { background: var(--sage-soft); border-radius: var(--radius); padding: 1.5rem; font-size: 0.9375rem; display: grid; gap: 0.9rem; align-self: stretch; }
.page-hero__aside p { margin: 0; }
.page-hero__aside strong { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.page-hero__aside .who { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 99px; margin-bottom: 0.35rem; }
@media (max-width: 55.99em) { .page-hero__aside { display: none; } }

/* ---------- Video (Klick zum Laden) ---------- */
.video { margin: 0; }
.video__play, .video__frame { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; background: var(--navy); cursor: pointer; }
.video__play img { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; transition: opacity 200ms ease; }
.video__play:hover img { opacity: 0.6; }
.video__btn { position: absolute; left: 50%; top: 50%; width: 4.5rem; height: 4.5rem; margin: -2.25rem 0 0 -2.25rem; border-radius: 50%; background: #fff; color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform 180ms var(--ease-out); }
.video__btn svg { width: 1.9rem; height: 1.9rem; margin-left: 0.2rem; }
.video__play:hover .video__btn { transform: scale(1.06); }
.video__label { position: absolute; left: 1rem; bottom: 0.9rem; color: #fff; font-weight: 550; font-size: 0.9375rem; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }
.video figcaption { font-size: 0.8125rem; color: var(--grey); margin-top: 0.5rem; }
.lead-row { display: grid; gap: 1.5rem; margin-top: 3rem; align-items: center; }
.lead-row .team { margin-top: 0; }
@media (min-width: 56em) { .lead-row { grid-template-columns: 1fr 1.15fr; gap: 2.5rem; } }

/* Ansprechpartnerin im Seitenkopf */
.page-hero__contact { display: grid; justify-items: start; gap: 0.75rem; }
.page-hero__contact img { width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow); }
.page-hero__contact p strong { display: block; color: var(--navy); font-size: 1.0625rem; }

/* ---------- Persönliche Chat-Blase ---------- */
.chat-bubble { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 45; width: min(21rem, calc(100vw - 2rem)); display: grid; grid-template-columns: 3.75rem 1fr; gap: 0.9rem; align-items: start; padding: 1rem 1.1rem 1.1rem; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 48px -18px rgba(2, 5, 38, 0.45); opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity 320ms ease, transform 420ms var(--ease-out); }
.chat-bubble.is-open { opacity: 1; transform: none; }
.chat-bubble[hidden] { display: none; }
.chat-bubble img { width: 3.75rem; height: 3.75rem; border-radius: 50%; object-fit: cover; border: 2px solid var(--sea-soft); }
.chat-bubble strong { display: block; color: var(--navy); font-size: 0.9375rem; }
.chat-bubble p { margin: 0.2rem 0 0.75rem; font-size: 0.9063rem; line-height: 1.45; color: var(--ink); }
.chat-bubble .btn { min-height: 2.6rem; padding: 0.45rem 0.95rem; font-size: 0.875rem; }
.btn--wa { background: #1f9d57; color: #fff; }
.btn--wa:hover { background: #17824a; color: #fff; }
.chat-bubble__close { position: absolute; top: 0.35rem; right: 0.4rem; width: 2rem; height: 2rem; border: 0; background: none; color: var(--grey); font-size: 1.35rem; line-height: 1; cursor: pointer; border-radius: 50%; }
.chat-bubble__close:hover { background: var(--cream); color: var(--navy); }
@media (max-width: 55.99em) {
  .chat-bubble { right: 0.75rem; bottom: calc(5.5rem + env(safe-area-inset-bottom)); width: auto; grid-template-columns: 2.4rem auto; gap: 0.55rem; align-items: center; padding: 0.4rem 2.3rem 0.4rem 0.4rem; border-radius: 999px; box-shadow: 0 10px 30px -14px rgba(2, 5, 38, 0.45); }
  .chat-bubble img { width: 2.4rem; height: 2.4rem; border-width: 2px; }
  .chat-bubble strong, .chat-bubble p { display: none; }
  .chat-bubble .btn { min-height: 2.2rem; padding: 0.3rem 0.85rem; font-size: 0.8125rem; box-shadow: none; }
  .chat-bubble .btn svg { width: 1rem; height: 1rem; }
  .chat-bubble__close { top: 50%; transform: translateY(-50%); right: 0.2rem; width: 1.9rem; height: 1.9rem; font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) { .chat-bubble { transition: none; } }

/* ---------- Altarys Care: dunkler Abschnitt mit Reiseroute ---------- */
.care3 { background: radial-gradient(120% 90% at 85% 0%, #1d4f63 0%, var(--navy) 55%, #020526 100%); color: #d7e1ea; }
.care3 h2, .care3 h3 { color: #fff; }
.care3 .eyebrow { color: var(--sea-light); }
.care3 .eyebrow::before { background: var(--sea-light); }
.care3__top { display: grid; gap: 2.5rem; align-items: center; }
.care3__top h2 { font-size: var(--step-3); line-height: 1.15; max-width: 18ch; }
.care3__lead { font-size: var(--step-0); color: #c9d6e2; max-width: 40ch; margin-top: 1rem; }
.care3__card { background: var(--paper); color: var(--ink); border-radius: 16px; padding: 1.75rem; display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: center; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6); }
.care3__card img { width: 5.5rem; height: 5.5rem; border-radius: 50%; object-fit: cover; border: 4px solid var(--sea-soft); }
.care3__who strong { display: block; font-family: var(--serif); font-size: 1.375rem; font-weight: 500; color: var(--navy); line-height: 1.1; }
.care3__who span { display: block; font-size: 0.9375rem; color: var(--grey); }
.care3__who .care3__hours { color: var(--sea); font-weight: 550; margin-top: 0.35rem; font-size: 0.875rem; }
.care3__btns { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.care3__btns .btn { flex: 1 1 8rem; }
@media (min-width: 56em) { .care3__top { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; } }

.route { list-style: none; margin: clamp(3rem, 2rem + 3vw, 4.5rem) 0 0; padding: 0; display: grid; gap: 2.25rem; position: relative; }
.route::before { content: ""; position: absolute; left: 1.5rem; top: 1.5rem; bottom: 1.5rem; width: 2px; background: repeating-linear-gradient(180deg, var(--sea-light) 0 6px, transparent 6px 13px); opacity: 0.55; }
.route__stop { position: relative; padding-left: 4.25rem; }
.route__icon { position: absolute; left: 0; top: 0; width: 3rem; height: 3rem; border-radius: 50%; background: var(--sea); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 6px rgba(143, 214, 223, 0.15); }
.route__icon svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.route__stop h3 { font-size: 1.1875rem; margin: 0.25rem 0 0.35rem; }
.route__stop p { margin: 0; font-size: 0.9688rem; line-height: 1.55; color: #c9d6e2; max-width: 32ch; }
@media (min-width: 56em) {
  .route { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .route::before { left: 3rem; right: 3rem; top: 1.5rem; bottom: auto; width: auto; height: 2px; background: repeating-linear-gradient(90deg, var(--sea-light) 0 8px, transparent 8px 15px); }
  .route__stop { padding-left: 0; padding-top: 4.25rem; }
}
.care3__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem 2rem; margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.care3__foot p { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0; font-size: 0.9375rem; color: #aebdcc; max-width: 62ch; }
.care3__foot svg { width: 1.2rem; height: 1.2rem; flex: none; color: var(--sea-light); margin-top: 0.15rem; }
.care3 .textlink { color: #fff; }
.care3 .textlink::after { color: var(--sea-light); }

/* Kleine Handys (z. B. iPhone SE): Titelbereich kompakter, damit beide Buttons sichtbar bleiben */
@media (max-width: 55.99em) and (max-height: 740px) {
  .hero { padding-block: 1.25rem 1.25rem; }
  .hero .eyebrow { display: none; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 0.6rem; }
  .hero .lead { font-size: 0.9688rem; }
  .hero .lead__extra { display: none; }
  .hero .btn-row { margin-top: 1rem; gap: 0.5rem; }
  .hero .btn-row .btn { min-height: 2.75rem; padding-block: 0.5rem; }
}
@media (max-width: 55.99em) and (max-height: 740px) { .hero.hero--right { padding-top: 0; } .hero--right .hero__media { min-height: 10rem; max-height: 36svh; margin-bottom: 1rem; } }

/* ---------- Abschnittsfarben: mehr Abwechslung ---------- */
.section--white { background: #fff; }
.section--white .treatment { background: #f4f8f9; border-color: #e2ecee; }
.section--sea { background: linear-gradient(180deg, #eef7f8 0%, #e2f0f2 100%); }
.section--sea .eyebrow::before { background: var(--sea); }
.section--sea .eyebrow { color: var(--sea); }

/* Behandlungskarten: Türkis-Akzent und sanftes Anheben */
.treatment { transition: border-color 200ms ease, box-shadow 250ms ease, transform 250ms var(--ease-out); }
.treatment::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--sea); transform: scaleX(0); transform-origin: left; transition: transform 350ms var(--ease-out); }
.treatment__meta span:first-child { background: var(--sea-soft); color: var(--sea-deep); padding: 0.15rem 0.6rem; border-radius: 99px; }
.treatment__meta span:last-child { color: var(--sea); }
@media (hover: hover) and (pointer: fine) {
  .treatment:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(2, 5, 38, 0.35); background: #fff; }
  .treatment:hover::before { transform: scaleX(1); }
}

/* Ablauf: gefüllte Türkis-Nummern */
.section--sea .step::before { background: var(--sea); color: #fff; border-color: var(--sea); font-family: var(--sans); font-weight: 600; font-size: 1rem; box-shadow: 0 0 0 5px rgba(23, 121, 139, 0.12); }
.section--sea .step::after { background: repeating-linear-gradient(90deg, var(--sea) 0 6px, transparent 6px 12px); opacity: 0.45; }
@media (max-width: 55.99em) { .section--sea .step::after { background: repeating-linear-gradient(180deg, var(--sea) 0 6px, transparent 6px 12px); } }
.section--sea .step p { color: #4a5663; }

/* ---------- Hover-Effekte für die Kreise ---------- */
.route__icon { transition: transform 350ms var(--ease-out), box-shadow 350ms ease, background-color 250ms ease, color 250ms ease; }
.route__stop h3 { transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) {
  .route__stop:hover .route__icon { transform: scale(1.12) rotate(-6deg); background: var(--sea-light); color: var(--navy); box-shadow: 0 0 0 10px rgba(143, 214, 223, 0.16), 0 10px 28px -8px rgba(143, 214, 223, 0.5); }
  .route__stop:hover h3 { color: var(--sea-light); }
}
.section--sea .step::before { transition: transform 350ms var(--ease-out), box-shadow 350ms ease, background-color 250ms ease, color 250ms ease; }
.section--sea .step h3 { transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) {
  .section--sea .step:hover::before { transform: scale(1.14); background: #fff; color: var(--sea); box-shadow: 0 0 0 9px rgba(23, 121, 139, 0.14), 0 10px 26px -10px rgba(23, 121, 139, 0.55); }
  .section--sea .step:hover h3 { color: var(--sea); }
}
.care3__card img, .doctor__photo { transition: transform 350ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .care3__card:hover img, .doctor:hover .doctor__photo { transform: scale(1.06); } }

/* ---------- Feine Details ---------- */
/* Leiste unter dem Titelbild: Symbole in türkisen Kreisen */
.trust svg { width: 2.6rem; height: 2.6rem; padding: 0.65rem; margin-top: 0; border-radius: 50%; background: var(--sea-soft); color: var(--sea); transition: transform 300ms var(--ease-out), background-color 250ms ease, color 250ms ease; }
.trust li { align-items: center; }
@media (hover: hover) and (pointer: fine) { .trust li:hover svg { transform: scale(1.1); background: var(--sea); color: #fff; } }

/* Linie vor den Abschnittsnamen fährt beim Einblenden aus */
.io .reveal .eyebrow::before { width: 0; transition: width 700ms var(--ease-out) 200ms; }
.io .reveal.is-in .eyebrow::before { width: 1.5rem; }

/* Häufige Fragen: Plus in Türkis, Frage färbt sich beim Überfahren */
.faq summary::after { color: var(--sea); }
.faq summary { transition: color 200ms ease; }
@media (hover: hover) and (pointer: fine) { .faq summary:hover { color: var(--sea); } }
.faq details[open] summary { color: var(--sea-deep); }

/* Zahlen in der Klinik-Leiste mit feiner Türkis-Linie */
.facts-row > div { position: relative; padding-top: 0.9rem; }
.facts-row > div::before { content: ""; position: absolute; top: 0; left: 0; width: 2rem; height: 2px; background: var(--sea); border-radius: 2px; transition: width 400ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .facts-row > div:hover::before { width: 4rem; } }

/* ---------- Gold-Akzente (wie das Logo in der Klinik) ---------- */
.eyebrow::before, .section--sea .eyebrow::before, .hero .eyebrow::before, .care3 .eyebrow::before { background: var(--gold); height: 2px; }
.hero .eyebrow, .care3 .eyebrow { color: var(--gold-light); }
.hero h1 em { color: var(--gold-light); }
.facts-row > div::before { background: var(--gold); }
.fact__value { color: var(--navy); }
.topbar { border-bottom: 1px solid rgba(220, 188, 132, 0.35); }
.site-footer { border-top: 3px solid var(--gold); }
.doctor { border-left: 3px solid var(--gold); }
.team--lead .doctor__photo { background: #f4ecdd; color: var(--gold); border: 1px solid rgba(184, 145, 79, 0.4); }
.care3__card { border-top: 3px solid var(--gold); }
.route::before, .section--sea .step::after { background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 15px); opacity: 0.6; }
@media (max-width: 55.99em) {
  .route::before, .section--sea .step::after { background: repeating-linear-gradient(180deg, var(--gold) 0 8px, transparent 8px 15px); }
}
.care3__who .care3__hours { color: var(--gold); }
.faq details[open] summary { color: var(--navy); }
.faq details[open] { border-left: 2px solid var(--gold); padding-left: 1rem; margin-left: -1rem; }

/* ---------- Didim & Anreise ---------- */
.didim2 { background: radial-gradient(90% 70% at 0% 100%, #e3f0f2 0%, rgba(227, 240, 242, 0) 60%), #fff; }
.didim2__head { max-width: 42rem; }
.didim2__head p:last-child { color: var(--grey); font-size: var(--step-0); }
.didim2__grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; align-items: stretch; }
.didim2__map { margin: 0; background: #fff; border-radius: 14px; padding: 0.6rem; border-top: 3px solid var(--gold); box-shadow: 0 24px 50px -30px rgba(2, 5, 38, 0.45); transition: transform 400ms var(--ease-out), box-shadow 400ms ease; }
.didim2__map svg { display: block; width: 100%; height: auto; border-radius: 10px; }
@media (hover: hover) and (pointer: fine) { .didim2__map:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(2, 5, 38, 0.55); } }
.didim2__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; align-content: center; }
.didim2__facts li { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid #e2ecee; border-radius: 12px; padding: 1rem 1.15rem; transition: transform 300ms var(--ease-out), box-shadow 300ms ease, border-color 300ms ease; }
.didim2__facts strong { display: block; color: var(--navy); font-size: 1.0625rem; font-weight: 600; }
.didim2__facts span:not(.didim2__icon) { display: block; color: var(--grey); font-size: 0.9375rem; line-height: 1.45; }
.didim2__icon { flex: none; width: 3rem; height: 3rem; border-radius: 50%; background: var(--sea-soft); color: var(--sea); display: grid; place-items: center; transition: transform 350ms var(--ease-out), background-color 250ms ease, color 250ms ease; }
.didim2__icon svg { width: 1.4rem; height: 1.4rem; }
@media (hover: hover) and (pointer: fine) {
  .didim2__facts li:hover { transform: translateX(4px); border-color: rgba(184, 145, 79, 0.5); box-shadow: 0 14px 30px -20px rgba(2, 5, 38, 0.35); }
  .didim2__facts li:hover .didim2__icon { transform: scale(1.1) rotate(-6deg); background: var(--sea); color: #fff; }
}
.didim2__more { margin-top: 1.75rem; }
@media (min-width: 56em) { .didim2__grid { grid-template-columns: 1.25fr 1fr; gap: 2.5rem; } }

/* ---------- Unterseiten: neuer Kopfbereich ---------- */
.page-hero2 { position: relative; background: radial-gradient(110% 90% at 90% 0%, #1d4f63 0%, var(--navy) 55%, #020526 100%); color: #d7e1ea; padding-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem); overflow: hidden; }
.page-hero2::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); opacity: 0.7; }
.page-hero2 .breadcrumbs { color: #93a6b8; padding-top: 1.25rem; padding-bottom: 0.5rem; }
.page-hero2 .breadcrumbs a { color: #b9c7d4; }
.page-hero2 .breadcrumbs a:hover { color: #fff; }
.page-hero2 .breadcrumbs li + li::before { color: rgba(255, 255, 255, 0.25); }
.page-hero2__grid { display: grid; gap: 2.5rem; align-items: center; padding-top: clamp(1.5rem, 1rem + 2vw, 3rem); }
.page-hero2 .eyebrow { color: var(--gold-light); }
.page-hero2 .eyebrow::before { background: var(--gold); }
.page-hero2 h1 { color: #fff; font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem); line-height: 1.1; margin-bottom: 1rem; }
.page-hero2 .lead { color: #c9d6e2; max-width: 44ch; font-size: var(--step-0); }
.page-hero2 .facts { display: flex; flex-wrap: wrap; gap: 1.25rem 2.25rem; margin-top: 1.75rem; }
.page-hero2 .facts > div { position: relative; padding-top: 0.75rem; }
.page-hero2 .facts > div::before { content: ""; position: absolute; top: 0; left: 0; width: 1.75rem; height: 2px; background: var(--gold); }
.page-hero2 .fact__value { color: #fff; font-size: var(--step-2); }
.page-hero2 .fact__label { color: #9fb2c4; font-size: 0.8125rem; }
.page-hero2 .btn-row { margin-top: 2rem; }
.page-hero2 .btn--secondary { color: #fff; border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.05); }
.page-hero2 .btn--secondary:hover { background: #fff; color: var(--navy); }
.page-hero2__media { margin: 0; }
.page-hero2__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; border-top: 3px solid var(--gold); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6); }
.page-hero2__card { background: var(--paper); color: var(--ink); border-radius: 16px; border-top: 3px solid var(--gold); padding: 1.6rem; display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.25rem; align-items: center; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6); max-width: 26rem; justify-self: end; width: 100%; }
.page-hero2__card img { width: 5.25rem; height: 5.25rem; border-radius: 50%; object-fit: cover; border: 3px solid var(--sea-soft); }
.page-hero2__who span { display: block; font-size: 0.8125rem; color: var(--grey); }
.page-hero2__who strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.375rem; color: var(--navy); line-height: 1.2; }
.page-hero2__who em { display: block; font-style: normal; font-size: 0.8125rem; color: var(--gold); font-weight: 550; margin-top: 0.2rem; }
.page-hero2__btns { grid-column: 1 / -1; display: flex; gap: 0.6rem; }
.page-hero2__btns .btn { flex: 1; min-height: 2.75rem; padding: 0.5rem 0.9rem; font-size: 0.9375rem; }
.page-hero2__card .btn--secondary { color: var(--navy); border-color: var(--navy); background: transparent; }
.page-hero2__card .btn--secondary:hover { background: var(--navy); color: #fff; }
@media (min-width: 56em) { .page-hero2__grid { grid-template-columns: 1.25fr 0.85fr; gap: 4rem; } }
@media (max-width: 55.99em) { .page-hero2__card { display: none; } .page-hero2 .btn-row .btn { flex: 1 1 100%; } .page-hero2 .breadcrumbs { display: none; } .page-hero2__grid { padding-top: 1.75rem; } }
.page-hero2--legal .page-hero2__grid { grid-template-columns: 1fr; }
/* Inhaltsbereich: weiß, Seitenleiste mit Goldrand */
.page-hero2 + .section--paper { background: #fff; }
.aside-card { border-top: 3px solid var(--gold); }
.content h2 { position: relative; padding-top: 0.9rem; }
.content h2::before { content: ""; position: absolute; top: 0; left: 0; width: 1.75rem; height: 2px; background: var(--gold); }

/* ---------- Desktop / Handy: passende Kontaktwege ---------- */
.only-mobile { display: none !important; }
@media (max-width: 55.99em), (hover: none) and (pointer: coarse) {
  .only-mobile { display: inline-flex !important; }
  div.only-mobile { display: flex !important; }
  .only-desktop { display: none !important; }
}
.contact-desk { grid-column: 1 / -1; display: grid; gap: 0.6rem; }
.contact-desk__phone { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--serif); font-size: 1.5rem; color: var(--navy); text-decoration: none; letter-spacing: 0.01em; }
.contact-desk__phone svg { width: 1.2rem; height: 1.2rem; color: var(--gold); }
.contact-desk__phone:hover { color: var(--sea); }
.contact-desk .btn { width: 100%; }
.chat-bubble__tel { display: block; margin-top: 0.45rem; font-size: 0.8125rem; color: var(--grey); text-decoration: none; }
.chat-bubble__tel:hover { color: var(--sea); }

/* ---------- Zweitbuttons mit Goldrand (passend zu den Gold-Akzenten) ---------- */
.btn--secondary { border-color: var(--gold); border-width: 1.5px; }
.btn--secondary:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--secondary svg { color: var(--gold); transition: color 180ms ease; }
.btn--secondary:hover svg { color: currentColor; }
.hero .btn--secondary, .page-hero2 .btn--secondary { border: 2px solid #c9a263; color: #fff; background: rgba(201, 162, 99, 0.08); }
.hero .btn--secondary svg, .page-hero2 .btn--secondary svg { color: var(--gold-light); }
.hero .btn--secondary:hover, .page-hero2 .btn--secondary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
.hero .btn--secondary:hover svg, .page-hero2 .btn--secondary:hover svg { color: var(--navy); }
.page-hero2__card .btn--secondary, .care3__card .btn--secondary { border-color: var(--gold); color: var(--navy); }
.page-hero2__card .btn--secondary:hover, .care3__card .btn--secondary:hover { background: var(--gold); color: #fff; }
.topbar__wa { border: 1.5px solid #c9a263; }
.topbar__wa:hover { background: var(--gold-light); color: var(--navy) !important; }
.btn--outline-light { border-color: var(--gold-light); }
.btn--outline-light:hover { background: var(--gold-light) !important; border-color: var(--gold-light); color: var(--navy) !important; }
.contact-desk__phone svg { color: var(--gold); }

/* ---------- Hauptbuttons in Gold ---------- */
.btn--primary { background: linear-gradient(180deg, #d6b172 0%, #c09a58 100%); color: var(--navy); border-color: #b8914f; box-shadow: 0 8px 20px -10px rgba(184, 145, 79, 0.7); font-weight: 600; }
.btn--primary:hover { background: linear-gradient(180deg, #caa362 0%, #a98443 100%); color: var(--navy); border-color: #a98443; }
.btn--primary svg { color: var(--navy); }
.contact-bar .contact-bar__main { background: linear-gradient(180deg, #d6b172 0%, #c09a58 100%); color: var(--navy); border-color: #b8914f; }
.contact-item--primary .contact-item__icon { background: #f4ecdd; color: var(--gold); }

/* ---------- Ablauf als Karten mit großen Gold-Ziffern (statt Kreisen) ---------- */
.steps--cards { display: grid; gap: 1rem; counter-reset: step; }
.steps--cards .step { display: block; background: #fff; border-radius: 14px; padding: 1.5rem 1.4rem 1.4rem; border: 1px solid rgba(23, 121, 139, 0.12); box-shadow: 0 14px 34px -26px rgba(2, 5, 38, 0.45); transition: transform 300ms var(--ease-out), box-shadow 300ms ease, border-color 300ms ease; }
.section--sea .steps--cards .step::before, .steps--cards .step::before { content: counter(step, decimal-leading-zero); display: block; position: static; width: auto; height: auto; border: 0; border-radius: 0; background: none; box-shadow: none; font-family: var(--serif); font-weight: 400; font-size: 2.75rem; line-height: 1; color: var(--gold); margin-bottom: 0.9rem; transform: none; }
.steps--cards .step::after, .section--sea .steps--cards .step::after { display: none; }
.steps--cards .step h3 { margin: 0 0 0.4rem; font-size: 1.1875rem; }
.steps--cards .step__who { margin-top: 0.9rem; }
@media (hover: hover) and (pointer: fine) {
  .section--sea .steps--cards .step:hover::before { transform: none; background: none; box-shadow: none; color: var(--gold); }
  .steps--cards .step:hover { transform: translateY(-5px); border-color: rgba(184, 145, 79, 0.55); box-shadow: 0 22px 44px -26px rgba(2, 5, 38, 0.5); }
}
@media (min-width: 40em) { .steps--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .steps--cards { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

/* ---------- Ablauf: redaktionelle Liste mit Gold-Ziffern ---------- */
.flow { display: grid; gap: 2.5rem; }
.flow__intro h2 { margin-bottom: 1rem; }
.flow__intro p { color: #4a5663; max-width: 34ch; }
.flow__intro .textlink { margin-top: 1rem; }
.flow__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(184, 145, 79, 0.45); }
.flow__step { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.25rem; align-items: start; padding: 1.75rem 1rem 1.75rem 0; border-bottom: 1px solid rgba(184, 145, 79, 0.45); position: relative; transition: background-color 300ms ease, padding 300ms var(--ease-out); }
.flow__num { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 3.5rem; line-height: 0.9; color: transparent; -webkit-text-stroke: 1px var(--gold); transition: color 350ms ease, transform 350ms var(--ease-out); }
.flow__body h3 { font-size: 1.375rem; margin: 0.15rem 0 0.4rem; }
.flow__body p { margin: 0; color: #4a5663; font-size: 0.9688rem; max-width: 52ch; }
.flow__body .step__who { margin-top: 0.75rem; display: inline-block; }
@media (hover: hover) and (pointer: fine) {
  .flow__step:hover { background: rgba(255, 255, 255, 0.7); padding-left: 1rem; }
  .flow__step:hover .flow__num { color: var(--gold); transform: translateX(2px); }
}
@media (min-width: 56em) {
  .flow { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; align-items: start; }
  .flow__intro { position: sticky; top: 7rem; }
}
@media (max-width: 39.99em) { .flow__step { grid-template-columns: 3.75rem 1fr; } .flow__num { font-size: 2.6rem; } }

/* ---------- Behandlungen: redaktionelle Liste ---------- */
.treatments--editorial { display: grid; gap: 0 4rem; border-top: 1px solid rgba(184, 145, 79, 0.45); }
.section--white .treatments--editorial .treatment, .treatments--editorial .treatment { display: block; background: none; border: 0; border-bottom: 1px solid rgba(184, 145, 79, 0.45); border-radius: 0; box-shadow: none; overflow: visible; transform: none; padding: 0; }
.treatments--editorial .treatment::before { display: none; }
.treatments--editorial .treatment__body { position: relative; padding: 1.75rem 4rem 1.75rem 0; gap: 0.45rem; transition: padding 300ms var(--ease-out); }
.treatments--editorial .treatment h3 { font-size: 1.5rem; transition: color 250ms ease; }
.treatments--editorial .treatment p { max-width: 44ch; }
.treatments--editorial .treatment__meta { border-top: 0; padding-top: 0.35rem; justify-content: flex-start; }
.treatments--editorial .treatment__meta span:first-child { background: none; padding: 0; color: var(--gold); font-style: italic; font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.treatments--editorial .treatment__meta span:last-child { display: none; }
.treatments--editorial .treatment__body::after { content: "→"; position: absolute; right: 0.25rem; top: 50%; width: 2.75rem; height: 2.75rem; margin-top: -1.375rem; border: 1.5px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 1.1rem; transition: background-color 250ms ease, color 250ms ease, transform 300ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .treatments--editorial .treatment:hover { transform: none; box-shadow: none; background: none; }
  .treatments--editorial .treatment:hover .treatment__body { padding-left: 0.75rem; }
  .treatments--editorial .treatment:hover h3 { color: var(--gold); }
  .treatments--editorial .treatment:hover .treatment__body::after { background: var(--gold); color: #fff; transform: translateX(4px); }
}
@media (min-width: 56em) { .treatments--editorial { grid-template-columns: 1fr 1fr; } }

/* ---------- Häufige Fragen: zweispaltig ---------- */
.faq2 { display: grid; gap: 2.5rem; }
.faq2__intro p:not(.eyebrow) { color: var(--grey); max-width: 34ch; }
.faq2__intro .btn { margin-top: 1.25rem; }
.faq2 .faq { border-top: 1px solid rgba(184, 145, 79, 0.45); max-width: none; }
.faq2 .faq details { border-bottom: 1px solid rgba(184, 145, 79, 0.45); }
.faq2 .faq summary { font-family: var(--serif); font-size: 1.25rem; }
.faq2 .faq summary::after { color: var(--gold); font-size: 1.75rem; }
.faq2 .faq details[open] { border-left: 0; padding-left: 0; margin-left: 0; }
@media (min-width: 56em) { .faq2 { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; align-items: start; } .faq2__intro { position: sticky; top: 7rem; } }

/* ---------- Klinik-Zahlen größer und edler ---------- */
.facts-row .fact__value { font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3.1rem); font-weight: 300; color: var(--navy); }
.facts-row .fact__label { font-size: 0.875rem; color: var(--grey); margin-top: 0.35rem; }
.facts-row { border-top: 0; }

/* ---------- Ablauf auf Navy ---------- */
.section--ink { background: radial-gradient(90% 80% at 0% 0%, #1b3a52 0%, var(--navy) 50%, #020526 100%); color: #c9d6e2; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .eyebrow { color: var(--gold-light); }
.section--ink .flow__intro p { color: #aebdcc; }
.section--ink .textlink { color: #fff; }
.section--ink .textlink::after { color: var(--gold-light); }
.section--ink .flow__list, .section--ink .flow__step { border-color: rgba(220, 188, 132, 0.3); }
.section--ink .flow__num { -webkit-text-stroke: 1px var(--gold-light); }
.section--ink .flow__body p { color: #b9c7d4; }
.section--ink .step__who { background: rgba(255, 255, 255, 0.08); color: #dfe7ee; }
@media (hover: hover) and (pointer: fine) {
  .section--ink .flow__step:hover { background: rgba(255, 255, 255, 0.04); }
  .section--ink .flow__step:hover .flow__num { color: var(--gold-light); }
}
/* Didim: ohne Hellblau */
.didim2 { background: radial-gradient(80% 70% at 100% 0%, rgba(220, 188, 132, 0.14) 0%, rgba(220, 188, 132, 0) 60%), #fff; }
.didim2__facts li { border-color: #ece6da; }
.didim2__icon { background: #f4ecdd; color: var(--gold); }
@media (hover: hover) and (pointer: fine) { .didim2__facts li:hover .didim2__icon { background: var(--gold); color: #fff; } }

/* ---------- Letzte Hellblau-Reste in Gold/Creme ---------- */
.trust svg { color: var(--gold); }
@media (hover: hover) and (pointer: fine) { .trust li:hover svg { background: var(--gold); color: #fff; } }
.who-clinic { color: #6b5a33; }

/* ---------- Preis-Stempel im Titelbild ---------- */
.price-stamp { position: absolute; z-index: 3; left: clamp(1.5rem, 4vw, 4rem); bottom: 2.75rem; width: 9.5rem; height: 9.5rem; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; text-decoration: none; color: var(--navy); background: radial-gradient(circle at 30% 25%, #ecd3a0 0%, #d4ae6c 45%, #b8914f 100%); box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.55), inset 0 0 0 5px rgba(255, 255, 255, 0.35), inset 0 0 0 6px rgba(2, 5, 38, 0.25); transform: rotate(-9deg); transition: transform 400ms var(--ease-out); animation: stamp-in 700ms var(--ease-out) 600ms both; }
.price-stamp__top { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.price-stamp__from { font-family: var(--serif); font-style: italic; font-size: 0.95rem; line-height: 1; margin-top: 0.2rem; }
.price-stamp__price { font-family: var(--serif); font-size: 1.85rem; font-weight: 600; line-height: 1.05; }
.price-stamp__unit { font-size: 0.72rem; font-weight: 600; }
.price-stamp:hover { color: var(--navy); transform: rotate(0deg) scale(1.05); }
@keyframes stamp-in { from { opacity: 0; transform: rotate(-30deg) scale(0.6); } to { opacity: 1; transform: rotate(-9deg) scale(1); } }
.hero__note { margin: 0.9rem 0 0; font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); max-width: 46ch; }
@media (max-width: 55.99em) {
  .price-stamp { left: auto; right: 0.9rem; bottom: auto; top: 0.9rem; width: 6.6rem; height: 6.6rem; }
  .price-stamp__top { font-size: 0.6rem; }
  .price-stamp__from { font-size: 0.75rem; }
  .price-stamp__price { font-size: 1.3rem; }
  .price-stamp__unit { font-size: 0.6rem; }
  .hero__note { font-size: 0.6875rem; }
}
@media (prefers-reduced-motion: reduce) { .price-stamp { animation: none; } }
@media (max-width: 55.99em) { .hero__note { margin-top: 0.6rem; } }
@media (max-width: 55.99em) and (max-height: 740px) { .hero--right .hero__media { max-height: 32svh; } .hero__note { font-size: 0.625rem; margin-top: 0.5rem; } }

.price-stamp__top { margin-bottom: 0.15rem; }
.price-stamp__price { font-size: 2rem; }
@media (max-width: 55.99em) { .price-stamp__price { font-size: 1.4rem; } }

/* Preis-Stempel auf dem Handy: kleiner Kreis, unten rechts im Bild */
@media (max-width: 55.99em) {
  .price-stamp { top: auto; left: auto; right: 0.85rem; bottom: 0.7rem; width: 5.4rem; height: 5.4rem; }
  .price-stamp__top { font-size: 0.5rem; margin-bottom: 0.05rem; }
  .price-stamp__price { font-size: 1.15rem; }
  .price-stamp__unit { font-size: 0.5rem; }
}

/* Chat-Blase nur auf dem Desktop – auf dem Handy gibt es die Kontaktleiste */
@media (max-width: 55.99em), (hover: none) and (pointer: coarse) { .chat-bubble { display: none !important; } }

/* ---------- Altarys Care: Ansprechpartnerin ohne Kasten, direkt auf Navy ---------- */
.care3__card { background: none; box-shadow: none; border: 0; padding: 0; color: #d7e1ea; grid-template-columns: auto 1fr; gap: 1.1rem 1.5rem; }
.care3__card img { width: 7.5rem; height: 7.5rem; border: 0; box-shadow: 0 0 0 2px var(--gold-light), 0 0 0 8px rgba(220, 188, 132, 0.12), 0 20px 40px -18px rgba(0, 0, 0, 0.7); }
.care3__who span { color: var(--gold-light); font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.care3__who strong { color: #fff; font-size: 2rem; margin: 0.2rem 0 0.1rem; }
.care3__who .care3__hours { color: #aebdcc; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.875rem; }
.care3__card .contact-desk { padding-top: 1.1rem; border-top: 1px solid rgba(220, 188, 132, 0.3); grid-template-columns: auto auto; justify-content: start; align-items: center; gap: 1.5rem; }
.care3__card .contact-desk__phone { color: #fff; font-size: 1.35rem; }
.care3__card .contact-desk__phone:hover { color: var(--gold-light); }
.care3__card .contact-desk .btn { width: auto; }
.care3__card .care3__btns .btn--secondary { color: #fff; border-color: var(--gold-light); }

/* ---------- Altarys Care: dezente Signatur statt Kasten ---------- */
.care3__card { display: flex; align-items: center; gap: 1rem; padding: 0; background: none; border: 0; box-shadow: none; max-width: 22rem; }
.care3__card img { flex: none; width: 4.5rem; height: 4.5rem; border-radius: 50%; object-fit: cover; border: 0; box-shadow: 0 0 0 2px var(--gold-light), 0 0 0 6px rgba(220, 188, 132, 0.12); }
.care3__who { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.care3__who span { color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.care3__who strong { color: #fff; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; line-height: 1.25; margin: 0; }
.care3__who .care3__hours { color: #aebdcc; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.8125rem; }
.care3__link { margin-top: 0.4rem; color: var(--gold-light); font-size: 0.875rem; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(220, 188, 132, 0.4); align-self: flex-start; padding-bottom: 1px; transition: color 200ms, border-color 200ms; }
.care3__link:hover { color: #fff; border-color: #fff; }
.care3__link.only-desktop { display: inline-block; }
@media (max-width: 55.99em) { .care3__link.only-desktop { display: none; } .care3__card { margin-top: 1.5rem; } }
.care3__who .care3__link span { display: inline; color: inherit; font-size: inherit; letter-spacing: 0; text-transform: none; font-weight: inherit; }

/* ---------- Altarys Care: Feinschliff – Signatur, Route in Navy/Gold ---------- */
.care3__top { align-items: end; }
@media (min-width: 56em) {
  .care3__card { justify-self: end; padding-left: 1.75rem; border-left: 1px solid rgba(220, 188, 132, 0.35); margin-bottom: 0.35rem; }
}
@media (max-width: 55.99em) {
  .care3__card { margin-top: 0; padding-top: 1.5rem; border-top: 1px solid rgba(220, 188, 132, 0.25); max-width: none; }
}
.route__icon { background: #0c1d30; color: var(--gold-light); box-shadow: 0 0 0 1px rgba(220, 188, 132, 0.55), 0 0 0 7px rgba(220, 188, 132, 0.07); }
.route::before { background: repeating-linear-gradient(180deg, var(--gold) 0 6px, transparent 6px 13px); opacity: 0.45; }
@media (min-width: 56em) { .route::before { background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 15px); } }
@media (max-width: 55.99em) {
  .route { gap: 1.75rem; }
  .route::before { left: 1.25rem; top: 1.25rem; bottom: 1.25rem; }
  .route__icon { width: 2.5rem; height: 2.5rem; }
  .route__icon svg { width: 1.15rem; height: 1.15rem; }
  .route__stop { padding-left: 3.5rem; }
  .route__stop h3 { margin-top: 0.1rem; }
}
@media (hover: hover) {
  .route__stop:hover .route__icon { background: var(--gold-light); color: var(--navy); box-shadow: 0 0 0 1px var(--gold-light), 0 0 0 9px rgba(220, 188, 132, 0.14), 0 10px 28px -8px rgba(220, 188, 132, 0.45); }
  .route__stop:hover h3 { color: var(--gold-light); }
}
.care3__foot { border-top-color: rgba(220, 188, 132, 0.2); }
.care3__foot svg { color: var(--gold-light); }
.care3__foot .textlink { color: var(--gold-light); }
.care3__foot .textlink:hover { color: #fff; }
.care3__card { border-radius: 0; max-width: 25rem; }

/* ---------- Ratgeber (Blog) ---------- */
.post-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; margin: 1.25rem 0 0; font-size: 0.875rem; color: #aebdcc; }
.post-meta span + span::before { content: "·"; margin-right: 1.25rem; color: var(--gold-light); }
.topic-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.topic-chips a { padding: 0.45rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.875rem; color: var(--navy); text-decoration: none; background: #fff; transition: border-color 200ms, background-color 200ms; }
.topic-chips a:hover { border-color: var(--gold); }
.topic-chips a[aria-current] { background: var(--navy); border-color: var(--navy); color: #fff; }
.post-grid { display: grid; gap: 1.5rem; }
@media (min-width: 40em) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); overflow: hidden; transition: transform 300ms var(--ease-out), box-shadow 300ms ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(22, 38, 61, 0.45); }
.post-card__media img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.post-card__cat { margin: 0 0 0.6rem; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.post-card h3 { font-size: 1.3rem; line-height: 1.3; margin: 0 0 0.6rem; }
.post-card h3 a { color: var(--navy); text-decoration: none; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card p { margin: 0; font-size: 0.9375rem; color: var(--ink-soft, #4a5566); }
.post-card__more { margin-top: auto; padding-top: 1.1rem; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.post-card:hover .post-card__more { color: var(--gold); }
.pagination .nav-links { display: flex; gap: 0.5rem; margin-top: 2.5rem; }
.pagination .page-numbers { padding: 0.4rem 0.85rem; border: 1px solid var(--line); border-radius: 6px; text-decoration: none; color: var(--navy); }
.pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.post-content h2 { margin-top: 2.5rem; }
.post-content table { width: 100%; }

/* Tabellen: ruhig, ohne Gitter, auf dem Handy horizontal scrollbar statt Seitenüberlauf */
.content .wp-block-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.content .wp-block-table table { border: 0; }
.content .wp-block-table th, .content .wp-block-table td { border: 0; border-bottom: 1px solid var(--line); padding: 0.75rem 0.9rem 0.75rem 0; }
.content .wp-block-table thead th { border-bottom: 2px solid var(--gold); font-size: 0.8125rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.content .wp-block-table td:last-child, .content .wp-block-table th:last-child { padding-right: 0; }
.content .wp-block-table a { color: var(--navy); font-weight: 600; }
@media (max-width: 40em) { .content .wp-block-table table { font-size: 0.875rem; } .content .wp-block-table table { min-width: 100%; } }
.ratgeber-hint { padding: 1rem 1.25rem; background: #fff; border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9375rem; }

/* ---------- Persönlicher Upload ---------- */
.upl { max-width: 44rem; }
.upl__list { padding-left: 1.1rem; margin: 0 0 1.5rem; }
.upl__list li { margin: 0.35rem 0; }
.upl__drop { position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; padding: 2.25rem 1rem; border: 2px dashed var(--gold); border-radius: 10px; background: #fff; text-align: center; cursor: pointer; transition: background-color 200ms, border-color 200ms; }
.upl__drop:hover, .upl__drop.is-over { background: #fbf6ec; border-color: var(--navy); }
.upl__drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upl__drop strong { font-size: 1.125rem; color: var(--navy); }
.upl__drop span { font-size: 0.8125rem; color: #5a6472; }
.upl__chosen { list-style: none; padding: 0; margin: 1rem 0; font-size: 0.9375rem; }
.upl__chosen li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.upl__consent { display: flex; gap: 0.75rem; align-items: flex-start; margin: 1.25rem 0; font-size: 0.875rem; line-height: 1.5; }
.upl__consent input { margin-top: 0.25rem; flex: none; width: 1.1rem; height: 1.1rem; accent-color: var(--navy); }
.upl__msg { margin-top: 1rem; font-size: 0.9375rem; color: var(--navy); }
.upl__done h2 { color: var(--navy); }
.upl .btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.post-meta__rev { color: var(--gold-light); font-weight: 600; }

/* ---------- Klinik-Galerie ---------- */
.clinic-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin: 1.5rem 0 2.5rem; }
.clinic-gallery figure:first-child { grid-column: 1 / -1; }
.clinic-gallery figure:first-child img { aspect-ratio: 16 / 8; }
.clinic-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: #eee; }
.clinic-gallery a { display: block; height: 100%; }
.clinic-gallery img { display: block; width: 100%; height: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 500ms var(--ease-out); }
.clinic-gallery figure:hover img { transform: scale(1.05); }
.zmt-lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: rgba(10, 18, 30, 0.92); cursor: zoom-out; padding: 1rem; }
.zmt-lightbox img { max-width: min(96vw, 1600px); max-height: 88vh; border-radius: 6px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.zmt-lightbox p { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: #d7e1ea; font-size: 0.875rem; margin: 0; }

/* Chefarzt-Karte mit Foto */
.team--lead .doctor { grid-template-columns: 1fr; padding: 0; overflow: hidden; }
.team--lead .doctor > div { padding: 1.25rem 1.5rem 1.5rem; }
.doctor__media { margin: 0; overflow: hidden; }
.doctor__img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 62% 30%; transition: transform 600ms var(--ease-out); }
.doctor:hover .doctor__img { transform: scale(1.04); }
.doctor__role { color: var(--gold); font-weight: 600; }
/* Chefarzt-Foto und Video oben bündig, gleiches Bildformat */
.lead-row { align-items: start; }
.doctor__img { aspect-ratio: 16 / 9; object-position: 60% 35%; }

/* Artikelkarte ohne Bild: bewusst gestaltet statt leer */
.post-card--text { background: radial-gradient(120% 90% at 100% 0%, #1d4f63 0%, var(--navy) 60%); border-color: var(--navy); }
.post-card--text .post-card__body { padding-top: 2.25rem; min-height: 100%; }
.post-card--text h3 a { color: #fff; }
.post-card--text p { color: #c9d6e2; }
.post-card--text .post-card__cat { color: var(--gold-light); }
.post-card--text .post-card__more { color: var(--gold-light); }

/* ---------- Ratgeber: Info-Boxen und Inhaltsverzeichnis ---------- */
.post-content > p:first-of-type { font-size: 1.0625rem; }
.box-kurz { margin: 0 0 2rem; padding: 1.5rem 1.75rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.box-kurz__t, .toc__t, .box-cta__t { margin: 0 0 0.75rem; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.box-kurz ul { margin: 0; padding: 0; list-style: none; }
.box-kurz li { position: relative; padding-left: 1.6rem; margin: 0.45rem 0; }
.box-kurz li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 0.8rem; height: 0.45rem; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.toc { margin: 2rem 0 2.5rem; padding: 1.25rem 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2 16rem; column-gap: 2rem; }
.toc li { margin: 0.3rem 0; break-inside: avoid; font-size: 0.9375rem; }
.toc a { color: var(--navy); text-decoration: none; border-bottom: 1px solid transparent; }
.toc a:hover { border-color: var(--gold); }
.post-content h2[id] { scroll-margin-top: 6rem; }
.box-tipp { margin: 2rem 0; padding: 1.1rem 1.4rem; background: #fbf6ec; border-radius: var(--radius); }
.box-tipp p { margin: 0; }
.box-tipp strong { color: var(--navy); }
.box-cta { display: grid; gap: 1rem 2rem; align-items: center; margin: 2.5rem 0; padding: 1.75rem; border-radius: 10px; color: #d7e1ea; background: radial-gradient(110% 120% at 100% 0%, #1d4f63 0%, var(--navy) 60%); }
@media (min-width: 48em) { .box-cta { grid-template-columns: 1fr auto; } }
.box-cta__t { color: var(--gold-light); font-size: 1.125rem; text-transform: none; letter-spacing: 0; font-family: var(--serif); font-weight: 500; }
.box-cta p { margin: 0; }
.box-cta .btn { white-space: nowrap; }
.box-check ul { list-style: none; margin: 0 0 1rem; padding: 1.25rem 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); columns: 2 16rem; column-gap: 2rem; }
.box-check li { position: relative; padding-left: 2rem; margin: 0.5rem 0; break-inside: avoid; font-size: 0.9375rem; }
.box-check li::before { content: ""; position: absolute; left: 0; top: 0.1rem; width: 1.1rem; height: 1.1rem; border: 1.5px solid var(--gold); border-radius: 4px; }

/* ---------- Startseite: Chefarzt ---------- */
.chief { display: grid; gap: 2rem; margin-top: 3rem; align-items: stretch; }
@media (min-width: 56em) { .chief { grid-template-columns: 0.95fr 1.05fr; gap: 3.5rem; } }
.chief__media { position: relative; margin: 0; min-height: 22rem; }
.chief__media::before { content: ""; position: absolute; inset: 1rem -1rem -1rem 1rem; border: 1.5px solid var(--gold); border-radius: 10px; z-index: 0; }
.chief__media img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; min-height: 22rem; object-fit: cover; object-position: 72% 35%; border-radius: 10px; box-shadow: 0 30px 60px -30px rgba(22, 38, 61, 0.5); }
@media (max-width: 55.99em) { .chief__media::before { inset: 0.6rem -0.6rem -0.6rem 0.6rem; } .chief__media img { aspect-ratio: 4 / 3.4; min-height: 0; } }
.chief__body { display: flex; flex-direction: column; justify-content: center; }
.chief__name { font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem); line-height: 1.1; margin: 0.25rem 0 0.35rem; }
.chief__role { margin: 0 0 1.1rem; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.chief__text { margin: 0 0 1.1rem; color: var(--ink); max-width: 52ch; }
.chief__list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.45rem; }
.chief__list li { position: relative; padding-left: 1.6rem; font-size: 0.9688rem; }
.chief__list li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 0.8rem; height: 0.45rem; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.chief__video { max-width: 34rem; }

/* Chefarzt dezent: kleines Porträt mit Goldring statt großem Foto */
.chief { align-items: center; }
@media (min-width: 56em) { .chief { grid-template-columns: 1fr 1.1fr; } }
.chief__sig { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; }
.chief__img { flex: none; width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--gold), 0 0 0 7px rgba(184, 145, 79, 0.12); }
.chief__label { margin: 0; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.chief__name { margin: 0.15rem 0 0.2rem; font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2.1rem); }
.chief__role { margin: 0; font-size: 0.9375rem; }
.chief__video { max-width: none; }

/* Chefarzt mit Porträt (Hochformat) */
@media (min-width: 56em) { .chief--photo { grid-template-columns: 0.8fr 1.2fr; align-items: center; } }
.chief--photo .chief__media { min-height: 0; max-width: 26rem; }
.chief--photo .chief__media img { aspect-ratio: 4 / 5; min-height: 0; height: auto; object-position: 50% 20%; }
@media (max-width: 55.99em) { .chief--photo .chief__media { max-width: 22rem; margin: 0 auto 0.5rem; } }
.chief--photo .chief__video { max-width: 32rem; }
.content .img-portrait { max-width: 22rem; }
.content .img-portrait img { border-radius: 10px; }

/* Altarys Care: Ansprechpartnerin mit Porträt (auf Augenhöhe mit dem Chefarzt) */
.care3__card--photo { display: block; max-width: 20rem; padding: 0; border: 0; justify-self: end; }
.care3__media { position: relative; margin: 0 0 1.5rem; }
.care3__media::before { content: ""; position: absolute; inset: 0.9rem -0.9rem -0.9rem 0.9rem; border: 1.5px solid var(--gold-light); border-radius: 10px; opacity: 0.7; }
.care3__media img { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 15%; border-radius: 10px; box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.7); }
.care3__card--photo .care3__who strong { font-size: 1.6rem; }
@media (max-width: 55.99em) { .care3__card--photo { justify-self: start; max-width: 17rem; margin-top: 1rem; padding-top: 0; border-top: 0; } }
.care3__card.care3__card--photo { display: block; }
.care3__card.care3__card--photo .care3__media img { width: 100%; height: auto; max-width: none; border: 0; border-radius: 10px; box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.7); }
.care3__top { align-items: center; }
/* Ansprechpartnerin: mittelgroß – präsent, aber zurückhaltender als der Chefarzt */
.care3__card.care3__card--photo { max-width: 15rem; }
.care3__card.care3__card--photo .care3__media img { aspect-ratio: 1 / 1; object-position: 50% 18%; }
@media (max-width: 55.99em) { .care3__card.care3__card--photo { max-width: 13rem; } }
.care3__card.care3__card--photo .care3__media img { object-position: 50% 30%; }
/* Foto näher an den Titel */
@media (min-width: 56em) {
  .care3__top { grid-template-columns: minmax(0, 34rem) auto; justify-content: start; column-gap: 4.5rem; }
  .care3__card.care3__card--photo { justify-self: start; }
}
@media (min-width: 56em) { .care3__top { grid-template-columns: minmax(0, 27rem) auto; column-gap: 3.5rem; } }
/* Ansprechpartnerin wieder dezent: kleines rundes Bild */
.care3__card .care3__avatar { flex: none; width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover; object-position: 50% 25%; box-shadow: 0 0 0 2px var(--gold-light), 0 0 0 6px rgba(220, 188, 132, 0.12); }

/* Hochformat-Titelbilder (z. B. Porträts) nicht quer beschneiden */
.page-hero2__media--portrait { justify-self: center; width: 100%; max-width: 21rem; }
.page-hero2__media--portrait img { aspect-ratio: 4 / 5 !important; height: auto !important; object-fit: cover; object-position: 50% 15%; }

/* Preise – Startseite */
.prices__grid{display:grid;gap:1.5rem;align-items:stretch}
@media (min-width:56em){.prices__grid{grid-template-columns:minmax(0,5fr) minmax(0,7fr);gap:2.5rem}}
.price-hero{display:flex;flex-direction:column;background:var(--navy);color:#e8edf2;border-radius:var(--radius);padding:clamp(1.75rem,1.2rem + 2vw,2.75rem);text-decoration:none;position:relative;overflow:hidden;border-top:3px solid var(--gold);transition:transform .25s ease,box-shadow .25s ease}
.price-hero:hover{color:#e8edf2;transform:translateY(-2px);box-shadow:0 18px 40px -22px rgba(22,38,61,.55)}
.price-hero__label{font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-light);font-weight:600}
.price-hero__value{font-family:var(--serif);font-size:clamp(3.25rem,2.4rem + 4vw,5rem);line-height:1;color:#fff;margin-top:.75rem}
.price-hero__unit{color:#b9c6d3;margin-top:.35rem}
.price-hero__list{list-style:none;padding:0;margin:1.5rem 0 0;display:grid;gap:.55rem}
.price-hero__list li{padding-left:1.5rem;position:relative}
.price-hero__list li::before{content:"";position:absolute;left:0;top:.6em;width:.7rem;height:1px;background:var(--gold)}
.price-hero__more{margin-top:auto;padding-top:1.75rem;color:var(--gold-light);font-weight:600}
.price-list{display:flex;flex-direction:column}
.price-row{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--line);color:var(--ink);text-decoration:none}
.price-row:first-child{border-top:1px solid var(--line)}
.price-row strong{color:var(--navy);white-space:nowrap;font-weight:600}
.price-row:hover span{color:var(--navy)}
.price-list__note{font-size:.875rem;color:var(--grey);margin:1.25rem 0 0}
.price-list .btn-row{margin-top:1.5rem;align-items:center;gap:1rem 1.5rem}

/* Sicherheit: Health Türkiye, Garantie, Implantate */
.assure__grid{display:grid;gap:1.25rem}
@media (min-width:56em){.assure__grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.75rem}}
.assure__item{border:1px solid var(--line);border-radius:var(--radius);padding:1.75rem 1.5rem 1.5rem;background:#fff;display:flex;flex-direction:column;align-items:flex-start}
.assure__item h3{font-size:1.2rem;margin:1.1rem 0 .5rem}
.assure__item p{color:var(--grey);margin:0;font-size:.95rem}
.assure__mark{height:6.5rem;display:flex;align-items:center}
.assure__mark .seal{width:6.5rem;height:6.5rem}
.assure__mark--logo img{height:5.25rem;width:auto;max-width:11rem;object-fit:contain}

/* Bewertungen – Karussell */
.rv{position:relative}
.rv__track{display:grid;grid-auto-flow:column;grid-auto-columns:86%;gap:1rem;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none;padding:.25rem .1rem 1rem}
.rv__track::-webkit-scrollbar{display:none}
@media (min-width:40em){.rv__track{grid-auto-columns:calc((100% - 1.25rem)/2)}}
@media (min-width:64em){.rv__track{grid-auto-columns:calc((100% - 2.5rem)/3)}}
.rv__card{scroll-snap-align:start;margin:0;background:#fff;border:1px solid var(--line);border-top:3px solid var(--gold);border-radius:var(--radius);padding:1.6rem 1.5rem 1.4rem;display:flex;flex-direction:column}
.rv__stars{color:var(--gold);letter-spacing:.15em;font-size:1.05rem}
.rv__card blockquote{margin:.9rem 0 1.25rem;flex:1}
.rv__card blockquote p{font-family:var(--serif);font-size:1.12rem;line-height:1.5;color:var(--ink);margin:0}
.rv__card figcaption{display:grid;gap:.2rem;border-top:1px solid var(--line);padding-top:.9rem}
.rv__card figcaption span{font-size:.8rem;color:var(--grey)}
.rv__nav{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:1rem}
.rv__btn{width:2.75rem;height:2.75rem;border-radius:50%;border:1px solid var(--navy);background:transparent;color:var(--navy);font-size:1.1rem;cursor:pointer;transition:background .2s,color .2s}
.rv__btn:hover{background:var(--navy);color:#fff}
.rv__dots{display:flex;gap:.45rem}
.rv__dots i{width:.5rem;height:.5rem;border-radius:50%;background:var(--line);transition:background .2s,transform .2s}
.rv__dots i.is-on{background:var(--gold);transform:scale(1.25)}
.rv__links{margin-top:1.25rem;font-size:.9rem;color:var(--grey);text-align:center}
.rv__links a{color:var(--navy)}
.assure__mark--logo img{background:#fff}

/* Siegelzeile im Trust-Streifen */
.seals{display:grid;gap:.75rem;padding:1rem 0 1.25rem;border-top:1px solid var(--line)}
@media (min-width:56em){.seals{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem;padding:1.1rem 0 1.3rem}}
.seals__item{display:flex;align-items:center;gap:.9rem;font-size:.85rem;line-height:1.35}
.seals__item span{color:var(--grey)}
.seals__item strong{display:block;color:var(--navy);font-weight:600;font-size:.9rem}
.seals__logo{height:3.1rem;width:auto;max-width:5rem;object-fit:contain;flex:none;background:#fff;border-radius:6px}
.seals__seal{width:3.1rem;height:3.1rem;flex:none}
.trust .seals__item svg{width:3.1rem;height:3.1rem;padding:0;background:none;border-radius:0;margin:0;transform:none}
.seals__badge{flex:none;width:3.1rem;height:3.1rem;border-radius:50%;border:1.5px solid var(--gold);display:grid;place-items:center;font-family:var(--serif);font-size:1rem;color:var(--navy)!important;background:#fffdf9;letter-spacing:.05em}
.seals__seal,.trust .seals__item svg{width:4.4rem;height:4.4rem}
.seals__logo{height:4rem;max-width:6.2rem}
.seals__item{gap:1rem}
.seals__seal{filter:drop-shadow(0 4px 10px rgba(22,38,61,.10))}

/* Mobil: Vertrauenspunkte 2×2, Siegel als Dreierreihe */
@media (max-width:55.99em){
  .trust ul{grid-template-columns:1fr 1fr}
  .trust li{flex-direction:column;align-items:flex-start;gap:.55rem;padding:1rem .75rem 1rem 0;font-size:.875rem}
  .trust li:nth-child(odd){border-right:1px solid var(--line)}
  .trust li:nth-child(even){padding-left:.9rem}
  .trust li:nth-last-child(-n+2){border-bottom:0}
  .trust li svg{width:2.2rem;height:2.2rem;padding:.55rem}
  .trust span{font-size:.8rem;line-height:1.4}
  .seals{grid-template-columns:repeat(3,minmax(0,1fr));gap:.5rem;padding:1.1rem 0 1.3rem;text-align:center}
  .seals__item{flex-direction:column;align-items:center;gap:.55rem}
  .seals__item > span{font-size:0;line-height:0}
  .seals__item > span strong{font-size:.74rem;line-height:1.3;font-weight:600;max-width:9rem;margin:0 auto}
  .seals__seal,.trust .seals__item svg{width:4.2rem;height:4.2rem}
  .seals__logo{height:4.2rem;width:4.2rem;max-width:none;object-fit:contain;border-radius:50%;padding:.35rem;border:1px solid var(--line);box-shadow:0 4px 10px rgba(22,38,61,.08)}
}

/* ===== Mobil-Feinschliff (Typo, Abstände, Tippflächen) ===== */
@media (max-width:55.99em){
  :root{--space-section:3.5rem}
  .section-head{margin-bottom:2rem}
  .hero__note{font-size:.78rem;line-height:1.5}
  .price-stamp__top,.price-stamp__unit{font-size:.62rem}
  .seals__item > span strong{font-size:.78rem}
  .step__who,.care3__card span{font-size:.75rem}
  /* Preise: Wert nicht quetschen */
  .price-row{font-size:1rem;gap:.75rem}
  .price-row strong{font-size:.98rem}
  /* Ratgeber: mobil nur ein Artikel */
  #ratgeber .post-grid > :nth-child(n+2){display:none}
  /* Footer: zwei Spalten, größere Tippflächen */
  .site-footer{padding-top:3rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem 1.25rem}
  .footer-grid > :first-child{grid-column:1/-1}
  .footer-grid ul{gap:0}
  .footer-grid ul a{display:inline-block;padding:.5rem 0;font-size:.95rem}
  .footer-legal{margin-top:2rem}
  .footer-legal__links a{display:inline-block;padding:.45rem 0}
  .rv__links a{display:inline-block;padding:.35rem 0}
}

/* Bewertungen mobil: eine Karte, sanfter Wechsel, dezenter */
@media (max-width:39.99em){
  .rv__track{display:block;overflow:visible;padding:0}
  .rv__card{display:none;border-top-width:1px;border-color:var(--line);background:transparent;padding:1.25rem 0 1rem;border-left:0;border-right:0;border-bottom:0;border-radius:0}
  .rv__card.is-active{display:flex;animation:rvFade .5s ease}
  .rv__card blockquote p{font-size:1.02rem;line-height:1.55}
  .rv__stars{font-size:.9rem}
  .rv__nav{justify-content:flex-start;gap:.75rem;margin-top:.5rem}
  .rv__btn{width:2.5rem;height:2.5rem;border-color:var(--line);font-size:1rem}
  .rv__links{text-align:left}
}
@keyframes rvFade{from{opacity:0}to{opacity:1}}

/* Inhaltsspalte darf nie breiter als der Bildschirm werden (breite Tabellen scrollen intern) */
.layout-aside > *{min-width:0}
@media (max-width:63.99em){.layout-aside{grid-template-columns:minmax(0,1fr)}}
.content .wp-block-table{max-width:100%;overflow-x:auto}
.hero__promise{margin:1rem 0 0;font-size:.9rem;color:var(--gold-light);letter-spacing:.01em}
@media (max-width:55.99em){.hero__promise{font-size:.82rem;line-height:1.5}}

/* ===== Akzentfarbe Bordeaux – sparsam eingesetzt ===== */
:root{--accent:#7a2e3a;--accent-deep:#5e222c;--accent-soft:#f5e9ea;--accent-light:#c98a93}
.pill-accent{display:inline-block;background:var(--accent);color:#fff;font-weight:600;font-size:.72em;letter-spacing:.06em;text-transform:uppercase;padding:.2em .6em;border-radius:999px;margin-right:.45em;vertical-align:.08em}
.hero__promise{color:#dfe6ee}
.textlink::after{color:var(--accent)}
.price-hero{position:relative}
.price-hero__badge{position:absolute;top:1.25rem;right:1.25rem;background:var(--accent);color:#fff;font-size:.72rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;padding:.3rem .65rem;border-radius:999px}
.price-stamp__tag{position:absolute;bottom:-.6rem;left:50%;transform:translateX(-50%) rotate(9deg);white-space:nowrap;background:var(--accent);color:#fff;font-size:.62rem;font-weight:700;letter-spacing:.04em;padding:.28rem .6rem;border-radius:999px;box-shadow:0 6px 14px -6px rgba(0,0,0,.45)}


.price-stamp__tag{display:none}
.pill-accent{background:var(--accent);color:#fff;box-shadow:inset 0 0 0 1px rgba(220,188,132,.55)}
.price-hero__badge{box-shadow:inset 0 0 0 1px rgba(220,188,132,.55)}
.section--ink .textlink::after,.section--navy .textlink::after,.care3 .textlink::after,.cta-final .textlink::after{color:var(--gold-light)}

/* Paket-Hinweis im Preisbereich */
.package{margin-top:2rem;display:grid;grid-template-columns:auto 1fr auto auto;align-items:center;gap:1rem 1.5rem;padding:1.25rem 1.5rem;border-radius:var(--radius);background:linear-gradient(100deg,#020526 0%,#1d3450 100%);color:#e8edf2;text-decoration:none;border-left:4px solid var(--gold);box-shadow:0 18px 40px -26px rgba(2,5,38,.7);transition:transform .25s ease,box-shadow .25s ease}
.package:hover{color:#e8edf2;transform:translateY(-2px);box-shadow:0 22px 44px -24px rgba(2,5,38,.8)}
.package__tag{background:var(--accent);color:#fff;font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.35rem .7rem;border-radius:999px;box-shadow:inset 0 0 0 1px rgba(220,188,132,.55)}
.package__main{display:grid;gap:.15rem}
.package__main strong{color:#fff;font-family:var(--serif);font-size:1.25rem;font-weight:600}
.package__main span{color:#c9d3de;font-size:.95rem}
.package__icons{display:flex;gap:.5rem}
.package__icons svg{width:1.6rem;height:1.6rem;color:var(--gold-light)}
.package__more{color:var(--gold-light);font-weight:600;white-space:nowrap}
@media (max-width:55.99em){.package{grid-template-columns:1fr;gap:.6rem;padding:1.2rem}.package__tag{justify-self:start}.package__icons{display:none}.package__main strong{font-size:1.1rem}}
.care3__links{display:flex;flex-wrap:wrap;gap:.25rem 1.75rem}

/* Abstände vereinheitlicht: Inhalt unten so viel Luft wie oben, kein doppelter Abstand vor dem Abschluss */
.page-hero2 + .section{padding-bottom:clamp(2.5rem,2rem + 3vw,4.5rem)}
.page-hero2 + .section + .section{padding-top:clamp(3rem,2.5rem + 3vw,5.5rem)}
.content > :first-child{margin-top:0}
@media (max-width:55.99em){
  .topic-chips{gap:.4rem;margin-bottom:1.5rem}
  .topic-chips a{padding:.35rem .75rem;font-size:.8rem}
}

/* Sprachumschalter */
.lang-switch{display:inline-flex;gap:.15rem;align-items:center;margin-left:.75rem;padding-left:.75rem;border-left:1px solid rgba(255,255,255,.2);font-size:.78rem;letter-spacing:.06em}
.lang-switch a,.lang-switch span{padding:.15rem .35rem;border-radius:4px;color:inherit;text-decoration:none;opacity:.7}
.lang-switch a:hover{opacity:1}
.lang-switch [aria-current]{opacity:1;color:var(--gold-light);font-weight:600}
.mobile-menu__lang{padding:1rem 0 0}
.mobile-menu__lang .lang-switch{margin:0;padding:0;border:0;font-size:.9rem}
.mobile-menu__lang .lang-switch a,.mobile-menu__lang .lang-switch span{color:var(--navy);opacity:.75;padding:.4rem .6rem;border:1px solid var(--line)}
.mobile-menu__lang .lang-switch [aria-current]{background:var(--navy);color:#fff;opacity:1}

/* ===== Design-Feinschliff ===== */
/* Preisschild statt Stempel */
.price-stamp{display:none}
.price-tag{position:absolute;z-index:3;left:clamp(1rem,3vw,2.5rem);bottom:clamp(1rem,3vw,2.25rem);display:grid;gap:.15rem;padding:.9rem 1.15rem .85rem;min-width:11.5rem;background:rgba(2,5,38,.86);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border:1px solid rgba(220,188,132,.55);border-radius:6px;color:#fff;text-decoration:none;box-shadow:0 18px 40px -20px rgba(0,0,0,.6);transition:transform .3s ease,border-color .3s ease}
.price-tag:hover{color:#fff;transform:translateY(-2px);border-color:var(--gold-light)}
.price-tag__top{font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-light);font-weight:600}
.price-tag__price{font-family:var(--serif);font-size:1.85rem;line-height:1.1;color:#fff}
.price-tag__price small{font-family:var(--sans);font-size:.78rem;color:#c9d3de;margin-left:.2rem}
.price-tag__incl{font-size:.74rem;color:#c9d3de;padding-top:.35rem;margin-top:.3rem;border-top:1px solid rgba(220,188,132,.3)}
@media (max-width:55.99em){.price-tag{min-width:0;left:.6rem;bottom:.6rem;gap:0;padding:.4rem .65rem .45rem;border-radius:5px}.price-tag__top{font-size:.58rem;letter-spacing:.12em}.price-tag__price{font-size:1.15rem}.price-tag__price small{font-size:.66rem}.price-tag__incl{font-size:.6rem;padding-top:.2rem;margin-top:.2rem}}
.hero__media figcaption{left:auto;right:clamp(1rem,3vw,2.5rem)}

/* Bildband über die ganze Breite */
.photo-band{position:relative;min-height:clamp(26rem,62vh,40rem);display:flex;align-items:flex-end;color:#fff;overflow:hidden;background:var(--navy)}
.photo-band__media{position:absolute;inset:0;margin:0}
.photo-band__media img{width:100%;height:100%;object-fit:cover;object-position:50% 25%}
.photo-band::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(2,5,38,0) 25%,rgba(2,5,38,.55) 60%,rgba(2,5,38,.9) 100%)}
.photo-band__text{position:relative;z-index:1;padding-block:clamp(2.5rem,2rem + 3vw,4.5rem)}
.photo-band__text .eyebrow{color:var(--gold-light)}
.photo-band__text h2{color:#fff;max-width:20ch;margin:0 0 .75rem}
.photo-band__text p{max-width:46ch;color:rgba(255,255,255,.9);margin:0 0 1rem}
.photo-band .textlink{color:#fff}
.photo-band .textlink::after{color:var(--gold-light)}

/* Abwechslung: zentrierte Abschnittsköpfe */
.section-head--center{display:block;text-align:center;max-width:44rem;margin-inline:auto}
.section-head--center h2{max-width:none}
.section-head--center p:not(.eyebrow){max-width:40rem;margin:1rem auto 0}
.section-head--center .eyebrow{justify-content:center}

/* Weniger Gold: Beschriftungen auf hellem Grund in Navy/Grau, Gold bleibt für Knöpfe und Preise */
.chief__label{color:var(--grey)}
.chief__role{color:var(--navy)}
.treatments--editorial .treatment__meta span:first-child{color:var(--grey)}
.page-hero2__who em{color:var(--grey)}
.trust svg,.didim2__icon{color:var(--navy)}
.faq2 .faq summary::after{color:var(--navy)}
.contact-item--primary .contact-item__icon,.contact-desk__phone svg{color:var(--navy)}

/* Handy: Chat-Blase weglassen, die Kontaktleiste reicht */
@media (max-width:55.99em){.chat-bubble{display:none!important}}

/* ===== Feinschliff 2: Hierarchie & Kontrast ===== */
:root{--gold-text:#8a6a32}
@media (max-width:39.99em){
  h2{font-size:1.55rem;line-height:1.2}
  .content h2{font-size:1.375rem}
  h3{font-size:1.1875rem}
}
.post-card__cat,.box-kurz__t,.toc__t,.box-cta__t,.doctor__role,.treatments--editorial .treatment__meta span:first-child,.rv__stars{color:var(--gold-text)}
/* All-on-6-Karte: kurz einblenden, dann ausblenden – Hero bleibt danach ruhig */
@keyframes zmtTagPop{0%{opacity:0;transform:translateY(12px) scale(.97);visibility:visible}9%{opacity:1;transform:none}86%{opacity:1;transform:none}100%{opacity:0;transform:translateY(6px);visibility:hidden}}
.price-tag{opacity:0;visibility:hidden;animation:zmtTagPop 8s cubic-bezier(.22,.61,.36,1) 1.4s 1 forwards}
.price-tag:hover,.price-tag:focus-visible{animation-play-state:paused}
@media (prefers-reduced-motion:reduce){.price-tag{display:none}}
:root{--serif:"Newsreader","Lora","Newsreader Fallback",Georgia,serif}
/* Rhythmus Desktop: Sektionsabstand etwas straffer (max. 112px statt 128px) */
@media (min-width:40em){:root{--space-section:clamp(4.5rem,3rem + 5vw,7rem)}}

/* ===== Pop-up All-on-6-Paket (Startseite, 1× pro Sitzung, schließt automatisch) ===== */
.price-tag{display:none!important}
.promo-pop{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:1rem}
.promo-pop[hidden]{display:none}
.promo-pop__backdrop{position:absolute;inset:0;background:rgba(8,16,28,.58);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);animation:ppFade .4s ease both}
.promo-pop__card{position:relative;width:min(34rem,100%);max-height:calc(100dvh - 2rem);overflow:auto;padding:clamp(2rem,1.4rem + 2.4vw,3rem) clamp(1.25rem,.8rem + 2.4vw,2.75rem) clamp(1.5rem,1.2rem + 1.5vw,2.25rem);background:radial-gradient(120% 90% at 50% 0%,#0d1450 0%,#020526 70%);color:#fff;text-align:center;border:1px solid rgba(220,188,132,.45);border-radius:10px;box-shadow:0 40px 90px -30px rgba(0,0,0,.7),inset 0 0 0 6px rgba(2,5,38,.6),inset 0 0 0 7px rgba(220,188,132,.18);animation:ppIn .55s cubic-bezier(.22,.61,.36,1) both;outline:none}
.promo-pop.is-closing .promo-pop__card{animation:ppOut .32s ease forwards}
.promo-pop.is-closing .promo-pop__backdrop{animation:ppFadeOut .32s ease forwards}
.promo-pop__x{position:absolute;top:.6rem;right:.6rem;width:2.75rem;height:2.75rem;display:grid;place-items:center;border:0;border-radius:50%;background:rgba(255,255,255,.06);color:#dfe6ee;cursor:pointer;transition:background .2s}
.promo-pop__x:hover{background:rgba(255,255,255,.14)}
.promo-pop__x svg{width:1.15rem;height:1.15rem}
.promo-pop__tag{display:inline-flex;align-items:center;gap:.7rem;margin:0 0 1rem;font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;color:var(--gold-light)}
.promo-pop__tag::before,.promo-pop__tag::after{content:"";width:1.6rem;height:1px;background:rgba(220,188,132,.6)}
.promo-pop h2{color:#fff;font-size:clamp(1.55rem,1.25rem + 1.4vw,2.15rem);line-height:1.15;max-width:17ch;margin:0 auto .9rem}
.promo-pop__price{margin:0 0 1.25rem;font-family:var(--serif);font-size:clamp(2.6rem,2.1rem + 2vw,3.4rem);line-height:1;background:linear-gradient(170deg,#f3dfb2,#c9a060 60%,#a47c3c);-webkit-background-clip:text;background-clip:text;color:transparent}
.promo-pop__price small{font-family:var(--sans);font-size:.95rem;color:#c9d3de;-webkit-text-fill-color:#c9d3de;margin-left:.2rem}
.promo-pop__list{list-style:none;margin:0 auto 1.6rem;padding:1rem 0 0;border-top:1px solid rgba(220,188,132,.22);display:flex;flex-wrap:wrap;justify-content:center;gap:.55rem 1.4rem;font-size:.9375rem;color:#d7dfe8}
.promo-pop__list li{display:inline-flex;align-items:center;gap:.45rem}
.promo-pop__list svg{width:1.05rem;height:1.05rem;color:var(--gold-light);flex:none}
.promo-pop__cta{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:.6rem 1.25rem}
.promo-pop__cta .btn{min-width:13rem}
.promo-pop__later{background:none;border:0;color:#aebdcc;font:inherit;font-size:.9375rem;text-decoration:underline;text-underline-offset:3px;cursor:pointer;min-height:2.75rem;padding:0 .5rem}
.promo-pop__later:hover{color:#fff}
.promo-pop__note{margin:1.25rem auto 0;max-width:40ch;font-size:.72rem;line-height:1.45;color:#8fa1b4}
.promo-pop__timer{position:absolute;left:0;bottom:0;height:3px;width:100%;background:linear-gradient(90deg,#a47c3c,#dcbc84);transform-origin:left;animation:ppTimer 9s linear forwards;border-radius:0 0 0 10px}
.promo-pop.is-paused .promo-pop__timer{animation-play-state:paused}
@keyframes ppIn{from{opacity:0;transform:translateY(18px) scale(.96)}to{opacity:1;transform:none}}
@keyframes ppOut{to{opacity:0;transform:translateY(10px) scale(.97)}}
@keyframes ppFade{from{opacity:0}to{opacity:1}}
@keyframes ppFadeOut{to{opacity:0}}
@keyframes ppTimer{from{transform:scaleX(1)}to{transform:scaleX(0)}}
@media (max-width:39.99em){.promo-pop__cta .btn{width:100%;min-width:0}.promo-pop__list{flex-direction:column;align-items:center;gap:.5rem}}
@media (prefers-reduced-motion:reduce){.promo-pop__card,.promo-pop__backdrop{animation:none}.promo-pop__timer{display:none}}
