/* ==========================================================================
   dr-stephan-guenther.de · Aesthetix-CI
   Palette: Navy / Aubergine / Gold (Brand-Tokens der Schwester-Site,
   SSOT: schamlippenverkleinerung-duesseldorf.de/assets/css/styles.css)
   Typo: Cormorant Garamond (Display) + Montserrat (Text/Labels)
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
}

:root {
  /* Colors — Aesthetix Brand */
  --aubergine:       #99317F;
  --aubergine-dark:  #7A2766;
  --aubergine-deep:  #4F1A41;
  --gold:            #D1AD6F;
  --gold-light:      #E4D4B4;
  --gold-dark:       #B89855;

  --bg-darkest:      #0F0F1A;
  --bg-dark:         #1A1A2E;
  --bg-mid:          #1F1F36;
  --bg-elev:         #262642;
  --cream:           #F8F7F5;

  --text:            #FFFFFF;
  --text-mute:       rgba(255, 255, 255, 0.74);
  --text-soft:       rgba(255, 255, 255, 0.55);
  --text-faint:      rgba(255, 255, 255, 0.32);

  --border:          rgba(255, 255, 255, 0.08);
  --border-strong:   rgba(255, 255, 255, 0.16);
  --border-gold:     rgba(209, 173, 111, 0.32);

  /* Glassmorphism */
  --glass-bg:        rgba(255, 255, 255, 0.04);
  --glass-bg-strong: rgba(255, 255, 255, 0.06);
  --glass-blur:      blur(20px);

  /* Gradients */
  --grad-hero: radial-gradient(ellipse at 25% 30%, rgba(153, 49, 127, 0.34) 0%, rgba(15, 15, 26, 0) 55%),
               radial-gradient(ellipse at 78% 78%, rgba(209, 173, 111, 0.26) 0%, rgba(15, 15, 26, 0) 50%),
               radial-gradient(ellipse at 50% 95%, rgba(228, 212, 180, 0.10) 0%, rgba(15, 15, 26, 0) 45%),
               linear-gradient(180deg, #1A1A2E 0%, #0F0F1A 100%);
  --grad-aubergine: linear-gradient(135deg, var(--aubergine) 0%, var(--aubergine-dark) 100%);
  --grad-gold:      linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  --grad-text-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Spacing (Skala der Schwester-Site) */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;

  /* Shadows */
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-gold:  0 8px 24px rgba(209, 173, 111, 0.24);
  --shadow-deep:  0 20px 60px rgba(0, 0, 0, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t-base: 0.32s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection { background: var(--gold); color: var(--bg-darkest); }

/* Nur für Screenreader/SEO sichtbar (Heading-Struktur ohne optische Änderung) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--gold);
  color: var(--bg-darkest);
  padding: .8rem 1.4rem;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .08em;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0 0 1.4rem;
  color: var(--text);
}

h1 { font-size: clamp(2.75rem, 7.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 600; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: transparent;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
          background-clip: text;
}

p { margin: 0 0 1.3rem; color: var(--text-mute); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-mute);
}

.overline {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.overline::before {
  content: '';
  width: 2.6rem;
  height: 1px;
  background: var(--grad-gold);
  flex: none;
}

/* Fließtext-Hervorhebung */
.hl {
  background: linear-gradient(to top, rgba(209, 173, 111, .26) 0 .42em, transparent .42em);
  padding: 0 .08em;
  color: var(--text);
}

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

.wrap {
  width: min(100% - 3rem, 73.75rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background: var(--bg-dark);
}

/* dunkle Varianten */
.on-dark { background: var(--bg-darkest); }

/* helle Akzent-Fläche (wie .section--light der Schwester-Site) */
.bg-tint { background: var(--cream); color: #2D2D2D; }
.bg-tint h1, .bg-tint h2, .bg-tint h3 { color: #1A1A2E; }
.bg-tint p { color: #4A4A55; }
.bg-tint .lede { color: #4A4A55; }
.bg-tint .overline { color: var(--aubergine); }
.bg-tint h1 em, .bg-tint h2 em, .bg-tint h3 em {
  background: linear-gradient(135deg, var(--aubergine) 0%, var(--aubergine-dark) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.bg-tint .hl {
  background: linear-gradient(to top, rgba(153, 49, 127, .16) 0 .42em, transparent .42em);
  color: #1A1A2E;
}

/* Sektionskopf mit römischer Ziffer */
.sec-head {
  position: relative;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.sec-num {
  position: absolute;
  top: -1.2em;
  right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 9.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-gold);
  pointer-events: none;
  user-select: none;
}
.bg-tint .sec-num { -webkit-text-stroke: 1px rgba(153, 49, 127, .25); }

/* --------------------------------------------------------------------------
   Buttons & Links
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3rem;
  padding: .95rem 1.7rem;
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}

.btn-solid {
  color: var(--bg-darkest);
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
}
.btn-solid:hover, .btn-solid:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(209, 173, 111, 0.36);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--glass-bg-strong);
  border-color: var(--gold);
}
.bg-tint .btn-ghost { color: #1A1A2E; border-color: rgba(0, 0, 0, .2); }
.bg-tint .btn-ghost:hover { border-color: var(--aubergine); background: rgba(153, 49, 127, .07); }

.btn svg { width: 1rem; height: 1rem; flex: none; }

/* Textlink mit wachsender Unterstreichung (Schwester-Pattern) */
.link-sweep {
  text-decoration: none;
  font-weight: 500;
  color: var(--gold);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: .1em;
  transition: color var(--t-fast) var(--ease), background-size var(--t-fast) var(--ease);
}
.link-sweep:hover, .link-sweep:focus-visible { color: var(--gold-light); background-size: 100% 2px; }
.bg-tint .link-sweep { color: var(--aubergine); }
.bg-tint .link-sweep:hover { color: var(--aubergine-dark); }

/* Pfeillink */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  transition: color var(--t-fast) var(--ease);
}
.arrow-link:hover { color: var(--gold-light); }
.bg-tint .arrow-link { color: var(--aubergine); }
.bg-tint .arrow-link:hover { color: var(--aubergine-dark); }

.arrow-link svg {
  width: 1.4rem;
  height: 1rem;
  transition: transform var(--t-base) var(--ease);
}
.arrow-link:hover svg, .arrow-link:focus-visible svg { transform: translateX(.45rem); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--text);
  background: rgba(15, 15, 26, 0.72);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base) var(--ease);
}

.site-head.scrolled { background: rgba(15, 15, 26, 0.88); }

.head-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
  /* Kopfleiste darf breiter sein als die Inhaltsspalte (.wrap = 73.75rem), damit
     Logo + volle Textnav + Telefonnummer + Beratung + Menü einzeilig passen. */
  width: min(100% - 3rem, 86rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--t-base) var(--ease);
}
.brand:hover .brand-mark img { transform: scale(1.07); }

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-name small {
  font-family: var(--sans);
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .25rem;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mute);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: .6rem;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-base) var(--ease);
}

.main-nav a:hover, .main-nav a:focus-visible,
.main-nav a[aria-current="page"] { color: var(--gold); }

.main-nav a:hover::after, .main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.head-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(.5rem, 1.4vw, 1rem);
  flex-shrink: 0;
}

.head-tel {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.head-tel svg { width: .95rem; height: .95rem; flex: none; }
.head-tel:hover { color: var(--gold-light); }

/* Kompakter Header-Button (Beratung) */
.btn-sm {
  min-height: 2.5rem;
  padding: .6rem 1.15rem;
  font-size: .82rem;
}

/* Menü-Trigger (Burger + "Menü"-Label), auf allen Viewports sichtbar */
.nav-toggle {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  height: 44px;
  padding-inline: .7rem;
  border-radius: var(--r-sm);
  background: var(--glass-bg);
  border: 0;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.nav-toggle:hover { background: var(--glass-bg-strong); }

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 20px;
  height: 16px;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars span {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast);
}
.nav-toggle__label {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ Karten-Megamenü (Overlay-Panel, alle Viewports) ============ */
.nav-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 4.75rem;
  bottom: 0;
  z-index: 90; /* unter dem Header (z 100) -> Schliessen-X im Header bleibt klickbar */
  background: rgba(15, 15, 26, 0.97);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--border-gold);
  box-shadow: var(--shadow-deep);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  .nav-menu.open .nav-menu__inner { animation: nav-menu-in .4s var(--ease); }
}
@keyframes nav-menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-menu__inner { padding-block: var(--sp-lg) var(--sp-xl); }

.nav-menu__eyebrow,
.nav-menu__more-label {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--sp-md);
}

.nav-menu__grid {
  display: grid;
  gap: var(--sp-md);
  grid-template-columns: repeat(2, 1fr); /* mobil bereits 2-spaltig (kompaktes Commerce-Grid) */
}
@media (min-width: 560px) { .nav-menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .nav-menu__grid { grid-template-columns: repeat(4, 1fr); } }

.nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.nav-card:hover, .nav-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-deep);
}
.nav-card[aria-current="page"] { border-color: var(--border-gold); }
.nav-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(153, 49, 127, 0.3), rgba(15, 15, 26, 0.6));
}
.nav-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Quadratisches Porträt (Vita) im Querformat-Fenster aufs Gesicht ausrichten */
.nav-card--portrait .nav-card__media img { object-position: center top; }
.nav-card__body { display: flex; flex-direction: column; gap: .25rem; padding: var(--sp-md); }
.nav-card__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; line-height: 1.15; color: var(--text); }
.nav-card__desc { font-size: .85rem; color: var(--text-mute); line-height: 1.5; }
.nav-card__badge {
  position: absolute; top: var(--sp-md); left: var(--sp-md); z-index: 1;
  display: inline-flex; align-items: center;
  padding: .3rem .7rem; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--aubergine-deep);
  font-family: var(--sans); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.nav-card__tag {
  font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}

