/* ==========================================================================
   Skinchic.Med · skinchic.at
   Warm tonal layering: canvas -> panel (vertieft) -> card (erhöht)
   Font: Inter (variabel, selbst gehostet) · Akzent: Bordeaux Clay
   ========================================================================== */

/* ------------------------------ Font ------------------------------------ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ------------------------------ Tokens ----------------------------------- */

:root {
  /* Flächen */
  --canvas: #F7F6F3;
  --panel: #F0EEE8;
  --card: #FFFFFF;
  --hairline: #E7E3DA;

  /* Text */
  --ink: #191715;
  --muted: #645C51;
  --soft: #A39A8C;

  /* Akzent: Bordeaux Clay */
  --accent: #7D5A50;
  --accent-deep: #684A41;

  /* Glows (nur als weiche Lichtflächen, nie als Vollton) */
  --rose: #D9A79E;
  --sage: #ABB5A0;
  --blue: #A3B3C4;

  /* Form */
  --r-panel: 28px;
  --r-card: 20px;
  --r-media: 16px;
  --r-input: 12px;

  /* Rhythmus */
  --section: clamp(6rem, 9vw, 8.5rem);
  --nav-h: 68px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------ Reset ------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Lange deutsche Komposita dürfen Grid-Spalten nie aufweiten */
.hero__inner > *,
.pillar__row > *,
.showcase__pane > *,
.contact__panel > *,
.team__docs > * {
  min-width: 0;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, p, ul, dl, figure, blockquote, address { margin: 0; }
ul { padding: 0; list-style: none; }
address { font-style: normal; }

a { color: inherit; }

::selection { background: rgba(125, 90, 80, 0.18); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------ Layout ----------------------------------- */

.wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 40px;
}

main > section { margin-bottom: var(--section); }
main > section:first-child { margin-bottom: clamp(3.5rem, 5vw, 5rem); }

/* ------------------------------ Typografie ------------------------------- */

/* Display headings tragen die thin, editoriale Note aus dem Mega-Menü (Inter 300) */
h1 {
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.text-link {
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.text-link:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}

/* ------------------------------ Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ink);
  color: #FDFCFA;
}
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--primary:active { transform: scale(0.98); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn--ghost:hover { background: var(--card); transform: translateY(-1px); }

.btn--nav {
  height: 38px;
  padding: 0 20px;
  font-size: 0.875rem;
}

/* ------------------------------ Skip-Link -------------------------------- */

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--ink);
  color: #FDFCFA;
  border-radius: 999px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------ Header · editorial GSAP-Mega-Menü ------------------ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--canvas);
  padding-block: 18px;
}

/* Top-Leiste: Logo (abs. links) · Toggle (zentriert) */
.header__bar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 40px;
}
.header__logo {
  position: absolute;
  left: 40px;
  display: flex;
  align-items: center;
}
.header__logo-img { height: 34px; width: auto; display: block; }

.header__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.header__burger {
  width: 24px;
  height: 9px;
  position: relative;
  pointer-events: none;
  display: block;
}
.header__burger::before,
.header__burger::after {
  content: "";
  position: absolute;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.8s var(--ease), top 0.8s var(--ease);
}
.header__burger::before { top: 0; }
.header__burger::after { top: 7px; }
.header__burger--active::before { transform: rotate(45deg); top: 4px; }
.header__burger--active::after { transform: rotate(-45deg); top: 4px; }
.header__label { position: relative; display: flex; align-items: center; }
.header__label-text--close { position: absolute; left: 0; opacity: 0; }

/* Drop-down-Panel (GSAP animiert Höhe 0 -> auto) */
.nav { overflow: hidden; height: 0; }
.nav__wrapper {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  justify-content: space-between;
  padding-block: clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}
.nav__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.nav__body { display: flex; flex-direction: column; align-items: flex-start; }
.nav__link {
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  overflow: hidden;
  text-decoration: none;
  font-size: clamp(1.85rem, 4.4vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.16;
  padding-block: 0.1em;
  filter: blur(0px);
  opacity: 1;
}
.nav__link span { display: inline-block; will-change: transform, opacity; }

.nav__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  color: var(--muted);
}
.nav__footer ul { overflow: hidden; padding: 0; margin: 0; list-style: none; }
.nav__footer li { will-change: transform, opacity; line-height: 1.6; }
.nav__footer li span { color: var(--soft); }
.nav__footer li + li { display: inline; }

.nav__social { display: flex; gap: 1rem; align-items: center; }
.nav__social a { display: inline-flex; color: var(--ink); transition: color 0.2s ease; }
.nav__social a:hover { color: var(--accent-deep); }

.nav__brands {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.75rem, 3.5vw, 3rem);
}
.nav__brand { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.nav__brand-mark { height: 38px; width: auto; opacity: 0.9; }
.nav__brand-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.nav__brands-sep { align-self: stretch; width: 1px; background: var(--hairline); margin-top: 4px; }

/* Vollflächiger dunkler Backdrop; unter dem Header, über der Seite. GSAP blendet 0 -> 1. */
.header__background {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(25, 23, 21, 0.5);
  opacity: 0;
  pointer-events: none;
}
.header__background.is-active { pointer-events: auto; }

/* ------------------------------ Hero -------------------------------------- */

.hero { padding-top: calc(var(--nav-h) + clamp(3.5rem, 7vw, 6rem)); }

.hero__inner {
  display: block;
}

.hero__title {
  text-wrap: balance;    /* längere Überschrift bricht ausgewogen um */
}

/* Lead-in liest sich als Satzanfang in die Display-Zeile hinein,
   kein dekoratives Micro-Label */
.hero__title-lead {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--accent);
}

.hero__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 36ch;
  padding-bottom: 0.35rem;
}

/* ------------------------------ Showcase ---------------------------------- */

.showcase__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  overflow: hidden;
}

.showcase__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.showcase__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.showcase__tabs::-webkit-scrollbar { display: none; }

.showcase__tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.showcase__tab:hover { color: var(--ink); }
.showcase__tab.is-active {
  background: var(--ink);
  color: #FDFCFA;
}

.showcase__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.showcase__stage {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.showcase__glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.showcase__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.55;
}
.showcase__orb--rose { width: 220px; height: 220px; background: var(--rose); margin-left: -260px; }
.showcase__orb--sage { width: 180px; height: 180px; background: var(--sage); margin-left: 60px; margin-top: 60px; }
.showcase__orb--blue { width: 160px; height: 160px; background: var(--blue); margin-left: 320px; margin-top: -40px; }

@media (prefers-reduced-motion: no-preference) {
  .showcase__orb--rose { animation: orb-drift 14s var(--ease) infinite alternate; }
  .showcase__orb--sage { animation: orb-drift 18s var(--ease) infinite alternate-reverse; }
  .showcase__orb--blue { animation: orb-drift 16s var(--ease) infinite alternate; }
}
@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(28px, -20px); }
}

.showcase__pane {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-inline: clamp(0.25rem, 2vw, 1.5rem);
}
.showcase__pane[hidden] { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .showcase__pane.is-entering { animation: pane-in 0.5s var(--ease); }
}
@keyframes pane-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase__statement {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: -0.022em;
  max-width: 22ch;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.showcase__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-media);
  border: 1px solid var(--hairline);
}

.showcase__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 12px 12px 20px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-media);
}