/* Featured (Methode): volle Breite, ab 720 zweispaltig */
.nav-card--featured { grid-column: 1 / -1; border-color: var(--border-gold); }
.nav-card--featured .nav-card__title { font-size: 1.35rem; }
@media (min-width: 720px) {
  .nav-card--featured { flex-direction: row; align-items: center; }
  .nav-card--featured .nav-card__media { flex: 0 0 32%; }
  .nav-card--featured .nav-card__body { justify-content: center; padding: var(--sp-md) var(--sp-lg); gap: .35rem; }
  .nav-card--featured .nav-card__title { font-size: 1.5rem; }
}

/* Ratgeber-Funnel: kompakte Karten */
.nav-menu__section { margin-top: var(--sp-lg); padding-top: var(--sp-lg); border-top: 1px solid var(--border); }
.nav-menu__grid--funnel { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .nav-menu__grid--funnel { grid-template-columns: repeat(4, 1fr); } }
.nav-card--sm .nav-card__media { aspect-ratio: 4 / 3; }
.nav-card--sm .nav-card__media img { object-position: center top; }
.nav-card--sm .nav-card__body { padding: .75rem var(--sp-md) var(--sp-md); gap: .15rem; }
.nav-card--sm .nav-card__title { font-size: 1.05rem; }

/* Menü-Footer: CTA + Telefon */
.nav-menu__foot {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--border-gold);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-md);
}
.nav-menu__phone {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--gold-light); text-decoration: none;
}
.nav-menu__phone svg { flex: none; }
.nav-menu__phone:hover { color: var(--gold); }
@media (max-width: 559px) {
  .nav-menu__foot .btn { flex: 1 1 100%; }
  .nav-menu__phone { flex: 1 1 100%; justify-content: center; }
}

body.nav-open { overflow: hidden; }

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

.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--text);
  overflow: hidden;
}

.hero::after {
  /* feines Korn */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.hero-copy { padding-bottom: 0; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-kicker::before, .hero-kicker::after {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: var(--grad-gold);
  opacity: .8;
}

.hero h1 { margin-bottom: 1.6rem; line-height: .98; }
.hero h1 .h1-prefix {
  display: block;
  font-size: .36em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .04em;
  color: transparent;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
          background-clip: text;
  margin-bottom: .35em;
}

.hero .lede { max-width: 34rem; font-family: var(--sans); font-weight: 300; font-size: clamp(1.125rem, 1.6vw, 1.375rem); color: var(--text); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* Vorstellungsvideo (Zwei-Klick: iframe entsteht erst nach Klick via JS) */
.hero-video {
  position: relative;
  margin: 0;
}

.hero-video-frame, .hero-video-trigger, .hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
}

.hero-video-trigger {
  position: relative;
  padding: 0;
  border: 1px solid var(--border-gold);
  background: var(--bg-darkest);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-deep);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.hero-video-trigger:hover { border-color: var(--gold); box-shadow: 0 24px 70px rgba(0, 0, 0, .55), var(--shadow-gold); }

.hero-video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.hero-video-trigger:hover img { transform: scale(1.03); }

.play-pill {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  padding: .7rem 1.4rem;
  background: rgba(209, 173, 111, .95);
  color: var(--bg-dark);
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.hero-video-trigger:hover .play-pill {
  transform: translateX(-50%) translateY(-3px);
  background: var(--gold-light);
}

.hero-video iframe { border: 1px solid var(--border-gold); box-shadow: var(--shadow-deep); }

.hero-video-note {
  margin-top: .9rem;
  font-size: .76rem;
  line-height: 1.6;
  color: var(--text-soft);
  text-align: center;
}

/* Vertikaler Schrift-Rail */
.hero-rail {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  z-index: 2;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-rail::before {
  content: '';
  width: 1px;
  height: 3.2rem;
  background: var(--grad-gold);
}

/* Stat-Band */
.stat-band {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-gold);
  background: rgba(15, 15, 26, .45);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 2rem 1.5rem 2.2rem;
  border-right: 1px solid var(--border);
  transition: background var(--t-base) var(--ease);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(153, 49, 127, .1); }

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
          background-clip: text;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin-top: .7rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Editorial-Raster (Text + Bild)
   -------------------------------------------------------------------------- */

.duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.duo-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.duo-figure:hover { border-color: var(--border-gold); box-shadow: var(--shadow-deep); }

.duo-figure img {
  transition: transform 1.1s var(--ease);
}
.duo-figure:hover img { transform: scale(1.04); }

.duo-figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: .75rem 1.2rem;
  background: rgba(15, 15, 26, .85);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-top-right-radius: var(--r-md);
  color: var(--gold);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* Bild mit Goldrahmen-Versatz */
.framed { position: relative; overflow: visible; }
.framed::after {
  content: '';
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  pointer-events: none;
  transition: inset .6s var(--ease);
}
.framed:hover::after { inset: .7rem -.7rem -.7rem .7rem; }
.framed img { border-radius: var(--r-lg); }

/* dunkles Panel für freigestellte Bilder */
.figure-dark {
  background:
    radial-gradient(110% 90% at 70% 15%, rgba(153, 49, 127, .25), transparent 55%),
    radial-gradient(90% 70% at 20% 90%, rgba(209, 173, 111, .14), transparent 55%),
    var(--bg-darkest);
  padding: 2.5rem 2rem 0;
}
.figure-dark img {
  -webkit-mask-image: linear-gradient(to top, transparent 0, #000 7%);
  mask-image: linear-gradient(to top, transparent 0, #000 7%);
}

/* Vita-Galerie: Desktop = scroll-gesteuerter Crossfade (JS), Mobil = Swipe (siehe Breakpoint) */
.vita-gallery__track {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.vita-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s var(--ease), transform 1.1s var(--ease);
}
.vita-gallery__img.is-active { opacity: 1; }
/* Quadratisches Porträt im 16:9-Galerie-Fenster aufs Gesicht ausrichten */
.vita-gallery__img--portrait { object-position: center top; }
/* 2. Bild (OP-Team): Dr. Günther sitzt mittig-links -> Mobil-Crop etwas nach links holen (Desktop 16:9 = No-op) */
.vita-gallery__img--shift-left { object-position: 35% center; }
/* „Heute": nur das letzte Bild quadratisch — Rahmen wird 1:1, sobald das Porträt aktiv ist (volles Bild, kein Beschnitt) */
.vita-gallery__track:has(.vita-gallery__img--portrait.is-active) { aspect-ratio: 1 / 1; }
@media (prefers-reduced-motion: reduce) {
  /* sanfter Opacity-Crossfade bleibt erhalten (Fade ist vestibulär unbedenklich); schlägt die globale Transition-Drosselung */
  .vita-gallery__img { transition: opacity .7s var(--ease) !important; }
}

/* Merkmal-Liste mit Goldziffern */
.feature-list {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: padding-left var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.feature-list li:hover { padding-left: .6rem; background: var(--glass-bg); }

.feature-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1.2;
}

.feature-list h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.feature-list p { margin: 0; font-size: .9375rem; color: var(--text-mute); }

.bg-tint .feature-list li { border-color: rgba(0, 0, 0, .1); }
.bg-tint .feature-list li:hover { background: rgba(153, 49, 127, .05); }
.bg-tint .feature-num { color: var(--aubergine); }

/* --------------------------------------------------------------------------
   Karten (Glassmorphism)
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1.4rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-width: 0;
  padding: 2rem 1.8rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.card:hover, .card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--border-gold);
  background: var(--glass-bg-strong);
}

.card-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.card h3 { font-size: 1.45rem; margin: 0; }

.card p { margin: 0; font-size: .9375rem; line-height: 1.6; color: var(--text-mute); }

.card .card-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  min-width: 0;
  color: var(--gold);
}
.card .card-foot svg { width: 1.2rem; height: .9rem; transition: transform var(--t-base) var(--ease); }
.card:hover .card-foot svg { transform: translateX(.4rem); }

/* Ratgeber-Kacheln (Webinar, Broschüre, eBook, Selbsttest) */
.asset-grid { grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr)); }

.asset-card { padding: 1.2rem 1.2rem 1.6rem; }

.asset-card-media {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-darkest);
  margin-bottom: .4rem;
}

.asset-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.asset-card:hover .asset-card-media img { transform: scale(1.04); }

.asset-card-media--contain {
  background:
    radial-gradient(90% 90% at 50% 20%, rgba(153, 49, 127, .18), transparent 60%),
    var(--bg-darkest);
}
.asset-card-media--contain img { object-fit: contain; padding: .7rem; }

.asset-card h3 { font-size: 1.3rem; }
.asset-card .card-tag { margin-top: .3rem; }

.social-grid { margin-top: 1.4rem; }
.asset-card-media--social img { object-position: top; }

/* --------------------------------------------------------------------------
   Mitgliedschaften (auf heller Fläche)
   -------------------------------------------------------------------------- */

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.1rem;
}

.member {
  position: relative;
  padding: 1.7rem 1.6rem;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}

.member:hover {
  transform: translateY(-3px);
  border-color: rgba(153, 49, 127, .45);
  box-shadow: 0 18px 44px rgba(79, 26, 65, .16);
}

.member-abbr {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: #1A1A2E;
  transition: color var(--t-base) var(--ease);
}
.member:hover .member-abbr { color: var(--aubergine); }

.member-role {
  display: inline-block;
  margin-left: .6rem;
  padding: .2rem .6rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--grad-aubergine);
  border-radius: var(--r-pill);
  vertical-align: middle;
}