.showcase__chips {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.showcase__chips::-webkit-scrollbar { display: none; }
.showcase__chips li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.showcase__cta { flex-shrink: 0; }

/* ------------------------------ Technologie ------------------------------- */

.tech { text-align: center; }

.tech__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

/* Statische Fallback-Liste (ohne JS / reduzierte Bewegung) */
.tech__marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: clamp(2rem, 4.5vw, 3.5rem);
  row-gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.tech__marks li {
  font-size: 1rem;
  font-weight: 640;
  letter-spacing: -0.015em;
  color: var(--muted);
  white-space: nowrap;
}

/* Bleibt im DOM fuer Screenreader und SEO, sobald das Feld aktiv ist */
.tech__marks--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Technologie-Reihe: eine Zeile, einheitlich, einzelne Namen blenden durch */
.tech__stage {
  position: relative;
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* auf die Seitenbreite verteilt, gleiche Abstaende */
  align-items: center;
  column-gap: clamp(0.75rem, 1.5vw, 1.35rem);
  row-gap: 1rem;
}
/* Aussenkanten buendig zum Seitenraster */
.tech__slot:first-child { text-align: left; }
.tech__slot:last-child { text-align: right; }

.tech__slot {
  /* Feste Breite (per JS auf den laengsten Namen gesetzt), damit die
     Reihe beim Wechsel der Namen nicht springt */
  width: var(--tech-w, auto);
  margin: 0;
  color: var(--ink);
  font-weight: 560;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease),
    filter 0.6s var(--ease);
}
.tech__slot.is-out {
  opacity: 0;
  transform: translateY(9px);
  filter: blur(6px);
  /* Ausblenden bewusst langsamer als Einblenden */
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease),
    filter 0.95s var(--ease);
}

.tech__slot-text {
  display: inline-block;
}

/* Sobald die Reihe umbricht, wieder mittig statt am Rand verteilt */
@media (max-width: 900px) {
  .tech__stage {
    justify-content: center;
    column-gap: clamp(1.25rem, 5vw, 2.25rem);
  }
  .tech__slot:first-child,
  .tech__slot:last-child { text-align: center; }
}

/* ------------------------------ Team --------------------------------------- */

.team__head {
  max-width: 760px;
  text-align: left;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}
.team__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.team__head h2 {
  font-size: clamp(1.5rem, 3.7vw, 3rem);
  white-space: nowrap;   /* eine Zeile, kein Umbruch */
}
/* sehr schmale Phones: umbrechen, damit die Überschrift nicht überläuft */
@media (max-width: 480px) {
  .team__head h2 { white-space: normal; }
}
.team__intro {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}

/* Fließtext über die volle Textbreite (statt schmaler Block mit Umbruch in der Mitte) */
.team__head--wide { max-width: none; }
.team__head--wide .team__intro {
  max-width: none;
  line-height: 1.7;
}
/* ab Tablet aufwärts etwas kompakter setzen, damit die Zeilen lesbar bleiben */
@media (min-width: 900px) {
  .team__head--wide .team__intro { font-size: 1.0625rem; }
}

/* Ärzte: große Porträtkarten, versetzt in der Tiefe */
.team__docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4.5vw, 4rem);
  padding-block: clamp(1rem, 3vw, 2.5rem);
}

.doc {
  position: relative;
  z-index: 1;
}
.doc--offset { margin-top: clamp(2rem, 6vw, 4.5rem); }   /* Versatz -> Tiefe */

.doc__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 32px 60px -32px rgba(25, 23, 21, 0.5);
}
.doc__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Infokarte schwebt über dem unteren Bildrand -> echte z-Schichtung */
.doc__body {
  position: relative;
  z-index: 2;
  margin-top: clamp(-4.5rem, -6vw, -3rem);
  margin-inline: clamp(1rem, 3vw, 2rem);
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
  box-shadow: 0 26px 50px -30px rgba(25, 23, 21, 0.4);
}
.doc__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.doc__name {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.doc__quote {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (hover: hover) {
  .doc { transition: transform 0.4s var(--ease); }
  .doc:hover { transform: translateY(-6px); }
  .doc__portrait { transition: box-shadow 0.4s var(--ease); }
  .doc:hover .doc__portrait { box-shadow: 0 44px 72px -30px rgba(25, 23, 21, 0.55); }
}

/* ------------------- Ordination · Ambiente aus der Praxis ------------------ */
/* Zwei echte Raumaufnahmen, versetzt wie die Ärztekarten -> gleiche Tiefe. */

.ambiente__head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5.5vw, 4rem);
}
.ambiente__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.ambiente__head h2 { font-size: clamp(1.5rem, 3.7vw, 3rem); }
.ambiente__intro {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}

.ambiente__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}
.ambiente__grid > * { min-width: 0; }

.ambiente__shot--tall { margin-top: clamp(2rem, 6vw, 4.5rem); }   /* Versatz -> Tiefe */

.ambiente__shot picture {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 32px 60px -32px rgba(25, 23, 21, 0.5);
}
.ambiente__shot--wide picture { aspect-ratio: 4 / 3; }
.ambiente__shot--tall picture { aspect-ratio: 4 / 5; }
.ambiente__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambiente__shot figcaption {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}

@media (max-width: 900px) {
  .ambiente__grid { grid-template-columns: 1fr; }
  .ambiente__shot--tall { margin-top: 0; }
}

/* --------------------- Bereiche · Glas-Panels mit Farbakzent --------------- */
/* Frosted-Glass-Box je Bereich. Die Bereichsfarbe liegt NUR als heller
   Verlauf im Panel-Hintergrund, kein Halo nach außen:
   Ästhetik rot, Allgemeinmedizin grün, Urologie blau. */

.pillar--aesthetik { --glow: 205, 116, 104; }   /* rot / koralle */
.pillar--gp        { --glow: 122, 164, 118; }    /* grün / salbei */
.pillar--uro       { --glow: 112, 150, 200; }    /* blau */

.pillar__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-panel);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  /* heller Farbschimmer im Hintergrund + Milchglasfläche */
  background:
    radial-gradient(56% 66% at 4% -4%, rgba(var(--glow), 0.20), transparent 60%),
    radial-gradient(46% 56% at 104% 106%, rgba(var(--glow), 0.14), transparent 62%),
    rgba(253, 252, 250, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.20),
    0 26px 60px -30px rgba(25, 23, 21, 0.35);
}

/* Solide Rückfallebene, wenn Transparenz reduziert ist */
@media (prefers-reduced-transparency: reduce) {
  .pillar__panel {
    background:
      radial-gradient(56% 66% at 4% -4%, rgba(var(--glow), 0.14), transparent 60%),
      #FBFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-color: var(--hairline);
  }
}

/* Überschrift immer einzeilig, über alle Bereiche gleich */
.pillar__title {
  white-space: nowrap;
  font-size: clamp(1rem, 4.4vw, 2.35rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

/* Oben: Intro + Link links, Bildplatzhalter rechts */
.pillar__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.pillar__intro {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}
/* Bildplatzhalter je Bereich (durch echtes Foto ersetzen) */
.pillar__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-media);
  border: 1px dashed rgba(25, 23, 21, 0.16);
  background: rgba(255, 255, 255, 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--soft);
}
.pillar__media svg { width: 34px; height: 34px; }
.pillar__media-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mit echtem Foto: Rahmen und Platzhalter-Optik entfernen, Bild füllt die Fläche */
.pillar__media--photo {
  border: 0;
  background: none;
  overflow: hidden;
  box-shadow: 0 30px 60px -44px rgba(25, 23, 21, 0.45);
}
.pillar__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Detaillierte Leistungen als Index-Liste: Label links, Inhalt rechts */
.pillar__list { border-top: 1px solid rgba(25, 23, 21, 0.12); }
.pillar__row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(0.75rem, 3vw, 2.5rem);
  padding: clamp(1.1rem, 2vw, 1.5rem) 0;
  border-bottom: 1px solid rgba(25, 23, 21, 0.12);
}
.pillar__row h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pillar__row p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Öffnungszeiten (Allgemeinmedizin) */
.pillar__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.pillar__hours div {
  flex: 1 1 210px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--r-media);
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--muted);
}
.pillar__hours span {
  display: block;
  color: var(--ink);
  font-weight: 550;
  margin-bottom: 4px;
}