.member-name {
  margin: .45rem 0 0;
  font-size: .85rem;
  line-height: 1.6;
  color: #4A4A55;
}

/* dunkle Variante (falls Member-Grid auf dunkler Fläche) */
.section:not(.bg-tint) .member { background: var(--glass-bg); border-color: var(--border); }
.section:not(.bg-tint) .member-abbr { color: var(--text); }
.section:not(.bg-tint) .member-name { color: var(--text-soft); }
.section:not(.bg-tint) .member:hover { border-color: var(--border-gold); box-shadow: var(--shadow-deep); }
.section:not(.bg-tint) .member:hover .member-abbr { color: var(--gold); }

/* --------------------------------------------------------------------------
   Zitat-Band
   -------------------------------------------------------------------------- */

.quote-band {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(153, 49, 127, .18), transparent 60%),
    var(--bg-mid);
  overflow: hidden;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 52rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.quote-band cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Timeline (Vita)
   -------------------------------------------------------------------------- */

.timeline {
  position: relative;
  margin-top: 1rem;
  padding-left: clamp(2.2rem, 6vw, 4.5rem);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: .55rem;
  width: 1px;
  background: var(--border-strong);
}

.timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: .55rem;
  width: 1px;
  height: var(--tl-progress, 0%);
  background: var(--grad-gold);
  transition: height .15s linear;
}

.tl-item {
  position: relative;
  padding: 0 0 clamp(2.6rem, 5vw, 4rem);
}

.tl-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(2.2rem, 6vw, 4.5rem) + .25rem);
  top: .55rem;
  width: .65rem;
  height: .65rem;
  border: 1px solid var(--gold);
  background: var(--bg-dark);
  border-radius: 2px;
  transform: rotate(45deg);
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  z-index: 1;
}

.tl-item:hover::before { background: var(--gold); box-shadow: 0 0 16px rgba(209, 173, 111, .5); }

.tl-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: transparent;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
          background-clip: text;
}

.tl-item h3 { margin: .7rem 0 .55rem; font-size: 1.4rem; }
.tl-item p { max-width: 38rem; margin: 0; color: var(--text-mute); }

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

.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(153, 49, 127, .3) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(209, 173, 111, .2) 0%, transparent 50%),
    var(--bg-darkest);
  color: var(--text);
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.cta-inner h2 { margin-bottom: .8rem; }
.cta-inner p { color: var(--text-mute); max-width: 32rem; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2.2rem;
}

.cta-figure { max-width: 34rem; justify-self: end; }

.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-decoration: none;
  color: var(--gold);
  transition: color var(--t-fast) var(--ease);
}
.cta-tel:hover { color: var(--gold-light); }
.cta-tel svg { width: 1.3rem; height: 1.3rem; }

.cta-note { font-size: .82rem; color: var(--text-soft); margin: 0; }

/* --------------------------------------------------------------------------
   Footer (übernommen von schamlippenverkleinerung-duesseldorf.de)
   -------------------------------------------------------------------------- */

.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  padding: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  padding: var(--sp-2xl) 0 var(--sp-xl);
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: var(--sp-xl);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.5fr 1fr; gap: var(--sp-3xl); }
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.005em;
}
.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  flex-shrink: 0;
}
.footer__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer__brand-name-gold {
  font-style: italic;
  color: transparent;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
          background-clip: text;
}
.footer__tagline {
  color: var(--text-mute);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 380px;
  margin: var(--sp-sm) 0 0;
}
.footer__contact-info h3, .footer__contact-info h4 {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-sm) 0;
}
.footer__contact-info p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 var(--sp-xs) 0;
  color: var(--text-mute);
}
.footer__contact-info strong { color: var(--text); }
.footer__contact-info a {
  color: var(--text-mute);
  text-decoration: none;
  background: none;
  transition: color 0.2s ease;
}
.footer__contact-info a:hover { color: var(--gold); }

.footer__links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl) var(--sp-lg);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-md);
}
@media (min-width: 768px) {
  .footer__links-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer__links-col h3, .footer__links-col h4 {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-sm) 0;
}
.footer__links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.footer__links-col li { margin: 0; color: var(--text-mute); font-size: 0.9375rem; line-height: 1.45; }
.footer__links-col a {
  color: var(--text-mute);
  font-size: 0.9375rem;
  text-decoration: none;
  background: none;
  transition: color 0.2s ease;
  display: inline-block;
  line-height: 1.45;
}
.footer__links-col a:hover,
.footer__links-col a:focus-visible { color: var(--gold); }

.footer__partners {
  padding-bottom: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.footer__partners-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 var(--sp-md) 0;
}
.footer__partners-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  align-items: center;
  justify-items: center;
}
@media (min-width: 480px) { .footer__partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .footer__partners-grid { grid-template-columns: repeat(5, 1fr); } }
.footer__partners-grid li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__partners-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xs) var(--sp-sm);
  min-height: 56px;
  opacity: 0.85;
  filter: grayscale(0.15);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  background: none;
  cursor: zoom-in;
}
.footer__partners-grid a:hover,
.footer__partners-grid a:focus-visible {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.04);
  outline: none;
}
.footer__partners-grid img {
  max-width: 100px;
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 479px) {
  .footer__partners-grid li:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* Track-Record: 10× Focus Top-Mediziner-Jahressiegel chronologisch */
.footer__track-record {
  padding-bottom: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.footer__track-record-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 var(--sp-md) 0;
}
.footer__track-record-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xs);
  align-items: end;
  justify-items: center;
}
@media (min-width: 480px) { .footer__track-record-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 768px) { .footer__track-record-grid { grid-template-columns: repeat(10, 1fr); } }
.footer__track-record-grid li {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__track-record-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-xs);
  opacity: 0.78;
  filter: grayscale(0.2);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
  background: none;
  cursor: zoom-in;
  text-decoration: none;
}
.footer__track-record-grid a:hover,
.footer__track-record-grid a:focus-visible {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
  outline: none;
}
.footer__track-record-grid img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}
.footer__track-record-grid .year {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.footer__legal {
  text-align: center;
  padding: var(--sp-sm) 0;
  font-size: 0.8125rem;
}
.footer__legal a {
  color: var(--text-mute);
  padding: 0 var(--sp-xs);
  text-decoration: none;
  background: none;
}
.footer__legal a:hover { color: var(--gold); }
.footer__legal-sep { color: var(--border-strong); margin: 0 var(--sp-xs); }
.footer__copyright {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.8125rem;
  margin: 0 0 var(--sp-xs) 0;
}
.footer__made-by {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.8125rem;
  padding-bottom: var(--sp-md);
}
.footer__made-by a {
  color: var(--gold);
  text-decoration: none;
  background: none;
  font-weight: 600;
}
.footer__made-by a:hover { text-decoration: underline; text-underline-offset: 3px; color: var(--gold-light); }
.footer__heart { color: var(--aubergine); margin: 0 2px; }

/* Lightbox (Mediziner-Siegel Click-to-Zoom) */
dialog.lightbox {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(92vw, 720px);
  max-height: 90vh;
  padding: 0;
  background: var(--bg-mid);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: visible;
}
dialog.lightbox::backdrop {
  background: rgba(15, 15, 26, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
dialog.lightbox[open] { animation: modal-pop 0.32s var(--ease); }
.lightbox__inner {
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  max-height: 88vh;
  overflow-y: auto;
}
.lightbox__img {
  max-width: 100%;
  max-height: 65vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
}
.lightbox__caption {
  font-size: 0.9375rem;
  color: var(--text-mute);
  text-align: center;
  max-width: 60ch;
  line-height: 1.5;
  margin: 0;
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  border: 1px solid var(--border-strong);
  color: var(--text-mute);
  font-size: 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.lightbox__close:hover { background: var(--aubergine); color: var(--text); transform: rotate(90deg); }

/* SEO-Tag-Cloud (Themen auf dieser Seite) */
.seo-tags {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  padding: var(--sp-lg) 0 var(--sp-xl);
}
.seo-tags__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 var(--sp-sm) 0;
}
.seo-tags__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-tags__list li { margin: 0; }
.seo-tags__item {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-mute);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.seo-tags__item .hash { color: var(--text-soft); margin-right: 1px; font-weight: 700; }
.seo-tags__item--link {
  border-color: rgba(209, 173, 111, 0.32);
  background: rgba(209, 173, 111, 0.04);
  color: var(--text);
}
.seo-tags__item--link .hash { color: var(--gold); }
.seo-tags__item--link:hover,
.seo-tags__item--link:focus-visible {
  border-color: var(--gold);
  background: rgba(209, 173, 111, 0.10);
  color: var(--gold-light);
  outline: none;
}
@media (max-width: 640px) {
  .seo-tags { padding: var(--sp-md) 0; }
  .seo-tags__item { font-size: 0.75rem; padding: 5px 10px; white-space: normal; }
}

/* --------------------------------------------------------------------------
   Unterseiten-Kopf
   -------------------------------------------------------------------------- */

.page-head {
  position: relative;
  background: var(--grad-hero);
  color: var(--text);
  padding: clamp(9rem, 18vh, 12rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.page-head .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.page-head .crumbs a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
.page-head .crumbs a:hover { color: var(--gold); }
.page-head .crumbs li:not(:last-child)::after { content: '·'; margin-left: .6rem; color: var(--gold); }

.page-head h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; }
.page-head .lede { max-width: 44rem; }

/* Hero-Hintergrundvideo (dezent, Navy-Scrim) */
.page-head__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .6;
  pointer-events: none;
}
.page-head__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Nur halbtransparente Abdunklung für Textkontrast — KEIN opaker grad-hero-Layer:
     der enthält eine opake Navy-Basis (#1A1A2E→#0F0F1A) und verdeckte sonst das Video.
     Die opake Basis liegt bereits auf .page-head selbst, hinter dem Video. */
  background:
    linear-gradient(90deg, rgba(15, 15, 26, 0.9) 0%, rgba(15, 15, 26, 0.8) 46%, rgba(15, 15, 26, 0.42) 76%, rgba(15, 15, 26, 0.22) 100%),
    linear-gradient(180deg, rgba(15, 15, 26, 0) 55%, rgba(15, 15, 26, 0.5) 100%);
}
.page-head > .wrap { position: relative; z-index: 2; }
/* Hero-Video bewusst NICHT unter reduce-motion ausblenden: es ist Kern-Bildinhalt
   (stumm, dezent, hinter Scrim) und soll auf jedem Gerät sichtbar sein/laufen. */
/* Mobil: der horizontale Links-Dunkel-Scrim verdeckt auf schmalen Screens das ganze
   Video. Daher vertikaler Verlauf (Video oben sichtbar, Text unten lesbar) + Video kräftiger. */
@media (max-width: 48rem) {
  /* Video soll klar sichtbar sein: deutlich hellerer Scrim + kräftigeres Video.
     Lesbarkeit kommt über einen Text-Schatten statt über einen dunklen Layer. */
  .page-head__bg { opacity: .95; }
  .page-head__scrim {
    background: linear-gradient(180deg,
      rgba(15, 15, 26, 0.22) 0%,
      rgba(15, 15, 26, 0.38) 55%,
      rgba(15, 15, 26, 0.66) 100%);
  }
  .page-head > .wrap { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55); }
}

/* --------------------------------------------------------------------------
   Inhalts-Bausteine
   -------------------------------------------------------------------------- */

.prose { max-width: 44rem; }
.prose h2 { margin-top: 3rem; }
.prose h3 { margin-top: 2.2rem; }

.note-box {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  font-size: .95rem;
}
.note-box p:last-child { margin: 0; }
.note-box strong { color: var(--text); }

.bg-tint .note-box {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, .08);
  border-left-color: var(--aubergine);
}
.bg-tint .note-box strong { color: #1A1A2E; }

/* Legal-Seiten */
.legal h2 { font-size: 1.7rem; margin-top: 2.8rem; }
.legal h3 { font-size: 1.25rem; }
.legal { font-size: .97rem; }

/* --------------------------------------------------------------------------
   FAQ-Accordion (CSS-only via <details>)
   -------------------------------------------------------------------------- */

.faq-list { display: flex; flex-direction: column; gap: var(--sp-sm); max-width: 56rem; }
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease);
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  transition: color var(--t-fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-bg-strong);
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 300;
  transition: transform var(--t-base) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--aubergine);
  color: var(--gold-light);
}
.faq-item summary:hover { color: var(--gold-light); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; border-radius: var(--r-md); }
.faq-item__body { padding: 0 var(--sp-lg) var(--sp-lg); color: var(--text-mute); line-height: 1.7; }
.faq-item__body p { margin: 0 0 .8rem; }
.faq-item__body p:last-child { margin: 0; }