.pillar__note {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.95rem;
  color: var(--muted);
}

/* ------------------------------ FAQ ----------------------------------------- */

/* Volle Sektionsbreite wie Team/Pillar; Überschrift und Fragen teilen sich
   eine links verankerte Lesekolonne */
.faq h2 {
  text-align: left;
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.faq__list { max-width: 760px; }

.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item:first-child { border-top: 1px solid var(--hairline); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary { transition: color 0.2s var(--ease); }
.faq__item summary:hover { color: var(--accent-deep); }

.faq__marker {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.faq__marker::before,
.faq__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  transition: transform 0.35s var(--ease);
}
.faq__marker::after { transform: rotate(90deg); }
.faq__item[open] .faq__marker::after { transform: rotate(0deg); }

.faq__answer { overflow: hidden; }
.faq__answer p {
  padding: 0 4px 24px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.faq__answer a { color: var(--accent-deep); }

/* ------------------------------ Kontakt -------------------------------------- */
/* Persönlicher Brief links, Formular rechts, in einer weichen Verlaufs-Box im
   Stil der Bereichs-Panels. Rose (Ästhetik), Sage (Allgemeinmedizin) und Blau
   (Urologie) fließen hier zusammen: die drei Fachbereiche unter einem Dach. */

.contact__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: start;
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background:
    radial-gradient(58% 78% at 4% 2%, rgba(217, 167, 158, 0.36), transparent 60%),
    radial-gradient(52% 66% at 100% 6%, rgba(163, 179, 196, 0.30), transparent 58%),
    radial-gradient(74% 82% at 92% 100%, rgba(171, 181, 160, 0.32), transparent 60%),
    linear-gradient(158deg, #F8F4F0 0%, #F1EBE3 100%);
}

/* Linke Spalte · persönliche Ansprache */

.contact__intro {
  display: flex;
  flex-direction: column;
}

.contact__title {
  font-size: clamp(1.95rem, 3.4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.contact__note {
  margin-top: 1.25rem;
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}

/* Signatur wie unter einem handgeschriebenen Brief */
.contact__signoff {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: -0.012em;
  color: var(--accent-deep);
}
.contact__signoff span {
  display: block;
  margin-bottom: 3px;
  font-weight: 400;
  color: var(--muted);
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.75rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid rgba(25, 23, 21, 0.12);
}

.contact__block h3 { margin-bottom: 10px; }
.contact__block p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact__phone {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.25s var(--ease);
}
.contact__phone:hover { color: var(--accent-deep); }

/* Social · nur die Icons, ohne Kästen */
.contact__social {
  display: flex;
  gap: 20px;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.contact__social a {
  display: inline-flex;
  color: var(--muted);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact__social a:hover {
  color: var(--accent-deep);
  transform: translateY(-2px);
}

/* Rechte Spalte · Formular. Weiße Felder heben sich vom Verlauf ab. */

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__field label {
  font-size: 0.875rem;
  font-weight: 550;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 15px;
  background: #FFFFFF;
  border: 1px solid rgba(25, 23, 21, 0.06);
  border-radius: var(--r-input);
  box-shadow: 0 12px 30px -24px rgba(25, 23, 21, 0.55);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form__field textarea { resize: vertical; min-height: 120px; }

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}

.form__field.has-error input,
.form__field.has-error select,
.form__field.has-error textarea {
  border-color: #A3402F;
}

/* Bereich: drei auswählbare Karten statt Dropdown */
.form__field-label {
  font-size: 0.875rem;
  font-weight: 550;
}
.form__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.form__card-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form__card {
  --c: 125, 90, 80;                 /* Fallback = Akzentbraun */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  padding: 14px 14px 15px;
  background: #FFFFFF;
  border: 1.5px solid rgba(25, 23, 21, 0.08);
  border-radius: var(--r-input);
  box-shadow: 0 12px 30px -24px rgba(25, 23, 21, 0.55);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease),
              box-shadow 0.3s var(--ease), transform 0.25s var(--ease);
}
.form__card:hover {
  border-color: rgba(var(--c), 0.55);
  transform: translateY(-2px);
}
.form__card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(var(--c));
  box-shadow: 0 0 0 3px rgba(var(--c), 0.12);
  transition: box-shadow 0.25s var(--ease);
}
.form__card-name {
  font-size: 0.85rem;
  font-weight: 550;
  line-height: 1.25;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.form__card-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  color: rgb(var(--c));
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.form__card-input:checked + .form__card {
  border-color: rgb(var(--c));
  background: rgba(var(--c), 0.07);
  box-shadow: 0 16px 34px -22px rgba(var(--c), 0.7);
}
.form__card-input:checked + .form__card .form__card-dot {
  box-shadow: 0 0 0 4px rgba(var(--c), 0.26);
}
.form__card-input:checked + .form__card .form__card-name { color: var(--ink); }
.form__card-input:checked + .form__card .form__card-check {
  opacity: 1;
  transform: scale(1);
}
.form__card-input:focus-visible + .form__card {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form__field.has-error .form__card { border-color: #A3402F; }

.form__error {
  font-size: 0.825rem;
  color: #A3402F;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form__consent input {
  margin-top: 4px;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form__consent label {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}
.form__consent a { color: var(--accent-deep); }

.contact__form .btn { align-self: flex-start; }

.form__notice {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(25, 23, 21, 0.06);
  border-radius: var(--r-input);
  padding: 14px 16px;
  box-shadow: 0 12px 30px -24px rgba(25, 23, 21, 0.55);
}
/* Leere Live-Region bleibt im Accessibility-Tree, kollabiert aber visuell */
.form__notice:empty {
  padding: 0;
  border: 0;
  margin: 0;
  box-shadow: none;
}
/* Rueckmeldung nach dem Absenden: gruener Akzent bei Erfolg, roter bei Fehler */
.form__notice.is-success {
  border-color: rgba(110, 139, 99, 0.35);
  box-shadow: inset 3px 0 0 #6E8B63, 0 12px 30px -24px rgba(25, 23, 21, 0.55);
}
.form__notice.is-error {
  border-color: rgba(163, 64, 47, 0.35);
  box-shadow: inset 3px 0 0 #A3402F, 0 12px 30px -24px rgba(25, 23, 21, 0.55);
}

/* Honeypot-Feld gegen Spam: aus dem Blickfeld, aber im DOM (Bots fuellen es aus) */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------ Footer ----------------------------------------- */

.footer {
  border-top: 1px solid var(--hairline);
  background: var(--canvas);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr 1fr;
  gap: 40px;
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
/* Variante mit einer Spalte weniger (Marke + drei Spalten) */
.footer__grid--slim { grid-template-columns: 2fr 1fr 1.2fr 1fr; }

.footer__brand { max-width: 300px; }

.footer__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer__logos img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.footer__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  width: fit-content;
}
.footer__col a:hover { color: var(--ink); }
.footer__col address {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-block: 26px;
}
.footer__bottom p {
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__bottom p a {
  color: var(--muted);
  text-underline-offset: 3px;
}
.footer__bottom p a:hover { color: var(--ink); }

.footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__social a:hover { color: var(--ink); transform: translateY(-2px); }

/* ------------------------------ Rechtstexte (Impressum / Datenschutz) ------ */

.legal { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)); }
.legal__inner { max-width: 760px; }
.legal__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.legal__inner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.legal__lead {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.7;
  max-width: 60ch;
}
.legal__block { margin-top: clamp(2rem, 4vw, 3rem); }
.legal__block h2 {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
}
.legal__block p {
  color: var(--muted);
  line-height: 1.75;
}
.legal__block p + p { margin-top: 0.85rem; }
.legal__block a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s var(--ease);
  overflow-wrap: anywhere;
}
.legal__block a:hover { text-decoration-color: var(--accent); }
.legal__back { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ------------------------------ Reveals ------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  }
  html.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------ Responsive ---------------------------------------- */

@media (max-width: 900px) {
  .wrap { padding-inline: 24px; }

  .header__bar { padding-inline: 24px; }
  .header__logo { left: 24px; }
  /* langes Mega-Menü scrollt innerhalb des Viewports */
  .nav__wrapper { max-height: calc(100dvh - var(--nav-h) - 20px); overflow-y: auto; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }
  .hero__lead { padding-bottom: 0; }

  .showcase__pane {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .showcase__img { height: 210px; }
  .showcase__stage { min-height: 0; padding-block: 12px; }
  .showcase__bar { flex-direction: column; align-items: stretch; padding: 14px; }
  .showcase__cta { width: 100%; }
  /* Chips brechen auf Mobil um, statt horizontal abgeschnitten zu scrollen */
  .showcase__chips { gap: 12px 18px; flex-wrap: wrap; overflow-x: visible; }

  .team__docs { grid-template-columns: 1fr; gap: clamp(2.5rem, 8vw, 4rem); }
  .doc--offset { margin-top: 0; }

  .contact__panel { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .doc__portrait { aspect-ratio: 5 / 6; }
  .doc__body { margin-inline: clamp(0.75rem, 4vw, 1.5rem); }
}

@media (max-width: 860px) {
  .pillar__top {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 4vw, 2rem);
  }
  .pillar__media { order: -1; aspect-ratio: 16 / 9; }
}

@media (max-width: 700px) {
  .pillar__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* Box-Ueberschriften duerfen auf dem Handy umbrechen und groesser werden,
     statt zwanghaft einzeilig und dadurch winzig zu bleiben. */
  .pillar__title {
    white-space: normal;
    font-size: clamp(1.55rem, 6.2vw, 2.1rem);
    line-height: 1.12;
  }
}

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }

  /* Kompakter Footer fuers Handy: zwei Spalten statt einer langen Liste,
     engere Abstaende und etwas kleinere Schrift. */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
    padding-block: clamp(2rem, 8vw, 2.75rem);
  }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .footer__col { gap: 8px; }
  .footer__col h3 { font-size: 0.82rem; margin-bottom: 3px; }
  .footer__col a,
  .footer__col address { font-size: 0.82rem; }
}

@media (max-width: 440px) {
  .form__cards { grid-template-columns: 1fr; }
  .form__card {
    flex-direction: row;
    align-items: center;
    padding: 13px 14px;
  }
  .form__card-check { position: static; margin-left: auto; }
}

@media (max-width: 480px) {
  .pillar__panel { padding: clamp(1.15rem, 5vw, 1.6rem); }

  /* Die drei Umschalter bleiben in EINER Reihe. Inhaltsbreite Tabs (der lange
     Name bekommt den Platz, den er braucht) mit kompaktem Padding und leicht
     verkleinerter Schrift, damit alle drei nebeneinander passen. */
  .showcase__tabs { justify-content: center; }
  .showcase__tab {
    padding: 8px 10px;
    font-size: clamp(0.72rem, 3vw, 0.8125rem);
    letter-spacing: -0.01em;
  }

  /* Marken-Zeile im Mega-Menü passt auf schmale Telefone (kein Überstand) */
  .nav__brands { gap: 1.25rem; }
  .nav__brand-name { letter-spacing: 0.08em; }
}

/* ==========================================================================
   Unterseite · Allgemeinmedizin
   Gleiche Sprache wie die Startseite: editoriale Typo, weiche Verlaufs-Boxen,
   Sage-Tönung als Bereichsfarbe der Allgemeinmedizin.
   ========================================================================== */

/* ------------------------------ Sub-Hero --------------------------------- */

.subhero { padding-top: calc(var(--nav-h) + clamp(3.5rem, 7vw, 6rem)); }

.subhero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* Lead-in liest sich als Satz in die Überschrift, kein dekoratives Label */
.subhero__lead {
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.subhero__title { margin-bottom: 1.5rem; }

.subhero__intro {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
}

.subhero__actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  flex-wrap: wrap;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

/* Sprechstunden-Box im Stil des Showcase-Panels der Startseite:
   warmes Panel mit weichem Orb-Glow (Rose, Sage, Blau). */
.subhero__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

/* Glasvariante: kein Farbton, nur transluzente Fläche mit Glasrand */
.subhero__card--glass {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 30px 60px -44px rgba(25, 23, 21, 0.4);
}

.subhero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.subhero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.55;
}
.subhero__orb--a { width: 210px; height: 210px; background: var(--sage); left: -12%; top: -8%; }
.subhero__orb--b { width: 185px; height: 185px; background: #8FB39A; right: -14%; top: 34%; }
.subhero__orb--c { width: 195px; height: 195px; background: #C4D2B4; left: 16%; bottom: -18%; }
@media (prefers-reduced-motion: no-preference) {
  .subhero__orb--a { animation: orb-drift 15s var(--ease) infinite alternate; }
  .subhero__orb--b { animation: orb-drift 19s var(--ease) infinite alternate-reverse; }
  .subhero__orb--c { animation: orb-drift 17s var(--ease) infinite alternate; }
}

.subhero__card-inner { position: relative; z-index: 1; }

.subhero__card-title {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.subhero__hours {
  border-top: 1px solid rgba(25, 23, 21, 0.12);
}
.subhero__hours div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(25, 23, 21, 0.12);
}
.subhero__hours dt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.subhero__hours dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.subhero__contact { margin-top: 1.25rem; }
.subhero__contact p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.subhero__phone {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.subhero__phone:hover { color: var(--accent-deep); }

/* ------------------------------ Arzt / Praxis ---------------------------- */

.lead-doc__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.lead-doc__portrait {
  position: relative;
  isolation: isolate;
}
/* Porträt ohne Rahmen oder Farbkasten: nur das Bild mit weichen Ecken */
.lead-doc__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: 0 30px 55px -36px rgba(25, 23, 21, 0.4);
}

.lead-doc__role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.lead-doc__name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.lead-doc__quote {
  margin-top: 1.5rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.lead-doc__text {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60ch;
}
.lead-doc__text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ------------------------------ Leistungen ------------------------------- */
/* Glaskarte statt Vollgrün: helles Milchglas mit weichen grünen Highlights,
   die durch die Frostschicht schimmern. Kompakte 2-Spalten-Liste, damit der
   ganze Bereich in einem Blick erfassbar bleibt. */

.leistungen__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-panel);
  background: var(--panel);
  box-shadow: 0 34px 70px -46px rgba(25, 23, 21, 0.42);
}

/* Grüne Highlights hinter der Glasschicht */
.leistungen__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.leistungen__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.8;
}
.leistungen__orb--a { width: 420px; height: 380px; background: var(--sage); left: -6%; top: -12%; }
.leistungen__orb--b { width: 360px; height: 340px; background: #8FB39A; right: -8%; top: 24%; }
.leistungen__orb--c { width: 400px; height: 360px; background: var(--sage); left: 34%; bottom: -22%; }
@media (prefers-reduced-motion: no-preference) {
  .leistungen__orb--a { animation: orb-drift 18s var(--ease) infinite alternate; }
  .leistungen__orb--b { animation: orb-drift 22s var(--ease) infinite alternate-reverse; }
  .leistungen__orb--c { animation: orb-drift 20s var(--ease) infinite alternate; }
}

/* Milchglas-Schicht über den Highlights */
.leistungen__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background: rgba(250, 250, 248, 0.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
  backdrop-filter: blur(26px) saturate(1.3);
}

.leistungen__head {
  max-width: 60ch;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.leistungen__head h2 { margin-bottom: 0.75rem; }
.leistungen__intro {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.leistungen__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.leistungen__tabs::-webkit-scrollbar { display: none; }

.leistungen__tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.leistungen__tab:hover { color: var(--ink); }
.leistungen__tab.is-active {
  background: var(--ink);
  color: #FDFCFA;
}

.leistungen__group[hidden] { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .leistungen__group.is-entering { animation: pane-in 0.5s var(--ease); }
}

/* Kompakte 2-Spalten-Liste aus kleinen Glaskacheln, alles auf einen Blick */
.leistungen__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.4vw, 0.9rem);
}
.leistungen__row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 10px 24px -18px rgba(25, 23, 21, 0.32);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
@media (hover: hover) {
  .leistungen__row:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.66); }
}
.leistungen__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: auto;
}
.leistungen__tag {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 2px;
  padding: 2px 9px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(25, 23, 21, 0.08);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent-deep);
  white-space: nowrap;
}
.leistungen__row p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ------------------------------ Gut zu wissen ---------------------------- */

.info-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.info-band__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
.info-band__col { border-top: 2px solid var(--accent); padding-top: 1.25rem; }
.info-band__col h3 { margin-bottom: 0.75rem; }
.info-band__col p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ------------------------------ Kontaktseite ----------------------------- */
/* Ruhiger, einspaltiger Hero (nur Text) */
.subhero--kontakt .subhero__inner { grid-template-columns: 1fr; }
.subhero--kontakt .subhero__intro { max-width: 54ch; }

/* Anfahrt: Karte und kompakte Infos nebeneinander */
.geo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

/* Kartenfläche, Platzhalter bis zum Klick */
.geo__map {
  position: relative;
  isolation: isolate;
  min-height: clamp(320px, 44vw, 480px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  overflow: hidden;
}
.geo__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.geo__map-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(58% 78% at 12% 6%, rgba(217, 167, 158, 0.34), transparent 60%),
    radial-gradient(52% 66% at 100% 4%, rgba(163, 179, 196, 0.30), transparent 58%),
    radial-gradient(74% 82% at 96% 100%, rgba(171, 181, 160, 0.34), transparent 60%),
    linear-gradient(155deg, #F6F2ED 0%, #ECE6DE 100%);
}
.geo__map.is-loaded .geo__map-ph { display: none; }
.geo__pin { color: var(--accent); }
.geo__map-addr {
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.geo__map-load {
  border: 0;
  background: var(--ink);
  color: #FDFCFA;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 550;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s var(--ease);
}
.geo__map-load:hover { background: var(--accent-deep); }
.geo__map-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 30ch;
}

/* Info-Spalte */
.geo__info {
  align-self: center;
  display: flex;
  flex-direction: column;
}
.geo__title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.geo__hours { margin-bottom: 1.5rem; }
.geo__meta { display: flex; flex-direction: column; gap: 0.5rem; }
.geo__addr { color: var(--muted); }
.geo__phone {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.geo__phone:hover { color: var(--accent-deep); }
.geo__hint {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}
.geo__meta .text-link { margin-top: 0.5rem; }

@media (max-width: 820px) {
  .geo__inner { grid-template-columns: 1fr; }
  .geo__map { min-height: clamp(280px, 62vw, 360px); }
}

/* ------------------------------ CTA -------------------------------------- */

.cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  border: 1px solid var(--hairline);
  border-radius: var(--r-panel);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(56% 120% at 4% 8%, rgba(150, 170, 142, 0.36), transparent 60%),
    radial-gradient(56% 120% at 100% 92%, rgba(143, 179, 154, 0.28), transparent 60%),
    linear-gradient(155deg, #F2F5EF 0%, #E7EEE2 100%);
}
.cta__copy { max-width: 46ch; }
.cta__copy h2 { margin-bottom: 0.85rem; }
.cta__copy p {
  font-size: 1.075rem;
  line-height: 1.6;
  color: var(--muted);
}
/* Kleiner Hinweistext rechts, führt ins Formular darunter */
.cta__note {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 22ch;
}
.cta__actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  flex-wrap: wrap;
}
.cta__phone {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.cta__phone:hover { color: var(--accent-deep); }
.cta__hint {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------------------------- Kontaktformular ---------------------------- */
/* Dasselbe Formular wie auf der Startseite, zentriert und schlank */

.booking__form {
  max-width: 720px;
  margin-inline: auto;
}

/* ------------------------------ Responsive · Unterseite ------------------ */

@media (max-width: 900px) {
  .subhero__inner { grid-template-columns: 1fr; gap: clamp(1.75rem, 6vw, 2.75rem); }

  .lead-doc__inner { grid-template-columns: 1fr; gap: clamp(1.75rem, 6vw, 3rem); }
  .lead-doc__portrait { max-width: 420px; }

  .info-band__inner { grid-template-columns: 1fr; gap: clamp(1.25rem, 4vw, 2rem); }
}

@media (max-width: 700px) {
  .leistungen__list { grid-template-columns: 1fr; }
  .info-band__cols { grid-template-columns: 1fr; }
  .cta__panel { flex-direction: column; align-items: flex-start; }
}

/* Leistungs-Tabs auf schmalen Screens umbrechen statt horizontal scrollen,
   damit alle Bereiche sichtbar und antippbar sind (kein Wischen nötig). */
@media (max-width: 860px) {
  .leistungen__tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 6px;
    overflow-x: visible;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .leistungen__tab { padding: 8px 13px; font-size: 0.8125rem; }
}

/* ==========================================================================
   Unterseite · Urologie
   Gleiches Baukastensystem wie Allgemeinmedizin, nur die Bereichsfarbe wechselt
   von Salbei auf Blau (Urologie). Nur die getönten Flächen werden überschrieben.
   ========================================================================== */

/* Übersichtskarte im Milchglas-Stil (wie die Sprechstundenkarte der
   Allgemeinmedizin), mit sanftem Blau-Schimmer statt Vollfläche. */
.subhero__card--uro {
  background:
    radial-gradient(72% 92% at 10% 6%, rgba(146, 168, 196, 0.34), transparent 62%),
    radial-gradient(62% 82% at 96% 102%, rgba(146, 168, 196, 0.20), transparent 58%),
    rgba(253, 252, 250, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 60px -44px rgba(25, 23, 21, 0.4);
}
@media (prefers-reduced-transparency: reduce) {
  .subhero__card--uro {
    background:
      radial-gradient(72% 92% at 10% 6%, rgba(146, 168, 196, 0.20), transparent 62%),
      #F4F7FB;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.info-band__col--uro { border-top-color: #6E96C8; }

/* Bereich-Chip auf der Startseiten-Kachel bleibt Bordeaux; hier ergänzen wir
   einen blauen Tag-Ton, damit die Leistungspillen zum Bereich passen */
.leistungen__tag--uro { color: #3F6394; }

/* Leistungspanel bekommt denselben Milchglas-Korpus wie Allgemeinmedizin
   (Basis .leistungen__panel + .leistungen__inner). Nur die Glow-Orbs hinter
   der Frostschicht wechseln von Salbei auf Blau. */
.leistungen__panel--uro .leistungen__orb--a { background: #9DB4D6; }
.leistungen__panel--uro .leistungen__orb--b { background: #7C9BC6; }
.leistungen__panel--uro .leistungen__orb--c { background: #B4C6E0; }

/* ==========================================================================
   Unterseite · Ästhetik
   Gleiches Baukastensystem wie Allgemeinmedizin/Urologie, Bereichsfarbe Rosé
   (Familie Bordeaux Clay). Zusätzlich: Behandlungs-Explorer mit Preis und Link
   auf die Detailseite sowie die transparente, aufklappbare Preisliste.
   ========================================================================== */

/* Bereichsfarbe: getönte Flächen auf Rosé umstellen */
/* Übersichtskarte im Milchglas-Stil (wie die Sprechstundenkarte der
   Allgemeinmedizin), mit sanftem Rosé-Schimmer statt Vollfläche. */
.subhero__card--aesthetik {
  background:
    radial-gradient(72% 92% at 10% 6%, rgba(210, 152, 141, 0.32), transparent 62%),
    radial-gradient(62% 82% at 96% 102%, rgba(210, 152, 141, 0.18), transparent 58%),
    rgba(253, 252, 250, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 60px -44px rgba(25, 23, 21, 0.4);
}
@media (prefers-reduced-transparency: reduce) {
  .subhero__card--aesthetik {
    background:
      radial-gradient(72% 92% at 10% 6%, rgba(210, 152, 141, 0.20), transparent 62%),
      #FBFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
/* Ästhetik-Leistungspanel bekommt denselben Milchglas-Korpus wie
   Allgemeinmedizin (Basis .leistungen__panel + .leistungen__inner). Nur die
   Glow-Orbs hinter der Frostschicht wechseln von Salbei auf Rosé. */
.leistungen__panel--aesthetik .leistungen__orb--a { background: var(--rose); }
.leistungen__panel--aesthetik .leistungen__orb--b { background: #CE9182; }
.leistungen__panel--aesthetik .leistungen__orb--c { background: var(--rose); }
.cta__panel--aesthetik {
  background:
    radial-gradient(56% 120% at 4% 8%, rgba(210, 152, 141, 0.34), transparent 60%),
    radial-gradient(56% 120% at 100% 92%, rgba(201, 138, 125, 0.26), transparent 60%),
    linear-gradient(155deg, #F7F1EC 0%, #F1E3DB 100%);
}

/* Lead-Arzt Glow in Rosé */
.lead-doc__orb--rose  { width: 320px; height: 300px; background: var(--rose); left: -6%; top: 8%; }
.lead-doc__orb--coral { width: 300px; height: 280px; background: #CE9182; right: -8%; bottom: 4%; }
@media (prefers-reduced-motion: no-preference) {
  .lead-doc__orb--rose  { animation: orb-drift 18s var(--ease) infinite alternate; }
  .lead-doc__orb--coral { animation: orb-drift 22s var(--ease) infinite alternate-reverse; }
}

/* "Auf einen Blick"-Karte: kleine Index-Liste der Behandlungsbereiche */
.subhero__promise {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.subhero__areas { border-top: 1px solid rgba(25, 23, 21, 0.12); }
.subhero__areas a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(25, 23, 21, 0.12);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.subhero__areas a:hover { color: var(--accent-deep); }
.subhero__areas span { font-size: 0.8rem; font-weight: 400; color: var(--muted); white-space: nowrap; }

/* ------------------------------ Behandlungs-Explorer --------------------- */
/* Zeile = Link auf die Detailseite: Name und Techniktag links, Kurztext in der
   Mitte, Richtpreis und Detail-Button rechts. Auf Mobil stapelt die Zeile.
   Der Button ist ein Pseudo-Element, damit jede neue Zeile ihn automatisch
   erbt. Er signalisiert dauerhaft, dass die ganze Zeile klickbar ist. */
.treat-list { border-top: 1px solid rgba(25, 23, 21, 0.14); }
.treat {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr) auto auto;
  grid-template-areas: "name desc price go";
  gap: clamp(0.4rem, 2.4vw, 1.6rem);
  align-items: baseline;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(0.5rem, 1.5vw, 0.85rem);
  margin-inline: clamp(-0.5rem, -1.5vw, -0.85rem);
  border-bottom: 1px solid rgba(25, 23, 21, 0.14);
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.25s var(--ease);
}
.treat::after {
  content: "Details \2192";
  grid-area: go;
  justify-self: end;
  align-self: start;
  margin-top: -0.2rem; /* optisch auf die Preiszeile ausrichten */
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(125, 90, 80, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--accent-deep);
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.treat:hover { background: rgba(255, 255, 255, 0.55); }
.treat:hover::after,
.treat:focus-visible::after { background: var(--accent); border-color: var(--accent); color: #fff; }
.treat__label { grid-area: name; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.treat__desc  { grid-area: desc; font-size: 0.98rem; line-height: 1.55; color: var(--muted); }
.treat__price { grid-area: price; font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; color: var(--accent-deep); white-space: nowrap; text-align: right; }
.treat__price--soft { color: var(--muted); font-weight: 500; }
.treat__name { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; transition: color 0.2s var(--ease); }
.treat:hover .treat__name { color: var(--accent-deep); }

/* ------------------------------ Preisliste ------------------------------- */
.preise__head { max-width: 62ch; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.preise__head h2 { margin-bottom: 1rem; }
.preise__note { font-size: 1rem; line-height: 1.6; color: var(--muted); }
.preise__note + .preise__note { margin-top: 0.75rem; }

.preisliste { display: flex; flex-direction: column; }

/* Kategorie als klare Zwischenüberschrift mit feiner Trennlinie,
   kein winziges Uppercase-Label mehr */
.preisliste__cat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(2rem, 3.5vw, 2.75rem) 0 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.preisliste__cat::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.preisliste__cat:first-child { margin-top: 0; }

/* Jede Gruppe ist eine eigene weiße Karte: klar abgegrenzt und antippbar */
.preisgruppe {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  box-shadow: 0 14px 34px -30px rgba(25, 23, 21, 0.5);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.preisgruppe:hover { border-color: rgba(125, 90, 80, 0.32); }
.preisgruppe[open] { box-shadow: 0 22px 46px -30px rgba(25, 23, 21, 0.5); }

.preisgruppe > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.4vw, 24px);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.preisgruppe > summary::-webkit-details-marker { display: none; }
.preisgruppe > summary:hover { color: var(--accent-deep); }
.preisgruppe[open] > summary { border-bottom: 1px solid var(--hairline); }
.preisgruppe__title { font-size: 1.08rem; font-weight: 550; letter-spacing: -0.015em; }
.preisgruppe__title small {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

/* Plus/Minus-Marker in dezentem Kreis, gut sichtbar */
.preisgruppe__marker {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--panel);
  transition: background-color 0.25s var(--ease);
}
.preisgruppe:hover .preisgruppe__marker { background: rgba(125, 90, 80, 0.12); }
.preisgruppe__marker::before,
.preisgruppe__marker::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.8px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  transition: transform 0.35s var(--ease);
}
.preisgruppe__marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.preisgruppe[open] .preisgruppe__marker::after { transform: translate(-50%, -50%) rotate(0deg); }

.preisgruppe__body { overflow: hidden; }
.preisgruppe__hint {
  padding: 12px clamp(18px, 2.4vw, 24px) 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.preis-list { padding: 6px 0 12px; }
.preis-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 11px clamp(18px, 2.4vw, 24px);
  transition: background-color 0.2s var(--ease);
}
.preis-row + .preis-row { border-top: 1px solid rgba(25, 23, 21, 0.07); }
.preis-row:hover { background: rgba(125, 90, 80, 0.045); }
.preis-row span:first-child { color: var(--ink); line-height: 1.45; }
.preis-row span:last-child { font-weight: 600; color: var(--accent-deep); white-space: nowrap; text-align: right; }

/* ------------------------------ Kooperationen ---------------------------- */
.partner__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--r-panel);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background:
    radial-gradient(60% 74% at 4% 4%, rgba(210, 152, 141, 0.26), transparent 60%),
    radial-gradient(56% 70% at 98% 100%, rgba(201, 138, 125, 0.20), transparent 60%),
    rgba(253, 252, 250, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 26px 60px -36px rgba(25, 23, 21, 0.34);
}
@media (prefers-reduced-transparency: reduce) {
  .partner__panel {
    background:
      radial-gradient(60% 74% at 4% 4%, rgba(210, 152, 141, 0.16), transparent 60%),
      #FBFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-color: var(--hairline);
  }
}
.partner__head { max-width: 60ch; margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.partner__head h2 { margin-bottom: 1rem; }
.partner__intro { font-size: 1.075rem; line-height: 1.6; color: var(--muted); }
.partner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(25, 23, 21, 0.14);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
.partner__group h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}
.partner__brands { display: flex; flex-direction: column; gap: 0.7rem; }
.partner__brands li { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.partner__brands li small { display: block; font-size: 0.85rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-top: 2px; }

/* ------------------------------ Responsive · Ästhetik -------------------- */
@media (max-width: 700px) {
  .treat {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name price" "desc desc" "go go";
    align-items: start;
    gap: 6px 1rem;
  }
  .treat__desc { margin-top: 2px; }
  .treat::after { justify-self: start; align-self: start; margin-top: 0.7rem; }
}

/* ==========================================================================
   Unterseite · Team
   Die drei Bereichs-Glows (Rose = Ästhetik, Salbei = Allgemeinmedizin,
   Blau = Urologie) fusionieren im Hero und im Abschluss, liegen als Farbpaar
   hinter den Porträts und spalten sich in der Haltungs-Sektion in drei Karten.
   ========================================================================== */

/* 1) Hero-Aside: die drei Felder fusionieren als Signatur.
   Neutraler Milchglasgrund mit drei zarten Radials; die Orbs liefern die Farbe. */
.subhero__card--team {
  background:
    radial-gradient(60% 74% at 8% 4%,   rgba(217, 167, 158, 0.38), transparent 60%),
    radial-gradient(56% 70% at 98% 30%,  rgba(171, 181, 160, 0.32), transparent 60%),
    radial-gradient(64% 80% at 24% 104%, rgba(163, 179, 196, 0.38), transparent 60%),
    rgba(253, 252, 250, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}
/* eine Spur kräftiger als auf den Ein-Feld-Unterseiten */
.subhero__card--team .subhero__orb { opacity: 0.72; }
@media (prefers-reduced-transparency: reduce) {
  .subhero__card--team {
    background:
      radial-gradient(60% 74% at 8% 4%,   rgba(217, 167, 158, 0.20), transparent 60%),
      radial-gradient(64% 80% at 24% 104%, rgba(163, 179, 196, 0.20), transparent 60%),
      #FBFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* 2) Dr. Tvrdeić: zwei Felder als Lichtpaar. Rose (Bestand) liegt oben links,
   der neue Salbei-Orb gegenüber unten rechts. */
.lead-doc__orb--sage2 { width: 300px; height: 280px; background: var(--sage); right: -8%; bottom: 4%; }
@media (prefers-reduced-motion: no-preference) {
  .lead-doc__orb--sage2 { animation: orb-drift 21s var(--ease) infinite alternate-reverse; }
}

/* 3) Dr. Miloš: ruhiges Blau-Paar. Steel oben links, Blau (Bestand) unten rechts. */
.lead-doc__orb--steel { width: 320px; height: 300px; background: #94A9BF; left: -6%; top: 8%; }
@media (prefers-reduced-motion: no-preference) {
  .lead-doc__orb--steel { animation: orb-drift 18s var(--ease) infinite alternate; }
}

/* 4) Zweites Profil spiegeln: Porträt rechts, Text links (Doppelseite).
   Nur ab 901px; darunter greift die Standard-Einspaltenregel und das Porträt
   (im DOM zuerst) stapelt oben. */
@media (min-width: 901px) {
  .lead-doc--flip .lead-doc__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .lead-doc--flip .lead-doc__portrait { order: 2; }
}

/* 5) "So arbeiten wir": drei getönte Glaskarten aus dem Pillar-Rezept.
   Der Farbhöhepunkt der Seite. */
.values__head { max-width: 60ch; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.values__head h2 { margin-bottom: 1rem; }
.values__lead { font-size: 1.125rem; line-height: 1.65; color: var(--muted); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.value {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-panel);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(64% 72% at 6% -4%,   rgba(var(--glow), 0.32), transparent 62%),
    radial-gradient(52% 60% at 104% 106%, rgba(var(--glow), 0.20), transparent 62%),
    rgba(253, 252, 250, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 26px 60px -34px rgba(25, 23, 21, 0.35);
}
.value--rose { --glow: 205, 116, 104; }   /* wie .pillar--aesthetik */
.value--sage { --glow: 122, 164, 118; }   /* wie .pillar--gp */
.value--blue { --glow: 112, 150, 200; }   /* wie .pillar--uro */

.value__title { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 0.6rem; }
.value__text  { font-size: 1rem; line-height: 1.62; color: var(--muted); }

@media (prefers-reduced-transparency: reduce) {
  .value {
    background:
      radial-gradient(64% 72% at 6% -4%, rgba(var(--glow), 0.16), transparent 62%),
      #FBFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-color: var(--hairline);
  }
}
@media (hover: hover) {
  .value { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
  .value:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -36px rgba(25, 23, 21, 0.4); }
}
@media (max-width: 820px) {
  .values__grid { grid-template-columns: 1fr; }
}

/* 6) Ordinationsteam: derselbe Frosted-Panel-Korpus (.pillar__panel), nur der
   Grund wird auf Tri-Glow überschrieben, ruhiger als die Werte-Karten. */
.pillar__panel--team {
  background:
    radial-gradient(52% 62% at 4% -4%,  rgba(217, 167, 158, 0.20), transparent 62%),
    radial-gradient(48% 58% at 100% 8%, rgba(163, 179, 196, 0.18), transparent 62%),
    radial-gradient(60% 68% at 96% 104%,rgba(171, 181, 160, 0.18), transparent 60%),
    rgba(253, 252, 250, 0.55);
}
@media (prefers-reduced-transparency: reduce) {
  .pillar__panel--team {
    background:
      radial-gradient(52% 62% at 4% -4%, rgba(217, 167, 158, 0.14), transparent 62%),
      #FBFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-color: var(--hairline);
  }
}

/* 7) Abschluss-Band: die drei Felder fusionieren ein letztes Mal
   (Struktur wie .cta__panel--aesthetik, nur dreifarbig). */
.cta__panel--team {
  background:
    radial-gradient(56% 120% at 2% 6%,   rgba(210, 152, 141, 0.30), transparent 60%),
    radial-gradient(50% 110% at 52% 108%, rgba(150, 170, 142, 0.24), transparent 60%),
    radial-gradient(56% 120% at 100% 90%, rgba(146, 168, 196, 0.28), transparent 60%),
    linear-gradient(155deg, #F6F1EC 0%, #E7EDE4 100%);
}

/* ==========================================================================
   Behandlung Detailseite  ·  /behandlungen/<slug>
   Reuse of .subhero / .leistungen__panel--aesthetik / .faq / .cta; only the
   detail-specific facts list, body prose and related-links are new.
   ========================================================================== */

/* Geraeteabbildung zwischen Subhero und Inhalt.
   Die Produktfotos liegen auf weissem Grund, deshalb sitzt das Bild auf einer
   weissen Flaeche (--card) mit Hairline: so gibt es keine sichtbare Kante
   zwischen Bildhintergrund und Seitenhintergrund (--canvas ist waermer). */
.treatment-media { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.treatment-media__figure { margin: 0; }
.treatment-media__figure img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-media);
}
/* Quadratische Motive: ohne Deckel wuerde das Bild ueber die volle Panelbreite
   laufen und damit deutlich hoeher als die 16x9 Motive der anderen Seiten. */
.treatment-media__figure--square {
  max-width: 560px;
  margin-inline: auto;
}
/* Motive, die kleiner als die Panelbreite vorliegen: auf ihre native Breite
   gedeckelt, damit sie nicht hochskaliert und dadurch weich werden. */
.treatment-media__figure--capped {
  max-width: 720px;
  margin-inline: auto;
}
.treatment-media__figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--soft);
}

/* "Auf einen Blick" Faktenliste in der Subhero-Karte */
.treatment__facts { border-top: 1px solid rgba(25, 23, 21, 0.12); margin-bottom: 0.4rem; }
.treatment__facts div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(25, 23, 21, 0.12);
}
.treatment__facts dt { font-size: 0.82rem; font-weight: 500; color: var(--muted); }
.treatment__facts dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: right;
}

/* Fließtext im Rosé-Panel */
.treatment__body { max-width: 70ch; }
.treatment__body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.treatment__body h3 {
  font-size: 1.2rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0.85rem;
}
.treatment__body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
}
.treatment__body p + p { margin-top: 1rem; }

/* Rechtlicher Pflichthinweis am Ende des Fliesstexts: bewusst leiser als der
   Fliesstext, abgesetzt durch eine Hairline. */
.treatment__body .treatment__note {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(25, 23, 21, 0.12);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--soft);
}

/* Aufzählungen: Hairline-Reihen mit Akzentpunkt, keine Dekonummern */
.treatment__list,
.treatment__steps {
  list-style: none;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(25, 23, 21, 0.12);
}
.treatment__list li,
.treatment__steps li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.4rem;
  border-bottom: 1px solid rgba(25, 23, 21, 0.12);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
}
.treatment__list li::before,
.treatment__steps li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.12em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Verwandte Behandlungen */
.related__title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.related__list { border-top: 1px solid var(--hairline); }
.related__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.related__list a:hover { color: var(--accent-deep); }
.related__cat { font-size: 0.82rem; font-weight: 400; color: var(--muted); white-space: nowrap; }

/* ==========================================================================
   Abrechnung · Kasse, Wahlarzt oder privat
   Der Praxisverbund kombiniert drei Modelle unter einem Dach. Diese Bausteine
   machen an jeder Stelle sichtbar, welches gerade gilt: ein Hinweisstreifen im
   Hero, ein Billing-Hinweis über den Leistungslisten, die Schritte der
   Wahlarztabrechnung und die Vergleichskarten auf der Startseite.
   ========================================================================== */

/* ------------------ Hinweisstreifen unter dem Hero-Intro ------------------ */
.subhero__note {
  margin-top: 1.1rem;
  padding: 0.85rem 1.1rem;
  max-width: 58ch;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.subhero__note strong { color: var(--ink); font-weight: 600; }
.subhero--uro .subhero__note { border-left-color: #6E96C8; }

/* ------------- Abrechnungshinweis direkt über einer Leistungsliste -------- */
.leistungen__billing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-bottom: clamp(1rem, 2.4vw, 1.4rem);
  padding: 0.8rem 1.05rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(25, 23, 21, 0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.leistungen__billing-label {
  flex: none;
  padding: 3px 11px;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FDFCFA;
}
.leistungen__billing--kasse { border-left-color: #5E7F5A; }
.leistungen__billing--kasse .leistungen__billing-label { background: #4E6B4B; }
.leistungen__billing--privat { border-left-color: var(--accent); }
.leistungen__billing--privat .leistungen__billing-label { background: var(--accent-deep); }
.leistungen__billing--wahlarzt { border-left-color: #6E96C8; }
.leistungen__billing--wahlarzt .leistungen__billing-label { background: #3F6394; }

/* -------------------- Dritte Spalte im "Gut zu wissen" ------------------- */
.info-band__cols--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ---------------- Vergleich der drei Modelle auf der Startseite ---------- */
.abrechnung { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.abrechnung__head {
  max-width: 62ch;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.abrechnung__head h2 { margin-bottom: 0.75rem; }
.abrechnung__head p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}
.abrechnung__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.abrechnung__card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 18px 40px -30px rgba(25, 23, 21, 0.4);
}
.abrechnung__card--gp { border-top-color: #5E7F5A; }
.abrechnung__card--uro { border-top-color: #6E96C8; }
.abrechnung__card--aes { border-top-color: var(--accent); }
.abrechnung__badge {
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(25, 23, 21, 0.06);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.abrechnung__card--gp .abrechnung__badge { background: rgba(94, 127, 90, 0.14); color: #3E5A3B; }
.abrechnung__card--uro .abrechnung__badge { background: rgba(110, 150, 200, 0.16); color: #3F6394; }
.abrechnung__card--aes .abrechnung__badge { background: rgba(125, 90, 80, 0.13); color: var(--accent-deep); }
.abrechnung__title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.abrechnung__lead {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}
.abrechnung__facts {
  display: grid;
  gap: 0.5rem;
  margin: 0.2rem 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(25, 23, 21, 0.09);
  list-style: none;
}
.abrechnung__facts li {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
}
.abrechnung__facts span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1px;
}
.abrechnung__note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}
.abrechnung__card .text-link { margin-top: auto; align-self: flex-start; padding-top: 0.4rem; }
.abrechnung__foot {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(25, 23, 21, 0.09);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

/* -------------------------- e-card Hinweis Kontakt ----------------------- */
.geo__hint--ecard {
  margin-top: 0.9rem;
  padding: 0.85rem 1.05rem;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.geo__hint--ecard strong { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .abrechnung__grid { grid-template-columns: 1fr; }
  .info-band__cols--three { grid-template-columns: 1fr; }
  .abrechnung__facts li { grid-template-columns: 7.5rem minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .abrechnung__facts li { grid-template-columns: 1fr; gap: 0.15rem; }
  .leistungen__billing { flex-direction: column; align-items: flex-start; }
}

/* --------- Abrechnungszeile in den Bereichssäulen der Startseite --------- */
.pillar__billing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.pillar__billing-label {
  flex: none;
  padding: 3px 11px;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FDFCFA;
}
.pillar--gp .pillar__billing { border-left-color: #5E7F5A; }
.pillar--gp .pillar__billing-label { background: #4E6B4B; }
.pillar--uro .pillar__billing { border-left-color: #6E96C8; }
.pillar--uro .pillar__billing-label { background: #3F6394; }

@media (max-width: 560px) {
  .pillar__billing { flex-direction: column; align-items: flex-start; }
}