/* --------------------------------------------------------------------------
   Bewertungen (Portal-Karten, Sterne, Patientenstimmen)
   -------------------------------------------------------------------------- */

.rating-lead { max-width: 46rem; }
.rating-lead .big {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  color: transparent;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
          background-clip: text;
  font-variant-numeric: tabular-nums;
}
.rating-lead .big small { font-family: var(--serif); font-size: .4em; font-style: italic; color: var(--text-soft); -webkit-text-fill-color: var(--text-soft); }

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); }

.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}
.plat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
  padding: var(--sp-lg);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.plat-card:hover { transform: translateY(-3px); border-color: var(--border-gold); background: var(--glass-bg-strong); box-shadow: var(--shadow-deep); }
.plat-card:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.plat-card__name { font-family: var(--serif); font-size: 1.2rem; color: var(--text); }
.plat-card__rating { font-size: 1.5rem; font-weight: 600; color: var(--gold-light); font-variant-numeric: tabular-nums; }
.plat-card__rating span { font-size: .9rem; color: var(--text-faint); font-weight: 400; }
.plat-card__count { font-size: .82rem; color: var(--text-mute); }
.plat-card__link { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-top: .3rem; }
.plat-card__link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--t-base) var(--ease); }
.plat-card:hover .plat-card__link svg { transform: translate(2px, -2px); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.6rem 2.4rem;
}
.testimonial-card { border-left: 3px solid var(--gold); padding-left: var(--sp-lg); }
.testimonial-card__glyph { color: var(--gold); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.testimonial-card__quote { font-style: italic; font-size: 1.05rem; line-height: 1.55; color: var(--text); margin: 0; }
.testimonial-card__attrib { font-size: .85rem; color: var(--text-soft); margin-top: .6rem; }

@media (prefers-reduced-motion: reduce) { .plat-card { transition: none; } }

/* --------------------------------------------------------------------------
   Reveal-Animationen
   -------------------------------------------------------------------------- */

.rv {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

/* Hero-Eingang beim Laden */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(1.6rem); }
  to { opacity: 1; transform: none; }
}
@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-kicker { animation: heroUp .8s var(--ease) both; }
.hero h1 { animation: heroUp .8s .1s var(--ease) both; }
.hero .lede { animation: heroUp .8s .22s var(--ease) both; }
.hero-ctas { animation: heroUp .8s .38s var(--ease) both; }
.hero-video { animation: heroFade 1.3s .25s var(--ease) both; }
.hero-rail { animation: heroFade 1.3s .55s var(--ease) both; }
.stat-band { animation: heroFade 1.1s .5s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .timeline::after { height: 100% !important; }
}

/* --------------------------------------------------------------------------
   Interaktive Anatomie-Grafik (methode.html, „Das Prinzip") — von Schwester-Site portiert
   -------------------------------------------------------------------------- */
.anatomy-svg { position: relative; max-width: 520px; margin: 0 auto; overflow: visible; }
.anatomy-svg svg { width: 100%; height: auto; overflow: visible; }

/* Hotspots = SVG-<circle>; Tooltip am Punkt + Detailtext im .anatomy-panel */
.anatomy-hotspot {
  fill: var(--gold);
  stroke: var(--bg-dark);
  stroke-width: 3;
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.2s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.anatomy-hotspot:hover { fill: var(--gold-light, #E4D4B4); }
.anatomy-hotspot:focus { outline: none; }
.anatomy-hotspot:focus-visible { outline: none; stroke: #fff; stroke-width: 4; }
.anatomy-hotspot.is-active {
  fill: var(--gold-light, #E4D4B4);
  stroke: var(--gold);
  transform: scale(1.35);
  filter: drop-shadow(0 0 6px rgba(209, 173, 111, 0.9));
}
.anatomy-hotspot.is-dimmed { opacity: 0.4; }
/* Kontext-Hotspot (äußere Schamlippen): dezent, kein Dauer-Puls — die 3 OP-Bereiche bleiben primär */
.anatomy-hotspot--context { opacity: 0.6; animation: none !important; }
.anatomy-hotspot--context:hover, .anatomy-hotspot--context:focus-visible, .anatomy-hotspot--context.is-active { opacity: 1; }

/* Anatomie-Regionen: Naturton im Ruhezustand, leuchten bei Auswahl auf */
.anatomy-region { transition: fill 0.3s var(--ease), opacity 0.3s var(--ease), filter 0.3s var(--ease); }
.anatomy-region.is-highlight { fill: var(--anatomy-highlight, #EAA63C); filter: url(#anaGlow); stroke: #F7D79A; stroke-width: 2.5; }
/* dezenter Ruhe-Puls; stoppt nach erster Interaktion (.is-touched) */
.anatomy-svg:not(.is-touched) .anatomy-hotspot { animation: anatomyHalo 2.4s var(--ease) infinite; }
@keyframes anatomyHalo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.14); }
}

/* Tooltip neben dem getippten Punkt (Position + Seite per JS) */
.anatomy-tooltip {
  position: absolute;
  left: 0; top: 0;
  transform: translate(20px, -50%);
  padding: 0.35rem 0.7rem;
  background: var(--bg-darkest);
  color: var(--text);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  z-index: 2;
}
.anatomy-tooltip.is-left { transform: translate(calc(-100% - 20px), -50%); }
.anatomy-tooltip.is-visible { opacity: 1; }

/* Info-Panel daneben: Titel (= Label) + Detailsatz */
.anatomy-panel {
  margin-top: var(--sp-lg);
  padding: var(--sp-md) var(--sp-lg);
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  min-height: 4.5em;
  transition: border-color 0.2s var(--ease);
}
.anatomy-panel.is-set { border-color: var(--border-gold); }
.anatomy-panel__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin: 0 0 0.3rem;
}
.anatomy-panel__detail { margin: 0; font-size: 0.95rem; color: var(--text-mute); line-height: 1.55; }
.anatomy-panel__hint { margin: 0; font-size: 0.9rem; color: var(--text-mute); }

/* Popup über der Grafik (mobil; per JS befüllt/geöffnet) */
.anatomy-popup {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%) translateY(8px);
  width: calc(100% - 16px);
  max-width: 320px;
  padding: var(--sp-md) var(--sp-lg);
  background: rgba(20, 20, 36, 0.96);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 5;
}
.anatomy-popup.is-open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.anatomy-popup__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0 0 0.3rem;
  padding-right: 1.6rem;
}
.anatomy-popup__detail { margin: 0; font-size: 0.9rem; color: var(--text-mute); line-height: 1.5; }
.anatomy-popup__close {
  position: absolute;
  top: 4px; right: 4px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
/* Desktop nutzt Tooltip + Seiten-Panel, kein Popup (Breakpoint = .duo-Umbruch 46rem) */
@media (min-width: 46.001rem) { .anatomy-popup { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .anatomy-hotspot, .anatomy-hotspot.is-active { animation: none; transform: none; }
  .anatomy-region { transition: none; }
}
/* Mobil/Stacked (≤46rem): Grafik kompakter, Infos als Popup über der Grafik */
@media (max-width: 46rem) {
  .anatomy-svg { max-width: 280px; }
  .anatomy-tooltip { display: none; }
  .anatomy-panel { display: none; }
  .anatomy-hotspot { r: 14; }
}

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

/* Text-Nav nur zeigen, wenn die ganze Header-Zeile passt (sonst Menü/Megamenü) */
@media (max-width: 85rem) {
  .main-nav { display: none; }
}
@media (max-width: 64rem) {
  .hero-rail { display: none; }
}

/* Mobil/Tablet: Telefonnummer auf das Icon reduzieren (Platz im Header) */
@media (max-width: 48rem) {
  .head-tel__num { display: none; }
}
/* Mobil: Brand vertikal (Logo oben, kleiner Name darunter, am Container-Anfang);
   rechts Telefon-Icon + Burger (Beratung lebt im Menü-Footer).
   head-inner füllt den Viewport (kein 86rem-Breit-Header auf Mobil); Brand flext/schrumpft,
   head-actions bleibt fix -> Burger immer sichtbar. */
@media (max-width: 36rem) {
  /* Brand bleibt wie auf Desktop (Logo + Name + Untertitel). Nur: head-inner füllt den
     Viewport, Brand darf bei sehr schmalen Screens schrumpfen, head-actions/Burger nie. */
  .head-inner { width: 100%; max-width: 100%; box-sizing: border-box; padding-inline: 1rem; }
  .brand { flex: 1 1 auto; min-width: 0; overflow: hidden; }
  .head-actions { flex: 0 0 auto; }
  .head-actions > .btn { display: none; }     /* Beratung im Menü-Footer */
  .nav-toggle__label { display: none; }         /* nur Burger-Icon */
  .nav-toggle { flex: 0 0 auto; }
}

@media (max-width: 46rem) {
  body { font-size: 1rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  .hero-video { order: -1; }
  .play-pill { bottom: 1rem; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.4rem 1rem 1.6rem; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat:nth-child(3) { padding-left: 0; }

  .duo { grid-template-columns: 1fr; position: relative; }
  /* Overflow-Fix: Deko-Versatzrahmen nicht mehr über den rechten Rand ziehen (kein horizontaler Scroll). */
  .framed::after { inset: .8rem 0 -.8rem .8rem; }

  /* Vita-Galerie mobil: Bilder als Parallax-Hintergrund HINTER der Timeline + dem Gold-Strahl.
     Timeline und Galerie teilen sich eine Grid-Zelle (Overlay). Die Galerie bleibt sticky stehen,
     während die höhere Timeline darüber scrollt; das aktive Bild wechselt pro Etappe (JS). */
  .duo > .timeline { grid-area: 1 / 1; position: relative; z-index: 1; margin-top: 0; }
  .duo > .vita-gallery {
    grid-area: 1 / 1;
    align-self: start;
    position: sticky;
    top: 4.75rem !important;            /* überschreibt Inline top:7rem */
    height: calc(100svh - 4.75rem);
    z-index: 0;
    margin: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
    border-radius: var(--r-lg);
  }
  /* Track + Bilder füllen die Galerie; Crossfade kommt aus den Basis-Styles (kein Swipe mehr). */
  .vita-gallery__track { position: absolute; inset: 0; aspect-ratio: auto; border-radius: var(--r-lg); }

  /* Dunkel-Scrim über dem Bild (umgewidmetes .framed::after) -> Text + Gold-Strahl bleiben klar lesbar. */
  .vita-gallery.framed::after {
    inset: 0;
    border: 0;
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.45) 0%, rgba(15, 15, 26, 0.72) 100%);
  }
  /* Timeline-Text über dem Bild gut lesbar halten */
  .timeline .tl-item p { color: var(--text-soft); }
  .timeline .tl-item h3,
  .timeline .tl-item p { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55); }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-figure { justify-self: start; max-width: 100%; }


  .sec-num { font-size: 4.5rem; top: -.8em; }
}

/* ============================================================
   Beratungsanfrage · Quiz-Formular (kontakt.html)
   Eigenstaendiges Dark-Glass-Design — bewusst anders als die Schwester-Seite.
   ============================================================ */
.anfrage-card {
  max-width: 52rem;
  margin: 2.5rem auto 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.anfrage-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad-gold);
  opacity: .7;
}

/* Fortschritt: nummerierte Serif-Reihe mit Haarlinien-Track */
.quiz-progress { margin-bottom: 2.25rem; }
.quiz-progress[hidden] { display: none; }
.quiz-progress__steps {
  list-style: none; display: flex; gap: .75rem;
  margin: 0 0 1rem; padding: 0;
}
.quiz-progress__steps li {
  flex: 1; display: flex; flex-direction: column; gap: .15rem;
  padding-top: .6rem; border-top: 2px solid var(--border-strong);
  color: var(--text-faint);
  transition: color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.quiz-progress__steps li.is-active { color: var(--gold); border-top-color: var(--gold); }
.quiz-progress__steps li.is-done   { color: var(--text-mute); border-top-color: var(--gold-dark); }
.quiz-progress__num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.quiz-progress__steps li.is-done .quiz-progress__num::after { content: " ✓"; font-size: .9rem; color: var(--gold); }
.quiz-progress__label {
  font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.quiz-progress__bar { height: 2px; background: var(--border); border-radius: var(--r-pill); overflow: hidden; }
.quiz-progress__bar span { display: block; height: 100%; background: var(--grad-gold); transition: width var(--t-base) var(--ease); }

/* Schritte */
.quiz-step { border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.quiz-step:not(.is-active) { display: none; }
.quiz-step:focus { outline: none; }
.quiz-step__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.15; color: var(--text);
  margin: 0 0 .4rem; padding: 0;
}
.quiz-step__lead { color: var(--text-mute); margin: 0 0 1.5rem; max-width: 40rem; }

/* Auswahl-Karten (textbasiert, Glas, Gold-Akzent — bewusst ohne Fotos) */
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: .85rem; }
.option-card { position: relative; display: block; cursor: pointer; }
.option-card input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.option-card__body {
  display: block; height: 100%;
  padding: 1.1rem 1.2rem 1.1rem 1.45rem;
  background: var(--glass-bg); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); position: relative; overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.option-card__body::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-gold); transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-base) var(--ease);
}
.option-card:hover .option-card__body { border-color: var(--border-gold); background: var(--glass-bg-strong); transform: translateY(-2px); }
.option-card input:focus-visible ~ .option-card__body { outline: 2px solid var(--gold); outline-offset: 2px; }
.option-card input:checked ~ .option-card__body {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(153, 49, 127, .16), rgba(209, 173, 111, .08));
}
.option-card input:checked ~ .option-card__body::before { transform: scaleY(1); }
.option-card input:checked ~ .option-card__body::after {
  content: "✓"; position: absolute; top: .7rem; right: .85rem;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
  background: var(--grad-gold); color: var(--bg-darkest);
}
.option-card__title { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: .15rem; }
.option-card__desc  { display: block; font-size: .85rem; color: var(--text-soft); line-height: 1.45; }

/* Kontaktfelder */
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.lead-form__field { display: flex; flex-direction: column; min-width: 0; }
.lead-form__field--wide { grid-column: 1 / -1; }
.lead-form__label {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: .4rem;
}
.lead-form__label--required::after { content: " *"; color: var(--gold); }
.lead-form__input, .lead-form__textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text); width: 100%;
  background: var(--glass-bg); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); padding: .8rem .9rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lead-form__textarea { resize: vertical; min-height: 6rem; }
.lead-form__input::placeholder, .lead-form__textarea::placeholder { color: var(--text-faint); }
.lead-form__input:focus, .lead-form__textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--glass-bg-strong); box-shadow: 0 0 0 3px rgba(209, 173, 111, .18);
}
.lead-form__input[aria-invalid="true"], .lead-form__textarea[aria-invalid="true"] { border-color: #E0857F; box-shadow: 0 0 0 3px rgba(224, 133, 127, .16); }
.lead-form__honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.lead-form__checkbox { display: flex; gap: .65rem; align-items: flex-start; cursor: pointer; font-size: .9rem; color: var(--text-mute); line-height: 1.5; }
.lead-form__checkbox input { margin-top: .2rem; width: 1.1rem; height: 1.1rem; accent-color: var(--gold); flex: none; }

/* Navigation, Status, Fehler */
.quiz-nav { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.quiz-nav .btn-solid { margin-left: auto; }
.field-error { display: block; color: #E0857F; font-size: .8rem; margin-top: .35rem; min-height: 1em; }
.quiz-status { margin-top: 1rem; }

/* Bestaetigung */
.quiz-done { text-align: center; padding: 1rem 0; }
.quiz-done[hidden] { display: none; }
.quiz-done:focus { outline: none; }
.quiz-done__icon {
  width: 4rem; height: 4rem; margin: 0 auto 1.25rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.9rem; font-weight: 700;
  background: var(--grad-gold); color: var(--bg-darkest); box-shadow: var(--shadow-gold);
}
.quiz-done .quiz-step__title { margin-bottom: .5rem; }
.quiz-done .quiz-step__lead { margin-inline: auto; }
.quiz-done__steps { max-width: 30rem; margin: 1.75rem auto 0; text-align: left; }
.quiz-done__steps-label { display: block; font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; text-align: center; }
.quiz-done__steplist { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.quiz-done__steplist li { display: flex; gap: .8rem; align-items: center; color: var(--text-mute); font-size: .95rem; }
.quiz-done__num { flex: none; width: 1.7rem; height: 1.7rem; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: var(--gold); border: 1px solid var(--border-gold); background: var(--glass-bg); }
.quiz-done__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

@media (max-width: 40rem) {
  .lead-form__grid { grid-template-columns: 1fr; }
  .quiz-progress__label { font-size: .58rem; }
  .quiz-progress__num { font-size: 1.25rem; }
  .quiz-nav .btn { flex: 1; }
  .quiz-nav .btn-solid { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .quiz-progress__bar span, .option-card__body, .option-card__body::before { transition: none; }
}
