/* =====================================================================
   MATTE & MATTE — Design System
   Warm editorial identity · orange on paper · light + dark
   Fonts loaded via <link> in header.php (Inter, Hanken Grotesk, Fraunces)
   ===================================================================== */

/* Cormorant Garamond (kursiv) — Akzentschrift wie im "Erste Schritte"-PDF */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/cormorant-italic-600.woff2) format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/cormorant-italic-700.woff2) format("woff2");
}

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  /* legacy names kept so header/nav/form CSS keeps working */
  --site-orange: #f36f2c;
  --site-orange-dark: #d85b1c;
  --site-ink: #1b1714;
  --site-soft: #5f574e;
  --site-line: #e9e0d5;
  --site-bg: #fbf7f1;
  --site-surface: rgba(255, 255, 255, 0.82);
  --site-header-bg: rgba(251, 247, 241, 0.82);
  --site-shadow: 0 18px 60px rgba(30, 26, 23, 0.08);

  /* refined system */
  --bg: var(--site-bg);
  --bg-2: #f3ece2;
  --paper: #ffffff;
  --ink: var(--site-ink);
  --soft: var(--site-soft);
  --muted: #8c8278;
  --line: var(--site-line);
  --line-2: #dcd1c4;
  --orange: var(--site-orange);
  --orange-dark: var(--site-orange-dark);
  --orange-2: #ff9d5c;
  --tint: #fdefe5;
  --espresso: #201a15;
  --on-dark: #f3ece2;
  --on-dark-soft: #b3a89c;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1200px;

  --shadow-sm: 0 2px 10px -3px rgba(30, 22, 16, 0.12);
  --shadow-md: 0 18px 48px -20px rgba(30, 22, 16, 0.24);
  --shadow-lg: 0 44px 90px -42px rgba(30, 22, 16, 0.36);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  --site-ink: #f4ece2;
  --site-soft: #c3b7ab;
  --site-line: rgba(255, 255, 255, 0.12);
  --site-bg: #13110f;
  --site-surface: rgba(36, 32, 29, 0.72);
  --site-header-bg: rgba(19, 17, 15, 0.74);
  --site-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);

  --bg-2: #18140f;
  --paper: #1c1815;
  --muted: #9b9085;
  --line-2: rgba(255, 255, 255, 0.15);
  --tint: rgba(243, 111, 44, 0.13);
  --espresso: #0d0b09;

  --shadow-sm: 0 2px 12px -3px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 18px 48px -20px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 44px 90px -42px rgba(0, 0, 0, 0.72);
}

/* ── Base ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  min-width: 320px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: color 200ms ease, background-color 200ms ease;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 5px;
}

.u-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;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 12px 18px; border-radius: 8px;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 14px;
  text-decoration: none; box-shadow: var(--shadow-md);
  transform: translateY(-150%); transition: transform 0.2s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); outline: 2px solid #fff; outline-offset: 2px; }

/* ── Reusable layout + atoms ────────────────────────────────────── */
.wrap {
  width: min(100% - clamp(28px, 6vw, 80px), var(--maxw));
  margin-inline: auto;
}
.wrap--wide { --maxw: 1320px; }
#leistungen .wrap--wide { --maxw: 1120px; }   /* Leistungs-Kacheln auf Desktop etwas schmaler */

.section { padding: clamp(74px, 9vw, 130px) 0; position: relative; }
.section--tint { background: var(--bg-2); }

/* Keep sticky header from covering anchor targets */
.mmh, .section, .stats, .home-contact, [id] { scroll-margin-top: clamp(76px, 10vh, 100px); }

.section__head { max-width: 660px; margin: 0 0 clamp(34px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 12px; font-weight: 700; line-height: 1;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.section__head--center .eyebrow::after {
  content: ""; width: 26px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

.section__title {
  margin: 0 0 18px;
  font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(33px, 4.3vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--ink);
}
/* Leistungen: Ueberschrift bewusst kleiner (Desktop + mobil) */
#leistungen .section__title { font-size: clamp(26px, 3.3vw, 40px); }
.section__title em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(115deg, var(--orange) 0%, #ff9d5c 52%, var(--orange-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section__lead {
  margin: 0;
  color: var(--soft);
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.68;
  max-width: 60ch;
}
.section__head--center .section__lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  border: 1px solid transparent; border-radius: 8px;
  font: inherit; font-weight: 800; font-size: 15px; line-height: 1;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease,
              box-shadow 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}
.btn svg { flex: 0 0 auto; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 30px -12px rgba(243, 111, 44, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -14px rgba(243, 111, 44, 0.7); }
.btn--ghost { color: var(--ink); border-color: var(--line-2); background: transparent; }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--ink); }
.btn--light { color: var(--orange-dark); background: #fff; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.4); }
.btn--light:hover { transform: translateY(-2px); }
.btn--block { width: 100%; }

/* Text link with arrow */
.arrowlink {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange-dark); font-weight: 800; font-size: 14.5px;
  text-decoration: none; letter-spacing: 0.005em;
}
.arrowlink svg { transition: transform 0.25s var(--ease); }
.arrowlink:hover svg { transform: translateX(4px); }

/* Reveal-on-scroll (only hidden when JS is active) */
.js [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(0.96); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
/* Mobil: seitliche Reveals vertikal, damit translateX keinen horizontalen Überlauf erzeugt */
@media (max-width: 800px) {
  .js [data-reveal="left"]:not(.is-in), .js [data-reveal="right"]:not(.is-in) { transform: translateY(28px); }
}

/* =====================================================================
   HEADER / NAV  (preserved + scroll-condense)
   ===================================================================== */
.site-header, .site-header * {
  box-sizing: border-box;
  font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}
/* Header: standardmäßig dezente Glas-Leiste; nur über Foto-Heros oben transparent */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  min-height: 70px;
  background: var(--site-header-bg);
  border-bottom: 1px solid var(--site-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height 0.3s var(--ease), background-color 0.3s ease,
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-condensed {
  min-height: 70px;
  box-shadow: 0 10px 40px -24px rgba(30, 26, 23, 0.4);
}
/* Über Foto-Heros (Seiten mit .uhero): oben transparent, ab Scroll Glas */
@supports selector(:has(*)) {
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) {
    background: transparent; border-bottom-color: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}
.site-header__inner {
  display: grid;
  grid-template-columns: minmax(164px, 1fr) auto minmax(164px, 1fr);
  align-items: center; gap: 18px;
  width: min(100% - 40px, 1440px);
  min-height: inherit; margin: 0 auto; padding-top: 0;
}
.site-header.is-condensed .site-header__inner { padding-top: 0; }
.site-brand {
  justify-self: start;
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--ink); line-height: 1;
  text-decoration: none; white-space: nowrap;
}
.site-brand__logo { height: 30px; width: auto; display: block; flex: 0 0 auto; }
html[data-theme="dark"] .site-brand__logo { filter: invert(1) brightness(1.7); }
.site-brand__name { font-family: "Fraunces", serif; font-weight: 600; font-size: 21px; letter-spacing: 0.005em; line-height: 1; color: var(--ink); }
.site-brand__amp { color: var(--orange-dark); }
.site-brand__lockup { height: 30px; width: auto; display: block; }
.site-brand__lockup--dark { display: none; }
html[data-theme="dark"] .site-brand__lockup--light { display: none; }
html[data-theme="dark"] .site-brand__lockup--dark { display: block; }
.site-brand__mono { height: 30px; width: auto; display: none; }
html[data-theme="dark"] .site-brand__mono { filter: invert(1) brightness(1.7); }
.site-brand__badge { height: 34px; width: auto; display: none; border-radius: 9px; }
.site-brand__word {
  display: none;
  font-family: "Montserrat", "Hanken Grotesk", sans-serif;
  font-weight: 700; font-size: 15.5px; line-height: 1;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.site-brand__amp {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 1.18em; letter-spacing: 0; color: var(--orange);
  margin: 0 0.02em;
}

/* Desktop-Nav als moderne Pill – nur leicht von der Leiste abgesetzt */
.site-nav {
  justify-self: center;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 4px; min-width: 0; padding: 6px;
  background: rgba(27, 23, 20, 0.05); border: 1px solid rgba(27, 23, 20, 0.07);
  border-radius: 999px; box-shadow: none;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
html[data-theme="dark"] .site-nav {
  background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.11);
}
.site-nav__item { position: relative; display: inline-flex; }
.site-nav__foot, .site-menu-toggle { display: none; }
/* nur im mobilen Schubladenmenü sichtbar */
.site-nav__feature, .site-nav__scrim, .site-submenu__back,
.site-submenu__lead, .site-submenu__more-h, .site-submenu__thumb { display: none; }
.site-nav__link, .site-nav__item > a, .site-login, .theme-button {
  -webkit-tap-highlight-color: transparent;
}
.site-nav__link, .site-nav__item > a {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 0 15px; border-radius: 999px;
  color: var(--site-soft); font-size: 13.5px; font-weight: 600; line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
  white-space: nowrap;
}
.site-nav__menutrigger { cursor: pointer; user-select: none; }
.site-nav__item--has-menu > a::after {
  content: ""; width: 6px; height: 6px; margin-left: 8px;
  border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.site-nav__item--has-menu:hover > a::after { transform: translateY(0) rotate(225deg); }
.site-nav__link::before, .site-nav__item > a::before { display: none; }
.site-nav__link:hover, .site-nav__link:focus-visible,
.site-nav__item > a:hover, .site-nav__item > a:focus-visible {
  color: var(--ink); background: rgba(243, 111, 44, 0.09);
}
.site-nav__link.is-active, .site-nav__item > a.is-active {
  color: var(--orange-dark); background: var(--tint); font-weight: 700;
}
.site-nav__item--has-menu::after {
  content: ""; position: absolute; top: 100%; left: -18px;
  width: calc(100% + 36px); height: 18px;
}
/* Editoriales Dropdown: nummerierte Liste, Icon, Beschreibung, Pfeil */
.site-submenu {
  position: absolute; top: calc(100% + 12px); left: 0;
  display: block; width: min(420px, calc(100vw - 40px)); padding: 4px 18px;
  background: var(--paper); border: 1px solid var(--site-line);
  border-radius: 14px; box-shadow: 0 28px 66px -26px rgba(30, 26, 23, 0.5);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}
/* Hover/Fokus-Aufklappen NUR am Desktop – sonst greift es auf Touch-Geräten
   (Tap erzeugt :focus-within) ins mobile Schubladenmenü ein und blockiert
   u. a. das Zurückschieben der Unterebene. */
@media (min-width: 1061px) {
  .site-nav__item--has-menu:hover .site-submenu,
  .site-nav__item--has-menu:focus-within .site-submenu {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
}
.site-submenu__card {
  display: grid; grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center; column-gap: 14px;
  padding: 14px 0; color: var(--ink); text-decoration: none; white-space: normal;
  border-bottom: 1px solid var(--site-line);
}
.site-submenu__card:last-child { border-bottom: 0; }
.site-submenu__card img { display: none; }
.site-submenu__ic {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(243, 111, 44, 0.1); color: #d85b1c;
  transition: background-color 150ms ease;
}
.site-submenu__ic svg { width: 21px; height: 21px; }
.site-submenu__card-body { display: block; min-width: 0; }
.site-submenu__card strong { display: block; font-weight: 600; font-size: 15px; line-height: 1.2; color: var(--ink); }
.site-submenu__card small { display: block; margin-top: 2px; color: #d85b1c; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.site-submenu__desc { display: block; margin-top: 5px; color: var(--soft); font-size: 12.5px; font-weight: 500; line-height: 1.4; }
.site-submenu__arrow { display: grid; place-items: center; color: #cbb9a3; transition: color 150ms ease, transform 150ms ease; }
.site-submenu__arrow svg { width: 17px; height: 17px; }
.site-submenu__card:hover strong, .site-submenu__card:focus-visible strong { color: #d85b1c; }
.site-submenu__card:hover .site-submenu__ic, .site-submenu__card:focus-visible .site-submenu__ic { background: rgba(243, 111, 44, 0.18); }
.site-submenu__card:hover .site-submenu__arrow, .site-submenu__card:focus-visible .site-submenu__arrow { color: #d85b1c; transform: translateX(3px); }
/* Zusatzzeile im Leistungen-Dropdown (Ablauf · Preise) */
.site-submenu__more { display: flex; gap: 18px; padding: 11px 2px 5px; margin-top: 2px; border-top: 1px solid var(--site-line); }
.site-submenu__more a { font-size: 13px; font-weight: 600; color: var(--soft); text-decoration: none; }
.site-submenu__more a:hover { color: #d85b1c; }
/* „gratis"-Tag am Quick-Check-Menüpunkt */
.site-nav__tag { display: inline-block; margin-left: 6px; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #3f7d5a; background: #e8f3ec; padding: 2px 6px; border-radius: 999px; vertical-align: middle; }
.site-actions {
  justify-self: end; display: inline-flex; align-items: center; justify-content: flex-end;
  gap: 10px; min-width: 0;
}
.theme-button, .site-login {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; border: 0; box-shadow: none;
  font-size: 14px; font-weight: 700; line-height: 1; text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease,
              border-color 160ms ease, box-shadow 160ms ease;
}
/* Theme: kleines, unaufdringliches Icon */
.theme-button {
  width: 38px; min-width: 38px; padding: 0;
  color: var(--site-soft); background: transparent; border-radius: 999px; cursor: pointer;
}
.theme-button__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; transition: transform 160ms ease, opacity 160ms ease;
}
.theme-button__icon svg {
  display: block; width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.theme-button__icon--moon { display: none; }
html[data-theme="dark"] .theme-button__icon--sun { display: none; }
html[data-theme="dark"] .theme-button__icon--moon { display: inline-flex; }
.theme-button:hover, .theme-button:focus-visible {
  color: var(--ink); background: rgba(27, 23, 20, 0.06);
}
html[data-theme="dark"] .theme-button:hover, html[data-theme="dark"] .theme-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}
/* Login: stiller Textlink mit Icon */
.site-login {
  gap: 7px; padding: 0 12px;
  color: var(--site-soft); background: transparent; border-radius: 999px;
  font-weight: 700;
}
.site-login svg { width: 16px; height: 16px; flex: 0 0 auto; }
.site-login:hover, .site-login:focus-visible {
  color: var(--ink); background: rgba(27, 23, 20, 0.06);
}
html[data-theme="dark"] .site-login:hover, html[data-theme="dark"] .site-login:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}
/* Kontakt: der eine klare Header-CTA (solide Pill) */
.site-contact-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 21px; white-space: nowrap;
  color: #fff; background: var(--orange);
  border: 0; border-radius: 999px;
  font-size: 14px; font-weight: 800; line-height: 1; text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}
.site-contact-btn:hover, .site-contact-btn:focus-visible {
  color: #fff; background: var(--orange-dark); transform: translateY(-1px);
}
.site-login__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; transition: transform 160ms ease;
}
.site-nav__mobile-login:hover .site-login__arrow, .site-nav__mobile-login:focus-visible .site-login__arrow {
  transform: translateX(3px);
}

/* Foto-Heros rutschen unter den transparenten Header (alle Seiten);
   die sichtbare Hero-Höhe bleibt durch die Kompensation gleich */
main .uhero { margin-top: calc(-70px - 1px); }   /* 70px min-height + 1px border-bottom = echte Header-Höhe; sonst 1px Hintergrund-Streifen oben */
main .uhero:not(.uhero--compact) { min-height: calc(100svh - var(--annbar-h, 0px)); }
main .uhero--compact { min-height: calc(71px + clamp(460px, 74vh, 720px)); }

/* Über Foto-Heros: helle Header-Elemente, solange nicht gescrollt */
@supports selector(:has(*)) {
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-brand__lockup--light { display: none; }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-brand__lockup--dark { display: block; }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-brand__word,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-menu-toggle,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .theme-button,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-login {
    color: rgba(255, 255, 255, 0.92);
  }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .theme-button:hover,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-login:hover {
    color: #fff; background: rgba(255, 255, 255, 0.12);
  }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav {
    background: rgba(20, 16, 13, 0.32); border-color: rgba(255, 255, 255, 0.14);
  }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav__link,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav__item > a {
    color: rgba(255, 255, 255, 0.82);
  }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav__link:hover,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav__item > a:hover {
    color: #fff; background: rgba(255, 255, 255, 0.12);
  }
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav__link.is-active,
  body:has(.uhero) .site-header:not(.is-condensed):not(.is-menu-open) .site-nav__item > a.is-active {
    color: #fff; background: rgba(243, 111, 44, 0.32);
  }
}
.site-menu-toggle {
  width: 42px; min-height: 42px; padding: 0; color: var(--ink);
  background: var(--site-surface); border: 1px solid var(--site-line);
  border-radius: 8px; box-shadow: var(--site-shadow); cursor: pointer;
}
.site-menu-toggle span {
  display: block; width: 18px; height: 2px; margin: 3px auto;
  background: currentColor; border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.site-header.is-menu-open .site-menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.site-header.is-menu-open .site-menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .site-menu-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Generic inner page (stub subpages) */
.site-page { width: min(100% - 40px, 1040px); margin: 0 auto; padding: clamp(56px, 8vw, 96px) 0; }
.site-page h1 { margin: 0 0 18px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(36px, 7vw, 64px); line-height: 0.98; letter-spacing: -0.03em; }
.site-page p { max-width: 680px; color: var(--soft); font-size: 18px; line-height: 1.65; }

/* =====================================================================
   HERO
   ===================================================================== */
.mmh {
  position: relative; width: 100%; overflow: hidden;
  color: var(--ink); background: transparent;
}
.mmh__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.mmh__bg::before, .mmh__bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.mmh__bg::before {
  width: 520px; height: 520px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(243, 111, 44, 0.22), transparent 70%);
}
.mmh__bg::after {
  width: 460px; height: 460px; bottom: -200px; left: -140px;
  background: radial-gradient(circle, rgba(255, 157, 92, 0.16), transparent 70%);
}
.mmh__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  column-gap: clamp(34px, 5vw, 78px);
  min-height: clamp(560px, 86vh, 800px); align-items: center;
}
.mmh__text {
  position: relative; max-width: 640px;
  padding: clamp(44px, 6vw, 84px) 0;
  display: flex; flex-direction: column; justify-content: center;
}
.mmh__ey { opacity: 0; animation: mmUp 0.7s 0.15s var(--ease) forwards; }

.mmh__h1 {
  font-family: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800; font-size: clamp(40px, 5.3vw, 66px);
  line-height: 0.98; letter-spacing: -0.045em; color: var(--ink);
  margin: 0 0 30px;
}
.mmh__line { display: block; overflow: hidden; padding-bottom: 0.1em; }
.mmh__word {
  display: inline-block; opacity: 0;
  transform: translateY(-90px) scale(2); filter: blur(16px);
  animation: mmWordImpact 0.5s cubic-bezier(0.33, 1, 0.45, 1) both;
  will-change: transform, opacity, filter;
}
.mmh__q { color: var(--orange); }
.mmh__accent {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500;
  letter-spacing: -0.015em;
  background: linear-gradient(115deg, var(--orange) 0%, #ff9d5c 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.mmh__who {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none;
  opacity: 0; animation: mmUp 0.7s 0.34s var(--ease) forwards;
}
.mmh__who a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none;
  background: transparent; border: 1.5px solid var(--line-2); border-radius: 7px;
  padding: 9px 15px; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.mmh__who a svg { flex-shrink: 0; transition: transform 0.18s ease; }
.mmh__who a:hover svg { transform: translateX(2px); }
.mmh__who a:hover { border-color: var(--orange); color: var(--orange-dark); background: var(--tint); transform: translateY(-1px); }
.mmh__who a.mmh__active { border-color: var(--orange); color: var(--orange-dark); background: var(--tint); }

.mmh__sub {
  font-size: clamp(15.5px, 1.6vw, 18px); line-height: 1.68; max-width: 50ch;
  color: var(--soft); margin: 0 0 32px; min-height: 5.6em;
  opacity: 0; animation: mmUp 0.7s 0.42s var(--ease) forwards;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mmh__sub.mm-fade { opacity: 0; transform: translateY(6px); }

.mmh__cta {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  opacity: 0; animation: mmUp 0.7s 0.52s var(--ease) forwards;
}

/* Hero media */
.mmh__media {
  position: relative; z-index: 1;
  padding: clamp(28px, 4vw, 56px) 0 clamp(28px, 4vw, 56px) 8px;
  display: flex; align-items: center; justify-self: end; width: 100%; max-width: 560px;
}
.mmh__photo {
  position: relative; width: 100%; margin: 0 auto; aspect-ratio: 4 / 3; overflow: visible;
  opacity: 0; animation: mmPhotoIn 1.1s 0.2s var(--ease) forwards;
}
.mmh__glow {
  position: absolute; inset: -8% -8% -14% -8%; z-index: 0; border-radius: 50%;
  background: radial-gradient(60% 60% at 60% 40%, rgba(243, 111, 44, 0.3), transparent 70%);
  filter: blur(36px); opacity: 0.8;
}
.mmh__photo-frame {
  position: absolute; inset: 0; z-index: 1; border-radius: 16px; overflow: hidden;
  background: #ddd3c8;
  box-shadow: var(--shadow-lg), 0 4px 16px -6px rgba(30, 22, 16, 0.14);
}
.mmh__photo-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 30% 50%; transform: scale(1.6); transform-origin: 30% 50%;
}
.mmh__badge {
  position: absolute; z-index: 2;
  display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 9px; align-items: center;
  width: min(210px, 70%); padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 13px;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  box-shadow: 0 18px 38px -18px rgba(30, 22, 16, 0.48), 0 8px 18px -12px rgba(30, 22, 16, 0.32);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.mmh__badge-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; background: var(--tint); color: var(--orange-dark);
}
.mmh__badge-ic svg { width: 20px; height: 20px; }
.mmh__badge-copy { min-width: 0; display: grid; gap: 3px; }
.mmh__badge-kicker { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.mmh__badge-main { color: var(--ink); font-size: 14px; font-weight: 800; line-height: 1.15; }
.mmh__badge--one { top: -20px; right: -30px; transform: rotate(1.5deg); animation: mmFloatA 7s ease-in-out 1.4s infinite; }
.mmh__badge--two { left: -34px; bottom: -22px; transform: rotate(-2.5deg); animation: mmFloatB 8s ease-in-out 1.8s infinite; }

.mmh__scroll {
  position: absolute; z-index: 1; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 7px;
  color: var(--muted); font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; opacity: 0; animation: mmUp 0.8s 0.9s var(--ease) forwards;
}
.mmh__scroll-line { position: relative; width: 1.5px; height: 38px; background: var(--line-2); overflow: hidden; border-radius: 2px; }
.mmh__scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 45%;
  background: var(--orange); border-radius: 2px; animation: mmScroll 2.1s var(--ease) infinite;
}

@keyframes mmUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mmWordImpact {
  0%   { opacity: 0; transform: translateY(-90px) scale(2); filter: blur(16px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes mmPhotoIn { from { opacity: 0; transform: translateY(14px) scale(1.015); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes mmScroll { 0% { transform: translateY(-100%); } 100% { transform: translateY(230%); } }
@keyframes mmFloatA { 0%, 100% { transform: rotate(1.5deg) translateY(0); } 50% { transform: rotate(1.5deg) translateY(-9px); } }
@keyframes mmFloatB { 0%, 100% { transform: rotate(-2.5deg) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(8px); } }

/* =====================================================================
   STATS STRIP (understated)
   ===================================================================== */
.stats { position: relative; padding: clamp(8px, 2vw, 18px) 0 clamp(30px, 5vw, 54px); }
.stats__card {
  margin: 0 auto; max-width: 660px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
}
.stat { padding: 6px clamp(10px, 2vw, 22px); position: relative; text-align: center; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat__num {
  font-family: "Hanken Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(21px, 2.3vw, 29px); line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.stat__num span { color: var(--orange); }
.stat__label { margin-top: 6px; color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.35; }

/* =====================================================================
   PROCESS — "Unser Weg"
   ===================================================================== */
.process__grid {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px); margin-top: clamp(12px, 2vw, 22px);
}
.process__line {
  position: absolute; top: 31px; left: 11%; right: 11%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 7px, transparent 7px 14px);
}
.step { position: relative; z-index: 1; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 16px; margin-bottom: 22px;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--orange-dark); box-shadow: var(--shadow-sm);
}
.step__num svg { width: 26px; height: 26px; }
.step__k {
  display: inline-block; margin-bottom: 9px; color: var(--orange-dark);
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
}
.step__title { margin: 0 0 9px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.01em; color: var(--ink); }
.step__text { margin: 0; color: var(--soft); font-size: 15px; line-height: 1.6; }

/* =====================================================================
   SERVICES — "Leistungen"
   ===================================================================== */
.services__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.svc {
  position: relative; display: flex; flex-direction: column; min-width: 0;
  padding: clamp(28px, 3vw, 40px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.svc::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(243, 111, 44, 0.07), transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc:hover::after { opacity: 1; }
.svc__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 20px;
  background: var(--tint); color: var(--orange-dark);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc__k { display: block; margin-bottom: 8px; color: var(--orange-dark); font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.svc__title { margin: 0 0 12px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); }
.svc__text { margin: 0 0 20px; color: var(--soft); font-size: 15.5px; line-height: 1.62; }
.svc__list { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; }
.svc__list li { position: relative; padding-left: 26px; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.45; }
.svc__list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.2 2.2 4.8-5' fill='none' stroke='%23d85b1c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.svc__link { margin-top: auto; }
/* Ganze Kachel klickbar (JS); der Titel ist der sichtbare Cue (Pfeil dahinter) */
.svc[data-href] { cursor: pointer; }
.svc__title .svc__go { color: inherit; text-decoration: none; display: inline; }
.svc__arr {
  width: 0.62em; height: 0.62em; margin-left: 0.32em; vertical-align: -0.01em;
  color: var(--orange-dark); transition: transform 0.2s var(--ease);
}
.svc--feature .svc__arr { color: #fff; }
.svc:hover .svc__arr { transform: translateX(3px); }
.svc__go:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 5px; }

/* Featured (orange) card */
.svc--feature {
  color: #fff; border: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(140deg, var(--orange) 0%, #ff9157 46%, var(--orange-dark) 100%);
  box-shadow: 0 30px 70px -34px rgba(216, 91, 28, 0.7);
}
.svc--feature::after { display: none; }
.svc--feature .svc__icon { background: rgba(255, 255, 255, 0.2); color: #fff; }
.svc--feature .svc__k { color: rgba(255, 255, 255, 0.82); }
.svc--feature .svc__title, .svc--feature .svc__text { color: #fff; }
.svc--feature .svc__text { color: rgba(255, 255, 255, 0.92); }
.svc--feature .svc__list li { color: #fff; }
.svc--feature .svc__list li::before {
  background: rgba(255, 255, 255, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.2 2.2 4.8-5' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.svc--feature .arrowlink { color: #fff; }

/* =====================================================================
   METHOD — "Begabungsanalyse" (dark espresso band)
   ===================================================================== */
.method { background: var(--espresso); color: var(--on-dark); position: relative; overflow: hidden; }
.method::before {
  content: ""; position: absolute; width: 460px; height: 460px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(243, 111, 44, 0.26), transparent 70%); filter: blur(50px); pointer-events: none;
}
.method__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.method .eyebrow { color: #ffb585; }
.method .eyebrow::before { background: linear-gradient(90deg, var(--orange-2), transparent); }
.method__title { margin: 0 0 18px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(31px, 4vw, 48px); line-height: 1.04; letter-spacing: -0.03em; color: #fff; }
.method__title em {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 500;
  background: linear-gradient(115deg, #ffb074, #ff8a47); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.method__text { margin: 0 0 26px; color: var(--on-dark-soft); font-size: 16.5px; line-height: 1.7; max-width: 52ch; }
.method__points { display: grid; gap: 16px; margin: 0 0 30px; padding: 0; list-style: none; }
.method__points li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; color: var(--on-dark); font-size: 15px; line-height: 1.5; }
.method__points .mp-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(243, 111, 44, 0.18); color: #ffb585; }
.method__points .mp-ic svg { width: 16px; height: 16px; }
.method__points strong { color: #fff; font-weight: 800; }

/* abstract visual */
.method__visual {
  position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius);
  background: linear-gradient(160deg, #2a221c, #18130f); border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 8%;
}
.method__visual-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.method__visual::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(155deg, rgba(20, 16, 13, 0.72) 0%, rgba(20, 16, 13, 0.82) 100%); }
.method__radar { position: relative; z-index: 2; width: 100%; height: 100%; }
.method__radar .rg { fill: none; stroke: rgba(255, 255, 255, 0.1); }
.method__radar .axis { stroke: rgba(255, 255, 255, 0.12); }
.method__radar .area { fill: rgba(243, 111, 44, 0.28); stroke: var(--orange); stroke-width: 2; stroke-linejoin: round; }
.method__radar .dot { fill: #fff; }
.method__radar .lbl { fill: var(--on-dark-soft); font: 600 9px "Hanken Grotesk", sans-serif; }
.js .method__radar .area { opacity: 0; transform-origin: 50% 50%; transform: scale(0.6); transition: opacity 0.8s var(--ease) 0.2s, transform 0.9s var(--ease) 0.2s; }
.js .method__radar.is-in .area { opacity: 1; transform: scale(1); }
.js .method__radar .dot { opacity: 0; transition: opacity 0.5s ease 0.7s; }
.js .method__radar.is-in .dot { opacity: 1; }

/* =====================================================================
   VOICES — testimonials
   ===================================================================== */
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.quote {
  display: flex; flex-direction: column; padding: clamp(26px, 3vw, 36px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote__mark { font-family: "Fraunces", serif; font-size: 56px; line-height: 0.7; color: var(--orange); opacity: 0.5; margin-bottom: 8px; }
.quote__text {
  margin: 0 0 24px; font-family: "Fraunces", Georgia, serif; font-weight: 400; font-style: italic;
  font-size: clamp(17px, 1.7vw, 19px); line-height: 1.55; color: var(--ink); flex: 1;
}
.quote__person { display: flex; align-items: center; gap: 13px; }
.quote__avatar {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 50%; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 15px;
  color: var(--orange-dark); background: var(--tint); border: 1px solid var(--line);
}
.quote__person > span { min-width: 0; }
.quote__name { display: block; font-weight: 800; font-size: 14.5px; color: var(--ink); line-height: 1.2; }
.quote__role { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; line-height: 1.3; }

/* =====================================================================
   ABOUT teaser
   ===================================================================== */
.about__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr); gap: clamp(34px, 5vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  background: #ddd3c8; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 40%; }
.about__chip {
  position: absolute; right: -18px; bottom: 28px;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px;
  padding: 14px 18px 14px 14px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md);
}
.about__chip-ic { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; background: var(--tint); color: var(--orange-dark); }
.about__chip-ic svg { width: 22px; height: 22px; }
.about__chip strong { display: block; font-family: "Hanken Grotesk", sans-serif; font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1; }
.about__chip span { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted); }
.about__sign { margin: 24px 0 0; font-family: "Fraunces", serif; font-style: italic; font-size: 22px; color: var(--ink); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(30px, 4vw, 64px); align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.faq__item.is-open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px clamp(18px, 2vw, 26px); margin: 0; cursor: pointer;
  background: transparent; border: 0; text-align: left;
  font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: clamp(15.5px, 1.6vw, 17.5px); color: var(--ink);
}
.faq__icon { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--orange); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height 0.35s var(--ease); }
.faq__a-inner { padding: 0 clamp(18px, 2vw, 26px) 22px; color: var(--soft); font-size: 15.5px; line-height: 1.66; }

/* =====================================================================
   CONTACT  (keeps working PHP form; restyled)
   ===================================================================== */
.home-contact { position: relative; background: var(--bg-2); padding: clamp(80px, 9vw, 124px) 0; }
.home-contact__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  grid-template-areas: "copy form" "details form";
  column-gap: clamp(34px, 5vw, 72px); row-gap: 28px; align-items: start;
}
.home-contact__copy { grid-area: copy; }
.contact-details { grid-area: details; }
.contact-form { grid-area: form; }
.home-contact__lead { margin: 0 0 30px; color: var(--soft); font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; max-width: 46ch; }
.contact-details { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.contact-details li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; }
.contact-details a, .contact-details span { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15.5px; }
.contact-details a:hover { color: var(--orange-dark); }
.contact-details small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.contact-details .cd-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); color: var(--orange-dark); box-shadow: var(--shadow-sm); }
.contact-details .cd-ic svg { width: 21px; height: 21px; }

.contact-form {
  width: 100%; max-width: 408px; justify-self: end;
  display: grid; align-content: start; gap: 11px; margin: 0;
  padding: clamp(16px, 2vw, 22px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.contact-form__grid { display: grid; grid-template-columns: 1fr; gap: 11px; }
.contact-form__field { display: grid; gap: 5px; }
.contact-form__field span { color: var(--soft); font-size: 12.5px; font-weight: 700; line-height: 1.2; }
.contact-form__field em { color: var(--muted); font-style: normal; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; min-height: 44px; padding: 0 13px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 8px; font: inherit; font-size: 14.5px; outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.contact-form textarea { min-height: 86px; padding: 10px 13px; resize: vertical; }
.contact-form select {
  appearance: none; -webkit-appearance: none; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' fill='none' stroke='%235a524b' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 16px) 50%; background-size: 14px; background-repeat: no-repeat;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(243, 111, 44, 0.7); box-shadow: 0 0 0 3px rgba(243, 111, 44, 0.14); background: var(--paper);
}
.contact-form.is-validated input:invalid, .contact-form.is-validated select:invalid, .contact-form.is-validated textarea:invalid {
  border-color: #d85b32; box-shadow: 0 0 0 3px rgba(216, 91, 50, 0.14);
}
.contact-form__submit { width: 100%; min-width: 0; min-height: 46px; margin-top: 2px; }
.contact-form__status { padding: 13px 15px; border-radius: 9px; font-size: 14px; font-weight: 700; line-height: 1.4; }
.contact-form__status--success { color: #17613d; background: rgba(37, 180, 112, 0.12); border: 1px solid rgba(37, 180, 112, 0.26); }
.contact-form__status--error { color: #8d2b12; background: rgba(243, 111, 44, 0.12); border: 1px solid rgba(243, 111, 44, 0.25); }
.contact-form__field--trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--espresso); color: var(--on-dark); padding: clamp(56px, 7vw, 80px) 0 30px; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.site-footer__brand { display: inline-flex; align-items: center; text-decoration: none; margin-bottom: 18px; }
.site-footer__brand img { height: 44px; width: auto; display: block; }
.site-footer__tag { margin: 0 0 22px; color: var(--on-dark-soft); font-size: 15px; line-height: 1.6; max-width: 34ch; }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 10px; color: var(--on-dark); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.site-footer__social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.site-footer__social svg { width: 18px; height: 18px; }
.site-footer__col h4 { margin: 6px 0 16px; color: #fff; font-family: "Hanken Grotesk", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer__col ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.site-footer__col a { color: var(--on-dark-soft); text-decoration: none; font-size: 15px; transition: color 0.2s ease; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: clamp(40px, 5vw, 60px); padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--on-dark-soft); font-size: 13.5px;
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__legal a { color: var(--on-dark-soft); text-decoration: none; }
.site-footer__legal a:hover { color: #fff; }
.to-top {
  display: inline-flex; align-items: center; gap: 8px; color: var(--on-dark-soft);
  background: transparent; border: 0; cursor: pointer; font: inherit; font-size: 13.5px; font-weight: 700;
}
.to-top:hover { color: #fff; }
.to-top svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.to-top:hover svg { transform: translateY(-2px); }

/* =====================================================================
   DARK MODE — section tweaks
   ===================================================================== */
html[data-theme="dark"] .mmh__photo-frame { box-shadow: 0 30px 80px -36px rgba(0, 0, 0, 0.7); }
html[data-theme="dark"] .mmh__badge { background: rgba(34, 30, 27, 0.9); border-color: rgba(255, 255, 255, 0.12); }
html[data-theme="dark"] .svc--feature,
html[data-theme="dark"] .home-product-card:first-child {
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9);
}
html[data-theme="dark"] .method { background: #0c0a08; }
html[data-theme="dark"] .stat__num span { color: var(--orange-2); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1060px) {
  .site-header__inner {
    grid-template-columns: 1fr auto; grid-template-areas: "brand actions" "nav nav";
    width: min(100% - 32px, 1440px); gap: 12px 16px; padding: 14px 0;
  }
  .site-brand { grid-area: brand; }
  .site-nav { grid-area: nav; width: 100%; }
  .site-actions { grid-area: actions; }
  .site-header.is-condensed { min-height: 70px; }
}

@media (max-width: 980px) {
  .method__grid { grid-template-columns: 1fr; }
  .method__visual { max-width: 460px; order: -1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .faq__grid { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 920px) {
  .mmh__grid { grid-template-columns: 1fr; column-gap: 0; min-height: auto; padding: clamp(20px, 5vw, 40px) 0 clamp(40px, 7vw, 60px); }
  .mmh__media { order: -1; justify-self: center; width: min(100%, 560px); max-width: none; padding: 22px 28px 30px; }
  .mmh__photo { aspect-ratio: 16 / 11; }
  .mmh__text { max-width: 680px; margin: 0 auto; padding: clamp(16px, 5vw, 32px) 0 0; }
  .mmh__sub { min-height: 0; }
  .mmh__scroll { display: none; }
  .mmh__badge--one { top: -14px; right: -14px; }
  .mmh__badge--two { left: -14px; bottom: -16px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .process__line { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .home-contact__inner { grid-template-columns: 1fr; grid-template-areas: "copy" "form" "details"; }
  .contact-form { max-width: none; justify-self: stretch; }
  .contact-details { margin-top: 6px; }
}

/* Mobile + Tablet: schlanke Leiste, Badge-Logo, Vollbild-Overlay-Menü */
@media (max-width: 1060px) {
  body { font-size: 16px; }

  /* Mobile Kopfleiste: konstante Höhe wie Desktop (McFIT-Stil) */
  .site-header { min-height: 70px; }
  .site-header.is-condensed { min-height: 70px; }
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "brand actions";
    width: min(100% - 28px, 1440px); min-height: inherit; gap: 12px; padding: 0;
  }
  .site-header.is-condensed .site-header__inner { padding-top: 0; }
  .site-brand { grid-area: brand; min-width: 0; position: relative; z-index: 46; }
  .site-brand__lockup, .site-brand__mono, .site-brand__badge, .site-header.is-condensed .site-brand__mono { display: none !important; }
  .site-brand__word { display: inline-block; }
  .site-actions { grid-area: actions; gap: 6px; position: relative; z-index: 46; }
  .site-login, .site-contact-btn { display: none; }
  /* Theme-Button bar wie der Hamburger (kein Kasten) */
  .theme-button { width: 34px; min-width: 34px; min-height: 34px; padding: 0; background: transparent; border: 0; box-shadow: none; border-radius: 0; -webkit-tap-highlight-color: transparent; }
  /* iOS: Hover bleibt nach Tap „kleben" → kein oranger Kasten, nur Icon wechselt */
  .theme-button:hover, .theme-button:focus, .theme-button:focus-visible, .theme-button:active {
    background: transparent; border: 0; box-shadow: none; color: var(--ink); transform: none;
  }
  /* Dark-Theme: Hover-/Tap-Hintergrund am Theme-Button ebenfalls neutralisieren */
  html[data-theme="dark"] .theme-button,
  html[data-theme="dark"] .theme-button:hover,
  html[data-theme="dark"] .theme-button:focus,
  html[data-theme="dark"] .theme-button:focus-visible,
  html[data-theme="dark"] .theme-button:active {
    background: transparent; color: var(--ink);
  }
  .site-menu-toggle { -webkit-tap-highlight-color: transparent; }
  /* Menü-Icon: kein Button-Kasten, nur 3 breite Striche */
  .site-menu-toggle {
    display: inline-flex; align-items: center; justify-content: center; flex-direction: column;
    width: 38px; height: 34px; min-height: 0; padding: 0;
    background: transparent; border: 0; box-shadow: none; border-radius: 0;
  }
  .site-menu-toggle span { width: 24px; height: 2px; margin: 3px auto; border-radius: 2px; }
  .site-header.is-menu-open .site-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.is-menu-open .site-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Beim offenen Menü: Kopfleiste transparent, Logo weg – nur das X bleibt am
     oberen Rand der Schublade stehen. backdrop-filter MUSS hier aus, sonst wird
     der Header zum Bezugsrahmen für die position:fixed-Schublade/-Scrim und
     deren Höhe kollabiert. */
  .site-header.is-menu-open { background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header.is-menu-open .site-brand { display: none; }
  html.is-nav-locked, html.is-nav-locked body { overflow: hidden; }

  /* Abgedunkelter Hintergrund hinter der Schublade (anklickbar zum Schließen) */
  .site-nav__scrim {
    display: block; position: fixed; inset: 0; z-index: 44;
    background: rgba(20, 16, 13, 0.46);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
  }
  .site-header.is-menu-open .site-nav__scrim { opacity: 1; visibility: visible; }

  /* X über der hellen Schublade immer dunkel sichtbar; Theme-Button aus */
  .site-header.is-menu-open .theme-button { opacity: 0; pointer-events: none; }
  .site-header.is-menu-open .site-menu-toggle span { background: var(--ink); }
  /* Schließen als rundes X – AUSSERHALB der Schublade, oben LINKS im
     abgedunkelten Bereich (Schublade kommt von rechts). */
  .site-header.is-menu-open .site-menu-toggle {
    position: fixed; left: 14px; right: auto; top: calc(env(safe-area-inset-top, 0px) + 15px); z-index: 47;
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; box-shadow: 0 3px 14px -3px rgba(20, 16, 13, 0.3);
    border: 1px solid rgba(20, 16, 13, 0.06);
  }

  /* ---- Premium-Schubladenmenü (Drawer rechts, nicht volle Breite) ---- */
  .site-nav {
    grid-area: auto;
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; z-index: 45;
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 2px;
    width: min(86vw, 360px);
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 16px calc(env(safe-area-inset-bottom, 0px) + 20px);
    background: var(--site-bg);
    border: 0; border-radius: 0;
    box-shadow: -30px 0 70px -34px rgba(20, 16, 13, 0.5);
    -webkit-backdrop-filter: none; backdrop-filter: none;
    overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
    visibility: hidden; transform: translateX(103%);
    transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.44s;
  }
  .site-header.is-menu-open .site-nav { visibility: visible; transform: translateX(0); }
  html[data-theme="dark"] .site-nav { background: var(--site-bg); border: 0; box-shadow: -30px 0 70px -34px rgba(0, 0, 0, 0.6); }

  /* sanft gestaffeltes Einblenden der Menüpunkte (nur Opacity – KEIN transform,
     sonst würden die Items zum Bezugsrahmen für das absolute Sub-Panel) */
  .site-header.is-menu-open .site-nav > * { opacity: 0; animation: navItemIn 0.45s ease forwards; }
  .site-header.is-menu-open .site-nav > *:nth-child(1) { animation-delay: 0.08s; }
  .site-header.is-menu-open .site-nav > *:nth-child(2) { animation-delay: 0.13s; }
  .site-header.is-menu-open .site-nav > *:nth-child(3) { animation-delay: 0.18s; }
  .site-header.is-menu-open .site-nav > *:nth-child(4) { animation-delay: 0.22s; }
  .site-header.is-menu-open .site-nav > *:nth-child(5) { animation-delay: 0.26s; }
  .site-header.is-menu-open .site-nav > *:nth-child(6) { animation-delay: 0.30s; }
  .site-header.is-menu-open .site-nav > *:nth-child(7) { animation-delay: 0.34s; }
  .site-header.is-menu-open .site-nav > *:nth-child(n+8) { animation-delay: 0.38s; }
  @keyframes navItemIn { to { opacity: 1; } }

  /* Feature-Karten (Empfehlungen) oben in der Schublade */
  .site-nav__feature { display: flex; flex-direction: column; gap: 12px; margin: 0 0 14px; }
  .navfeat {
    position: relative; display: block; overflow: hidden; isolation: isolate;
    min-height: 122px; border-radius: 12px; text-decoration: none;
    box-shadow: 0 14px 34px -20px rgba(20, 16, 13, 0.55);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* Studienberatung behaelt die bisherige Hoehe (122px = Maximum),
     Quick-Check bewusst etwas kleiner */
  .navfeat--check { min-height: 112px; } /* TEST: etwas hoeher (Revert: 96px) */
  .navfeat:active { transform: scale(0.985); }
  .navfeat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; z-index: 0; }
  .navfeat--study .navfeat__img { object-position: center 34%; }
  .navfeat--check .navfeat__img { object-position: center 45%; }
  /* Verlauf nach UNTEN dunkel -> Gesichter oben frei, Text unten immer lesbar */
  .navfeat__scrim { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(20, 16, 13, 0.88) 0%, rgba(20, 16, 13, 0.46) 38%, rgba(20, 16, 13, 0.04) 78%); }
  /* Oben kraeftig neutral-dunkel (Titel-Lesbarkeit wie Kachel 1), unten leichter Orange-Ton */
  .navfeat--check .navfeat__scrim {
    background: linear-gradient(to bottom, rgba(20, 16, 13, 0.82) 0%, rgba(45, 28, 15, 0.34) 32%, rgba(120, 60, 25, 0) 60%, rgba(120, 52, 18, 0.44) 100%); }
  /* Beratungskachel: Verlauf nach RECHTS dunkel -> Klientin links frei, Text rechts lesbar */
  .navfeat--study .navfeat__scrim {
    background: linear-gradient(100deg, rgba(20, 16, 13, 0.08) 2%, rgba(20, 16, 13, 0.46) 48%, rgba(20, 16, 13, 0.86) 100%); }
  /* Basis: Textblock unten-links (Quick-Check) */
  .navfeat__body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end; gap: 4px; padding: 13px 15px; text-align: left; }
  /* Beratungskachel: Kicker+Titel oben-rechts, CTA nach unten geschoben */
  .navfeat--study .navfeat__body { align-items: flex-end; justify-content: flex-start; text-align: right; }
  /* "Individuelle" orange-kursiv (Cormorant Garamond, wie im "Erste Schritte"-PDF) */
  .navfeat--study .navfeat__kicker { margin: 6px 0 -1px; color: var(--orange-2);
    font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 700;
    font-size: 18px; line-height: 1; text-transform: none; letter-spacing: 0;
    text-shadow: 0 1px 5px rgba(20, 16, 13, 0.5); }
  .navfeat--study .navfeat__cta { margin-top: auto; }
  .navfeat__kicker { font-family: "Hanken Grotesk", sans-serif; font-size: 9.5px; font-weight: 800;
    letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(20, 16, 13, 0.35); }
  .navfeat__title { font-family: "Hanken Grotesk", sans-serif; font-weight: 700; line-height: 1.1;
    letter-spacing: -0.01em; color: #fff; max-width: 15ch; text-wrap: balance;
    text-shadow: 0 1px 6px rgba(20, 16, 13, 0.4); }
  .navfeat--study .navfeat__title { font-size: 15px; }
  .navfeat--check .navfeat__title { font-size: 15px; max-width: none; white-space: nowrap; margin-top: 6px; } /* gleiche Groesse wie obere Kachel */
  /* "du" – orange + kursiv (Cormorant Garamond, wie im "Erste Schritte"-PDF) */
  .navfeat--check .navfeat__title .navfeat__em { color: var(--orange-2);
    font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 700; font-size: 20px;
    text-shadow: 0 1px 5px rgba(20, 16, 13, 0.5); }
  /* CTA als kleine Glas-Pill */
  .navfeat__cta { margin-top: 2px; display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255, 255, 255, 0.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.42); border-radius: 999px; padding: 4px 10px;
    font-family: "Hanken Grotesk", sans-serif; font-size: 10.5px; font-weight: 800; letter-spacing: 0.02em; color: #fff; }
  .navfeat__cta svg { width: 12px; height: 12px; }
  .navfeat--check .navfeat__body { padding: 26px 14px 13px; justify-content: flex-start; } /* Titel-Position; Info-Zeile liegt absolut darüber */
  .navfeat--check .navfeat__cta { align-self: flex-end; margin-top: auto; }
  /* schlichte Info-Zeile ganz oben – nur Text, absolut (schiebt den Titel nicht) */
  .navfeat--check .navfeat__meta { position: absolute; top: 17px; left: 14px; right: 14px; z-index: 3; margin: 0;
    font-family: "Hanken Grotesk", sans-serif; font-size: 8.5px; font-weight: 800; letter-spacing: 0.11em;
    text-transform: uppercase; line-height: 1.3; color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 4px rgba(20, 16, 13, 0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* position:static, damit das absolute Sub-Panel sich auf die Schublade
     (.site-nav) bezieht und sie komplett überdeckt – nicht nur die Item-Zeile */
  .site-nav__item { display: block; width: 100%; min-width: 0; position: static; }
  .site-nav__link, .site-nav__item > a {
    display: flex; align-items: center; width: 100%; min-height: 50px;
    padding: 5px 2px; justify-content: flex-start; text-align: left; white-space: normal;
    font-family: "Hanken Grotesk", sans-serif; font-size: 18px; font-weight: 600;
    letter-spacing: 0; text-transform: none; color: var(--ink);
    border-bottom: 1px solid var(--site-line); border-radius: 0;
  }
  .site-nav__link::before, .site-nav__item > a::before { display: none; }
  .site-nav__link:hover, .site-nav__item > a:hover { background: transparent; color: var(--orange-dark); }
  .site-nav__link.is-active, .site-nav__item > a.is-active { background: transparent; color: var(--orange); font-weight: 700; }

  /* Gruppen (Leistungen, Quick-Checks): tippen öffnet eine eigene Unterebene */
  .site-nav__item--has-menu > a { cursor: pointer; }
  .site-nav__item--has-menu::after { display: none; }
  /* rechter Pfeil als Hinweis „öffnet Unterebene" */
  .site-nav__item--has-menu > a::after {
    display: block; content: ""; width: 8px; height: 8px; margin: 0 4px 0 auto;
    border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: rotate(-45deg);
  }
  .site-nav__item--has-menu:hover > a::after { transform: rotate(-45deg); }

  /* Unterebene: eigenes Panel, gleitet von rechts über das Hauptmenü */
  .site-submenu {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 6;
    display: flex; flex-direction: column; gap: 0; width: auto;
    margin: 0; padding: calc(env(safe-area-inset-top, 0px) + 14px) 16px calc(env(safe-area-inset-bottom, 0px) + 20px);
    border: 0; border-radius: 0; background: var(--site-bg); box-shadow: none;
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s;
    overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; opacity: 1; pointer-events: auto;
  }
  .site-submenu.is-open { transform: translateX(0); visibility: visible; }
  .site-nav.is-sub-open { overflow: hidden; }
  /* aktives Item über die Geschwister heben, damit das Panel alles überdeckt */
  .site-nav__item--has-menu.is-subopen { z-index: 9; }

  /* Zurück-Zeile oben in der Unterebene (kompakt, X liegt links außerhalb) */
  .site-submenu__back {
    display: flex; align-items: center; gap: 7px; width: auto; min-height: 38px;
    margin: 0 0 4px; padding: 0; background: none; border: 0; border-radius: 0;
    cursor: pointer; text-align: left; color: var(--soft);
  }
  .site-submenu__back svg { width: 16px; height: 16px; flex: 0 0 auto; }
  .site-submenu__back span { font-family: "Hanken Grotesk", sans-serif; font-size: 14px; font-weight: 600; color: var(--soft); letter-spacing: 0; }
  .site-submenu__back:hover, .site-submenu__back:hover span { color: var(--orange-dark); }

  /* Kopf der Unterebene: Titel + „Alle ansehen", darunter Trennlinie */
  .site-submenu__lead { display: flex; flex-direction: column; gap: 3px; margin: 0 0 8px; padding: 0 0 14px; border-bottom: 1px solid var(--site-line); }
  .site-submenu__h { font-family: "Hanken Grotesk", sans-serif; font-size: 20px; font-weight: 700; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; }
  .site-submenu__all { display: inline-flex; align-items: center; gap: 6px; font-family: "Hanken Grotesk", sans-serif; font-size: 13.5px; font-weight: 600; color: var(--orange-dark); text-decoration: none; }
  .site-submenu__all svg { flex: 0 0 auto; }

  .site-submenu__card { display: flex; align-items: center; min-height: 72px; padding: 15px 0; background: transparent; border: 0; border-bottom: 1px solid var(--site-line); }
  .site-submenu__card img { display: none; }
  .site-submenu__desc, .site-submenu__cta, .site-submenu__arrow { display: none; }
  .site-submenu__card::before { display: none; }
  /* Foto-Thumbnail statt Icon, wenn vorhanden (Hauptleistungen).
     Höhere Spezifität als ".site-submenu__card img { display:none }". */
  .site-submenu__card .site-submenu__thumb { display: block; flex: 0 0 auto; width: 54px; height: 54px; margin-right: 0; border-radius: 13px; object-fit: cover; background: var(--paper-2, #edeef1); box-shadow: inset 0 0 0 1px rgba(20, 16, 13, 0.07); }
  .site-submenu__card:has(.site-submenu__thumb) .site-submenu__ic { display: none; }
  .site-submenu__ic { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 44px; height: 44px; margin-right: 15px; border-radius: 12px; background: rgba(243, 111, 44, 0.1); color: var(--orange-dark); }
  .site-submenu__ic svg { width: 22px; height: 22px; }
  .site-submenu__card-body { padding: 0; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .site-submenu__card strong { color: var(--ink); font-size: 15px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; text-transform: none; }
  .site-submenu__card small { display: block; font-family: "Hanken Grotesk", sans-serif; font-size: 12px; font-weight: 500; line-height: 1.3; color: var(--muted); letter-spacing: 0; text-transform: none; }
  .site-submenu__card:hover strong, .site-submenu__card:active strong { color: var(--orange-dark); }
  .site-submenu__more-h { display: block; font-family: "Hanken Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 28px 0 4px; }
  .site-submenu__more { display: flex; flex-direction: column; gap: 0; margin-top: 2px; padding: 0; border-top: 0; }
  .site-submenu__more a { display: flex; align-items: center; min-height: 44px; padding: 4px 2px; font-family: "Hanken Grotesk", sans-serif; font-size: 15px; font-weight: 600; color: var(--soft); text-decoration: none; }
  .site-submenu__more a:hover { color: var(--orange-dark); }

  /* Menü-Fuß: prominenter Kontakt-Button + kleiner Login-Icon-Button (eine Zeile) */
  .site-nav__foot { margin-top: auto; padding-top: 14px; display: flex; flex-direction: row; align-items: stretch; gap: 8px; }
  .site-nav__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    flex: 1 1 auto; min-height: 44px; padding: 0 16px; border-bottom: 0;
    color: #fff; background: var(--orange);
    font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: 13.5px;
    letter-spacing: 0.01em; text-decoration: none; border-radius: 11px; line-height: 1;
    white-space: nowrap; transition: background-color 160ms ease;
  }
  .site-nav__cta:hover, .site-nav__cta:focus-visible { background: var(--orange-dark); }
  .site-nav__cta svg { width: 14px; height: 14px; transition: transform 160ms ease; }
  .site-nav__cta:active svg { transform: translateX(3px); }
  .site-nav__login {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    flex: 0 0 auto; min-height: 44px; padding: 0 16px; border-bottom: 0;
    color: var(--soft); background: transparent; border: 1px solid var(--site-line);
    font-family: "Hanken Grotesk", sans-serif; font-weight: 600; font-size: 13px;
    text-decoration: none; border-radius: 11px; white-space: nowrap;
  }
  .site-nav__login svg { width: 16px; height: 16px; flex: 0 0 auto; }
  .site-nav__login:hover, .site-nav__login:focus-visible { color: var(--ink); border-color: var(--orange); }
}

/* Schubladenmenü: Bewegung reduzieren, wenn vom Nutzer gewünscht */
@media (prefers-reduced-motion: reduce) {
  .site-nav { transition: visibility 0.01s; }
  .site-header.is-menu-open .site-nav > * { animation: none; opacity: 1; transform: none; }
  .navfeat { transition: none; }
}

/* Nur Telefon: Stats/Voices/Footer kompakter (Tablets unverändert) */
@media (max-width: 720px) {
  .stats__card { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 4px 8px; }
  .voices__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brandcol { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .mmh__h1 { font-size: clamp(35px, 10.5vw, 50px); }
  /* smaller eyebrow + floating badges on phones */
  .mmh__ey { font-size: 10px; letter-spacing: 0.07em; gap: 7px; margin-bottom: 14px; }
  .mmh__ey::before { width: 16px; }
  .mmh__badge { width: min(164px, 56%); padding: 8px 10px; gap: 8px; grid-template-columns: 28px minmax(0, 1fr); border-radius: 11px; }
  .mmh__badge-ic { width: 28px; height: 28px; border-radius: 8px; }
  .mmh__badge-ic svg { width: 15px; height: 15px; }
  .mmh__badge-kicker { font-size: 9px; }
  .mmh__badge-main { font-size: 11.5px; }
  .mmh__badge--one { top: -8px; right: -4px; }
  .mmh__badge--two { left: -4px; bottom: -12px; }
  .mmh__photo { aspect-ratio: 4 / 3; }
  .mmh__cta { width: 100%; }
  .mmh__cta .btn { flex: 1 1 100%; }
  .process__grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__submit { width: 100%; }
  .stats__card { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 4px 5px; }
  .stat__num { font-size: 19px; }
  .stat__label { font-size: 10.5px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .site-header__inner { width: min(100% - 24px, 1440px); }
  .site-brand { font-size: 16px; }
  .theme-button { width: 38px; min-width: 38px; }
}

/* =====================================================================
   IMAGE BAND (full-bleed)
   ===================================================================== */
.band { position: relative; height: clamp(280px, 40vw, 440px); overflow: hidden; background: var(--bg-2); }
.band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  background: linear-gradient(180deg, rgba(20, 15, 11, 0.42), rgba(20, 15, 11, 0.55));
}
.band__text {
  margin: 0; max-width: 15ch; color: #fff;
  font-family: "Hanken Grotesk", sans-serif; font-weight: 800;
  font-size: clamp(27px, 4.4vw, 50px); line-height: 1.06; letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.band__text em {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 500;
  background: linear-gradient(115deg, #ffb074, #ff8a47);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* =====================================================================
   GALLERY — Einblicke
   ===================================================================== */
.gallery__track {
  display: grid; gap: 14px;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  grid-template-rows: 214px 214px;
  grid-template-areas: "a b d" "a c d";
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--bg-2); box-shadow: var(--shadow-sm);
}
.gallery__item picture { display: block; width: 100%; height: 100%; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--a { grid-area: a; }
.gallery__item--b { grid-area: b; }
.gallery__item--c { grid-area: c; }
.gallery__item--d { grid-area: d; }

/* carousel dot indicators (mobile only) */
.carousel-dots { display: none; }

/* =====================================================================
   ORIENTIERUNGS-CHECK (quiz)
   ===================================================================== */
.quiz__wrap { --maxw: 680px; }
.quiz__card {
  position: relative; margin-top: clamp(10px, 2vw, 22px);
  display: flex; flex-direction: column; justify-content: center; min-height: 300px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.quiz__card.is-swapping { opacity: 0; transform: translateY(6px); }

.quiz__top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.quiz__step { color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.05em; white-space: nowrap; }
.quiz__bar { flex: 1; height: 5px; border-radius: 999px; background: var(--line); overflow: hidden; }
.quiz__bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); transition: width 0.4s var(--ease); }

.quiz__q { margin: 0 0 22px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(20px, 2.4vw, 27px); line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left;
  padding: 15px 18px; cursor: pointer; font: inherit; font-weight: 600; font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line-2); border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.quiz__opt-ic { flex: 0 0 auto; color: var(--orange-dark); opacity: 0; transform: translateX(-4px); transition: opacity 0.2s ease, transform 0.2s ease; }
/* Hover nur auf echten Hover-Geraeten – sonst „klebt" der Hover auf Touch und die naechste Frage wirkt vorausgewaehlt */
@media (hover: hover) {
  .quiz__opt:hover { border-color: var(--orange); background: var(--tint); transform: translateX(3px); }
  .quiz__opt:hover .quiz__opt-ic { opacity: 1; transform: translateX(0); }
}
.quiz__opt:focus-visible { border-color: var(--orange); background: var(--tint); transform: translateX(3px); }
.quiz__opt:focus-visible .quiz__opt-ic { opacity: 1; transform: translateX(0); }
/* Bereits gewaehlte Antwort (z. B. beim Zurueckblättern) sichtbar markieren */
.quiz__opt.is-selected { border-color: var(--orange); background: var(--tint); }
.quiz__opt.is-selected .quiz__opt-ic { opacity: 1; transform: translateX(0); }
.quiz__back { margin-top: 16px; align-self: start; padding: 4px 0; background: none; border: 0; cursor: pointer; color: var(--muted); font: inherit; font-size: 14px; font-weight: 600; }
.quiz__back:hover { color: var(--ink); }

.quiz__result { text-align: center; }
.quiz__result-ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: var(--tint); color: var(--orange-dark); margin-bottom: 16px; }
.quiz__result-ic svg { width: 28px; height: 28px; }
.quiz__result-k { display: block; color: var(--orange-dark); font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.quiz__result-title { margin: 0 0 12px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
.quiz__result-text { margin: 0 auto 18px; max-width: 48ch; color: var(--soft); font-size: 16px; line-height: 1.62; }
.quiz__gets { display: inline-grid; gap: 11px; margin: 0 auto 24px; padding: 0; list-style: none; text-align: left; }
.quiz__gets li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; color: var(--ink); font-size: 14.5px; line-height: 1.45; font-weight: 600; }
.quiz__gets .qg-ic { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--tint); color: var(--orange-dark); }
.quiz__gets .qg-ic svg { width: 13px; height: 13px; }
.quiz__result-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.quiz__restart { background: none; border: 0; cursor: pointer; color: var(--muted); font: inherit; font-size: 14px; font-weight: 700; }
.quiz__restart:hover { color: var(--ink); }
.quiz__note { margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.quiz__fallback { margin: 0; color: var(--soft); line-height: 1.6; }

/* email capture inside the result */
.quiz__mail { width: 100%; max-width: 420px; margin: 22px auto 0; padding-top: 20px; border-top: 1px solid var(--line); text-align: left; }
.quiz__mail-label { margin: 0 0 10px; text-align: center; color: var(--ink); font-size: 14px; font-weight: 700; }
.quiz__mail-row { display: flex; gap: 8px; }
.quiz__mail-row input {
  flex: 1; min-width: 0; min-height: 46px; padding: 0 14px; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line-2); border-radius: 10px; outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.quiz__mail-row input:focus { border-color: rgba(243, 111, 44, 0.7); box-shadow: 0 0 0 3px rgba(243, 111, 44, 0.14); }
.quiz__mail-row .btn { flex: 0 0 auto; min-height: 46px; padding: 0 18px; }
.quiz__consent { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 9px; margin-top: 12px; color: var(--soft); font-size: 12.5px; line-height: 1.45; cursor: pointer; }
.quiz__consent > span { flex: 1 1 0; min-width: 0; } /* Text bleibt NEBEN der Checkbox (wrap gilt nur für die Fehlerzeile) */
.quiz__consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.quiz__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.quiz__mail-msg { margin: 12px 0 0; min-height: 1.1em; text-align: center; font-size: 13.5px; font-weight: 600; }
.quiz__mail-msg.is-ok { color: #17613d; }
.quiz__mail-msg.is-err { color: #b3402a; }
.quiz__mail.is-done .quiz__mail-row, .quiz__mail.is-done .quiz__consent { display: none; }
html[data-theme="dark"] .quiz__mail-msg.is-ok { color: #51c98a; }

/* =====================================================================
   QUICK-CHECK /kurzprofil/ (eigene Seite – baut auf .quiz__* auf)
   ===================================================================== */
.st-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin: 20px 0 0; padding: 0; list-style: none; }
.st-trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--soft); font-size: 14px; font-weight: 600; }
.st-trust__ic { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--tint); color: var(--orange-dark); }
.st-trust__ic svg { width: 13px; height: 13px; }
.st-foot { margin: 18px auto 0; max-width: 560px; text-align: center; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.st-foot a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }

/* Vorteile-Block (Startseite des Tests) */
.st-benefits { max-width: 520px; margin: clamp(18px, 3vw, 30px) auto 0; padding: clamp(22px, 3vw, 32px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: left; }
.st-benefits__h { margin: 0 0 16px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); text-align: center; }
.st-benefits__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.st-benefits__list li { display: grid; grid-template-columns: 24px 1fr; gap: 11px; align-items: start; font-size: 15.5px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.st-benefits__ic { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--tint); color: var(--orange-dark); }
.st-benefits__ic svg { width: 14px; height: 14px; }
.st-benefits__cta { width: 100%; min-height: 52px; justify-content: center; font-size: 16px; }

.st-group { display: inline-block; margin-bottom: 12px; color: var(--orange-dark); font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.st-data { text-align: center; }
.st-form { width: 100%; max-width: 460px; margin: 20px auto 0; display: grid; gap: 13px; text-align: left; }
.st-field { display: grid; gap: 6px; }
.st-field > span { font-size: 13px; font-weight: 700; color: var(--ink); }
.st-field input {
  /* 16px verhindert das automatische Ranzoomen von iOS/Android beim Fokus */
  min-height: 46px; padding: 0 14px; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line-2); border-radius: 10px; outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.st-field input:focus { border-color: rgba(243, 111, 44, 0.7); box-shadow: 0 0 0 3px rgba(243, 111, 44, 0.14); }
/* Inline-Fehler direkt am Feld */
.st-field__err { display: block; font-size: 12px; font-weight: 600; line-height: 1.35; color: #b3402a; }
.quiz__consent .st-field__err { flex-basis: 100%; margin: 4px 0 0 25px; }
.st-form input.is-invalid { border-color: #b3402a; }
.st-form input.is-invalid:focus { border-color: #b3402a; box-shadow: 0 0 0 3px rgba(179, 64, 42, 0.14); }
html[data-theme="dark"] .st-field__err { color: #ff8a70; }
.st-form__actions { margin-top: 4px; }
.st-form__actions .btn { width: 100%; min-height: 50px; justify-content: center; }
.st-declare { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.st-declare a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }

.quiz__more { text-align: center; margin: 18px 0 0; color: var(--soft); font-size: 14.5px; }
.quiz__more a { color: var(--orange-dark); font-weight: 700; text-decoration: none; }
.quiz__more a:hover { text-decoration: underline; }

/* Zielgruppen-Auswahl */
.st-aud-sub { text-align: center; color: var(--soft); font-size: 14.5px; margin: 0 0 18px; }
.st-aud-opts { display: grid; gap: 12px; }
.st-aud-card { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer; font: inherit;
  padding: 18px 20px; background: var(--bg); border: 1.5px solid var(--line-2); border-radius: 14px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.st-aud-card:hover, .st-aud-card:focus-visible { border-color: var(--orange); background: var(--tint); transform: translateY(-2px); }
.st-aud-card__txt { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.st-aud-card__t { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 17px; color: var(--ink); }
.st-aud-card__d { font-size: 13.5px; color: var(--soft); line-height: 1.4; }
.st-aud-card__ic { flex: 0 0 auto; color: var(--orange-dark); }

/* Ergebnis: Profil-Balken + Insight + Doppel-CTA */
.st-greet { margin: 0 0 6px; color: var(--soft); font-size: 15px; }
.st-bars { max-width: 460px; margin: 6px auto 0; display: grid; gap: 11px; text-align: left; }
.st-bar { display: grid; gap: 5px; }
.st-bar__label { font-size: 13px; font-weight: 600; color: var(--ink); }
.st-bar__track { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.st-bar__fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); }
.st-insight { max-width: 460px; margin: 18px auto 0; text-align: left; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.st-insight p { margin: 0 0 7px; font-size: 14.5px; line-height: 1.55; color: var(--ink); }
.st-insight p:last-child { margin-bottom: 0; }
.st-insight strong { color: var(--orange-dark); }
.st-insight-h { font-size: 11.5px !important; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; color: var(--orange-dark); margin: 0 0 10px !important; }
.st-gets-h { margin: 20px 0 10px; font-size: 14px; font-weight: 700; color: var(--ink); }
.st-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.st-cta__more { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; }
.st-cta__link { color: var(--orange-dark); font-weight: 700; font-size: 14px; text-decoration: none; }
.st-cta__link:hover { text-decoration: underline; }
.st-sign { margin: 16px 0 6px; color: var(--soft); font-size: 14px; }

/* Teaser nach der letzten Frage: Typ + Claim sofort, Details „verschlossen"
   (die vollständige Auswertung kommt per E-Mail) */
.st-teaser {
  margin: 6px auto 18px; padding: 20px 22px; max-width: 460px;
  background: var(--espresso, #201a15); border-radius: 18px; text-align: center;
}
.st-teaser__k { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; color: #ff9d5c; margin-bottom: 8px; }
.st-teaser__type { margin: 0; font-family: var(--heading, inherit); font-size: clamp(21px, 2.6vw, 26px); font-weight: 700; color: #f2ece3; }
.st-teaser__claim { margin: 8px 0 0; font-style: italic; color: rgba(242, 236, 227, 0.85); font-size: 14.5px; }
.st-teaser__note { margin: 8px 0 0; color: rgba(242, 236, 227, 0.7); font-size: 13px; }
.st-teaser__top { display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; margin: 18px auto 0; max-width: 340px; text-align: left; }
.st-teaser__toplabel { grid-column: 1 / -1; font-size: 12.5px; font-weight: 700; color: #f2ece3; }
.st-teaser__track { display: block; height: 9px; border-radius: 999px; background: rgba(242, 236, 227, 0.16); overflow: hidden; }
.st-teaser__fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #f36f2c, #ff9d5c); }
.st-teaser__pct { font-size: 13px; font-weight: 800; color: #ff9d5c; font-variant-numeric: tabular-nums; }
.st-teaser__detail { margin: 12px auto 0; max-width: 340px; color: rgba(242, 236, 227, 0.85); font-size: 13.5px; line-height: 1.55; }
.st-teaser__lock { display: flex; flex-direction: column; gap: 7px; margin: 16px auto 0; max-width: 300px; filter: blur(2.5px); opacity: 0.45; }
.st-teaser__lock span { display: block; height: 9px; border-radius: 999px; background: linear-gradient(90deg, #ff9d5c, rgba(255, 157, 92, 0.25)); }
.st-teaser__lock span:nth-child(2) { width: 78%; }
.st-teaser__lock span:nth-child(3) { width: 56%; }
.st-teaser__locknote { margin: 12px 0 0; color: rgba(242, 236, 227, 0.75); font-size: 13px; line-height: 1.5; }
.st-confirm__type strong { color: var(--orange-dark); }

/* Quick-Check: dezentere Frage + zentrierte, kompakte Antworten (scoped) */
[data-kurzprofil] .quiz__q { font-weight: 700; font-size: clamp(16px, 1.6vw, 18px); line-height: 1.35; margin: 0 0 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
[data-kurzprofil] .quiz__opts { gap: 8px; width: 100%; max-width: 460px; margin-left: auto; margin-right: auto; }
[data-kurzprofil] .quiz__opt { font-size: 14.5px; font-weight: 500; padding: 12px 18px; }

/* Pflichtfeld-Markierung (Sternchen + Fußnote) */
.st-req { margin-left: 2px; font-weight: 700; font-style: normal; color: var(--orange-dark); }
.st-reqnote { margin: 10px 0 0; font-size: 12px; color: var(--muted); }

/* Eigene Checkboxen im „Vorteile"-Stil (orangener Haken auf hellem Orange) */
[data-kurzprofil] .quiz__consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex: 0 0 auto;
  width: 18px; height: 18px; margin-top: 1px; border: 1.5px solid var(--line-2);
  border-radius: 5px; background: #fff; cursor: pointer; position: relative; transition: background 0.15s ease, border-color 0.15s ease;
}
[data-kurzprofil] .quiz__consent input[type="checkbox"]:hover { border-color: var(--orange); }
[data-kurzprofil] .quiz__consent input[type="checkbox"]:checked { background: var(--tint); border-color: var(--orange); }
[data-kurzprofil] .quiz__consent input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1.5px; width: 5px; height: 9px;
  border: solid var(--orange-dark); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
[data-kurzprofil] .quiz__consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* =====================================================================
   STICKY MOBILE QUICK-CONTACT BAR
   ===================================================================== */
.mcta { display: none; }

/* =====================================================================
   AKTUELLES (Blog) — Übersicht + Artikel
   ===================================================================== */
/* Übersicht */
.akt-list__wrap { --maxw: 960px; }
.akt-toolbar { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: flex-end; justify-content: space-between; margin: 0 0 clamp(22px, 3vw, 34px); }
.akt-search-wrap { position: relative; flex: 0 1 300px; }
.akt-search-ic { position: absolute; left: 2px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted); pointer-events: none; }
.akt-search { width: 100%; min-height: 42px; padding: 0 4px 6px 28px; font: inherit; font-size: 15px; color: var(--ink); background: transparent; border: 0; border-bottom: 1.5px solid var(--line-2); border-radius: 0; outline: none; transition: border-color 0.16s ease; }
.akt-search::placeholder { color: var(--muted); }
.akt-search:focus { border-bottom-color: var(--orange); }
.akt-search:focus + .akt-search-ic, .akt-search-wrap:focus-within .akt-search-ic { color: var(--orange-dark); }
.akt-cats { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 2px 20px; border-bottom: 1px solid var(--line); }
.akt-pill { font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; padding: 8px 2px; margin-bottom: -1px; border: 0; border-bottom: 2px solid transparent; border-radius: 0; background: transparent; color: var(--muted); transition: color 0.18s var(--ease), border-color 0.18s var(--ease); }
.akt-pill:hover { color: var(--ink); }
.akt-pill.is-active { color: var(--ink); border-bottom-color: var(--ink); background: transparent; }
.akt-pill[data-cat].is-active { color: var(--cat, var(--ink)); border-bottom-color: var(--cat, var(--ink)); background: transparent; }
/* Mobil: Suche + Kategorien deutlich kleiner & kompakter (eine scrollbare Zeile) */
@media (max-width: 640px) {
  .akt-toolbar { gap: 12px 0; margin-bottom: 16px; }
  .akt-search-wrap { flex: 1 1 100%; }
  .akt-search-ic { width: 15px; height: 15px; left: 1px; }
  .akt-search { min-height: 34px; font-size: 13.5px; padding: 0 2px 5px 23px; }
  .akt-cats {
    flex: 1 1 100%; flex-wrap: nowrap; gap: 0 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .akt-cats::-webkit-scrollbar { display: none; }
  .akt-pill { font-size: 12px; padding: 6px 1px; white-space: nowrap; flex: 0 0 auto; }
}

.akt-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.akt-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease); will-change: transform; }
.akt-card:hover { box-shadow: var(--shadow-md); }
.akt-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-2); }
.akt-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transform: translateZ(0); backface-visibility: hidden; will-change: transform; transition: transform 0.5s var(--ease); }
.akt-card:hover .akt-card__img { transform: scale(1.06) translateZ(0); }
.akt-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.03em; padding: 4px 9px; border-radius: 6px; }
.akt-card__body { display: flex; flex-direction: column; gap: 8px; padding: 15px 18px 17px; flex: 1 1 auto; }
.akt-card__body .akt-badge { align-self: flex-start; }
.akt-card__title { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); margin: 2px 0 0; }
.akt-card__teaser { color: var(--soft); font-size: 14px; line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.akt-card__meta { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; color: var(--muted); font-size: 12.5px; font-weight: 600; padding-top: 6px; }
.akt-more-wrap { display: flex; justify-content: center; margin-top: clamp(26px, 3vw, 40px); }
.akt-noresult, .akt-empty { text-align: center; color: var(--soft); font-size: 16px; padding: 30px 0; }
.akt-card[hidden] { display: none; }
.akt-more[hidden] { display: none; }

/* Artikel */
.akt-article { padding: clamp(36px, 5vw, 70px) 0 clamp(50px, 7vw, 90px); }
.akt-article .wrap { --maxw: 1000px; }
.akt-article__head { max-width: none; }
.akt-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; max-width: 100%; margin-bottom: 22px; padding: 0 0 13px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.akt-crumbs a:not(.akt-badge) { color: var(--soft); font-weight: 700; text-decoration: none; transition: color .2s ease; }
.akt-crumbs a:not(.akt-badge):hover { color: var(--ink); text-decoration: underline; }
a.akt-badge { text-decoration: none; cursor: pointer; transition: filter .15s ease; }
a.akt-badge:hover { filter: brightness(0.94) saturate(1.08); }
.akt-crumbs__sep { color: var(--line-2); font-weight: 700; font-size: 14px; line-height: 1; }
.akt-crumbs__cur { color: var(--soft); font-weight: 600; max-width: 380px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.akt-article__head .akt-badge { display: inline-block; margin: 0; }
.akt-article__title { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 18px; }
.akt-article__abstract { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--soft); margin: 0 0 20px; max-width: 62ch; }
.akt-article__meta { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; color: var(--muted); font-size: 13.5px; font-weight: 600; margin: 0; }
.akt-article__meta .akt-meta__author { display: inline-flex; align-items: center; gap: 9px; color: var(--soft); }
.akt-avatar { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--tint); color: var(--orange-dark); font-weight: 800; font-size: 11.5px; letter-spacing: 0.02em; flex: 0 0 auto; }
.akt-meta__item { display: inline-flex; align-items: center; gap: 6px; }
.akt-meta__item svg { width: 15px; height: 15px; }
.akt-hero { margin: clamp(24px, 3vw, 38px) 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 2.2 / 1; }
.akt-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.akt-article__grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.akt-article__body { min-width: 0; }
.akt-section { margin: 0 0 clamp(26px, 3vw, 38px); scroll-margin-top: 92px; }
.akt-section__h { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(20px, 2vw, 26px); line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 12px; }
.akt-section__text { color: var(--ink); font-size: 16.5px; line-height: 1.75; }
.akt-section__text p { margin: 0 0 14px; }
.akt-section__text p:last-child { margin-bottom: 0; }
.akt-section__text a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }
.akt-section__text ul, .akt-section__text ol { margin: 0 0 14px; padding-left: 22px; }
.akt-section__text li { margin: 0 0 7px; line-height: 1.6; }

.akt-toc { position: sticky; top: 92px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.akt-toc__h { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.akt-toc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.akt-toc__list a { display: block; color: var(--soft); font-size: 14px; line-height: 1.4; text-decoration: none; padding-left: 13px; border-left: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease; }
.akt-toc__list a:hover { color: var(--ink); }
.akt-toc__list a.is-active { color: var(--orange-dark); border-left-color: var(--orange); font-weight: 700; }
.akt-share { display: flex; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.akt-share__btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--soft); cursor: pointer; transition: color 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease); }
.akt-share__btn:hover { border-color: var(--orange); color: var(--orange-dark); background: var(--tint); transform: translateY(-2px); }
.akt-share__btn svg { width: 18px; height: 18px; }
.akt-share__btn.is-copied { border-color: var(--green, #3f7d5a); color: var(--green, #3f7d5a); background: var(--green-bg, #e7f1ea); }

.akt-related { margin-top: clamp(40px, 5vw, 70px); border-top: 1px solid var(--line); padding-top: clamp(30px, 4vw, 46px); }
.akt-related__h { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(20px, 2vw, 26px); margin: 0 0 22px; color: var(--ink); }
.akt-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 22px); }
.akt-card--sm .akt-card__body { padding: 14px 16px 16px; gap: 7px; }
.akt-card--sm .akt-card__title { font-size: clamp(15px, 1.2vw, 17px); }
.akt-card--sm .akt-card__teaser { font-size: 13.5px; -webkit-line-clamp: 2; line-clamp: 2; }

.akt-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(30px, 4vw, 46px); }
.akt-navbtn { display: flex; flex-direction: column; gap: 5px; padding: 18px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease; }
.akt-navbtn:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.akt-navbtn--next { text-align: right; }
.akt-navbtn__k { color: var(--orange-dark); font-size: 12.5px; font-weight: 800; letter-spacing: 0.03em; }
.akt-navbtn__t { color: var(--ink); font-weight: 700; font-size: 15px; line-height: 1.35; }

@media (max-width: 860px) {
  .akt-grid--related { grid-template-columns: 1fr; }
  .akt-article__grid { grid-template-columns: 1fr; align-items: start; }
  .akt-toc { position: static; border: 0; box-shadow: none; padding: 0; background: transparent; }
  .akt-toc__h, .akt-toc__list { display: none; }
  .akt-share { justify-content: center; border-top: 0; padding-top: 0; margin-top: 8px; }
  .akt-prevnext { grid-template-columns: 1fr; }
}
@media (max-width: 640px) { .akt-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .akt-crumbs__cur, .akt-crumbs__sep:nth-of-type(2) { display: none; } }

/* =====================================================================
   MOBILE-FIRST REFINEMENTS  (90% of visitors)
   ===================================================================== */
@media (max-width: 720px) {
  /* Tighter, app-like vertical rhythm */
  .section { padding: 58px 0; }
  .home-contact { padding: 58px 0; }
  .section__head { margin-bottom: 30px; }

  /* Process → vertical timeline */
  .process__grid { grid-template-columns: 1fr; gap: 0; }
  .process__line { display: none; }
  .step {
    display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; row-gap: 3px;
    padding-bottom: 26px; position: relative;
  }
  .step:last-child { padding-bottom: 0; }
  .step__num { grid-column: 1; grid-row: 1 / span 3; width: 52px; height: 52px; margin: 0; }
  .step__num svg { width: 23px; height: 23px; }
  .step__k { grid-column: 2; align-self: center; }
  .step__title { grid-column: 2; }
  .step__text { grid-column: 2; }
  .step:not(:last-child)::before {
    content: ""; position: absolute; left: 25px; top: 60px; bottom: 4px; width: 2px;
    background: repeating-linear-gradient(180deg, var(--line-2) 0 6px, transparent 6px 12px);
  }

  /* Testimonials → swipe carousel */
  .voices__grid {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 4px;
  }
  .voices__grid .quote { min-width: 82%; scroll-snap-align: center; }

  /* Gallery → swipe carousel */
  .gallery__track {
    display: flex; grid-template: none; gap: 12px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 4px;
  }
  .gallery__item { min-width: 78%; aspect-ratio: 4 / 5; scroll-snap-align: center; }

  /* swipe affordance: animated dots */
  .carousel-dots { display: flex; justify-content: center; align-items: center; gap: 2px; margin-top: 14px; }
  .carousel-dot {
    width: 24px; height: 24px; display: grid; place-items: center;
    padding: 0; border: 0; background: transparent; cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .carousel-dot::before {
    content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--line-2);
    transition: width 0.25s var(--ease), background 0.25s ease;
  }
  .carousel-dot.is-active::before { width: 22px; background: var(--orange); }

  /* hide native scrollbars on the carousels for a cleaner look */
  .voices__grid, .gallery__track { scrollbar-width: none; }
  .voices__grid::-webkit-scrollbar, .gallery__track::-webkit-scrollbar { display: none; }

  /* Sticky quick-contact bar */
  .mcta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: var(--site-header-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--site-line);
    box-shadow: 0 -12px 30px -20px rgba(0, 0, 0, 0.5);
    transform: translateY(130%); transition: transform 0.35s var(--ease);
  }
  .mcta.is-visible { transform: translateY(0); }
  .mcta__icon {
    flex: 0 0 auto; width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px; border: 1px solid var(--site-line); background: var(--paper); color: var(--orange-dark);
  }
  .mcta__icon svg { width: 22px; height: 22px; }
  .mcta__cta { flex: 1; min-height: 48px; padding: 0 14px; font-size: 14.5px; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .mmh__word { transform: none !important; opacity: 1 !important; filter: none !important; }
  .mmh__line { overflow: visible; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .mmh__ey, .mmh__who, .mmh__sub, .mmh__cta, .mmh__photo, .mmh__scroll { opacity: 1 !important; }
  .js .method__radar .area, .js .method__radar .dot { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   TEXTSEITEN (Recht / Prose) + 404
   ===================================================================== */
.legal { padding: clamp(56px, 8vw, 110px) 0; }
.legal__wrap { width: min(100% - 40px, 820px); margin-inline: auto; }
.legal__title { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(32px, 5vw, 52px); line-height: 1.04; letter-spacing: -0.02em; color: var(--ink); margin: 12px 0 8px; }
.legal__updated { color: var(--muted); font-size: 14px; margin: 0 0 clamp(26px, 4vw, 40px); }

.prose { color: var(--soft); font-size: 16.5px; line-height: 1.7; }
.prose > * + * { margin-top: 1em; }
.prose h2 { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); margin-top: 1.8em; margin-bottom: 0.2em; }
.prose h3 { font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: clamp(16px, 1.6vw, 19px); color: var(--ink); margin-top: 1.3em; }
.prose p { margin: 0; }
.prose a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--orange); }
.prose ul, .prose ol { margin: 0.4em 0 0; padding-left: 1.3em; }
.prose li + li { margin-top: 0.35em; }
.prose strong { color: var(--ink); }
.prose address { font-style: normal; }
.legal-ph { background: var(--tint); color: var(--orange-dark); padding: 1px 6px; border-radius: 5px; font-weight: 700; font-size: 0.9em; }

.err { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: clamp(60px, 10vw, 120px) 0; }
.err__wrap { width: min(100% - 40px, 640px); margin-inline: auto; }
.err__code { font-family: "Hanken Grotesk", sans-serif; font-weight: 900; font-size: clamp(80px, 18vw, 160px); line-height: 1; letter-spacing: -0.04em; color: var(--orange); margin: 0; }
.err__title { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(24px, 3.4vw, 38px); color: var(--ink); margin: 6px 0 10px; letter-spacing: -0.02em; }
.err__text { color: var(--soft); font-size: 17px; line-height: 1.6; margin: 0 0 26px; }
.err__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.err__actions .btn { white-space: nowrap; }
.err__actions .btn svg { width: 20px; height: 20px; }
.err__links { margin-top: 26px; font-size: 14.5px; color: var(--muted); }
.err__links a { color: var(--orange-dark); text-decoration: none; font-weight: 600; }
.err__links a:hover { text-decoration: underline; }

/* FAQ-Akkordeon */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item > summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 20px 4px; font-family: "Hanken Grotesk", sans-serif; font-weight: 700; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.35; color: var(--ink); transition: color 0.18s ease; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--orange-dark); }
.faq-item__ic { position: relative; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; color: var(--orange); }
.faq-item__ic::before, .faq-item__ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-item__ic::before { left: 3px; right: 3px; top: 9px; height: 2px; }
.faq-item__ic::after { top: 3px; bottom: 3px; left: 9px; width: 2px; transition: transform 0.28s var(--ease); }
.faq-item[open] .faq-item__ic::after { transform: scaleY(0); }
.faq-item__a { padding: 0 4px 22px; color: var(--soft); font-size: 16px; line-height: 1.7; max-width: 64ch; }

.faq-cta { text-align: center; margin-top: clamp(34px, 5vw, 56px); }
.faq-cta > p { color: var(--soft); font-size: 17px; margin: 0 0 16px; }
.faq-cta .err__actions { justify-content: center; }

.step__meta { color: var(--orange-dark); font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em; margin: 2px 0 6px; }

/* Floating Kontakt-Widget (WhatsApp / Anruf / E-Mail) */
.cwidget { position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px); z-index: 70; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cwidget__panel { display: flex; flex-direction: column; gap: 8px; }
.cwidget__panel[hidden] { display: none; }
.cwidget__opt { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-md); text-decoration: none; font-weight: 700; font-size: 14px; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease); }
.cwidget__opt:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateX(-2px); }
.cwidget__opt svg { width: 18px; height: 18px; flex: 0 0 auto; }
.cwidget__toggle { width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; background: var(--orange); color: #fff; box-shadow: 0 16px 34px -12px rgba(243, 111, 44, 0.8); display: grid; place-items: center; transition: transform 0.25s var(--ease), background 0.2s ease; }
.cwidget__toggle:hover { transform: translateY(-2px) scale(1.04); background: var(--orange-dark); }
.cwidget__toggle svg { width: 26px; height: 26px; }
.cwidget__toggle .cwidget__ic--close { display: none; }
.cwidget.is-open .cwidget__toggle .cwidget__ic--open { display: none; }
.cwidget.is-open .cwidget__toggle .cwidget__ic--close { display: block; }
@media print { .cwidget { display: none; } }
/* Floating-Widget aus, solange das Mobil-Vollbildmenü offen ist (kein Überlappen) */
html.is-nav-locked .cwidget { display: none; }

.legal__footnote { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 2.4em; }
.legal__footnote sup { margin-right: 3px; }

/* Preise */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.5vw, 28px); max-width: 920px; margin: 0 auto; align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.price-card__name { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(18px, 1.7vw, 22px); color: var(--ink); margin: 0 0 14px; line-height: 1.25; }
.price-card__amount { font-family: "Hanken Grotesk", sans-serif; font-weight: 900; font-size: clamp(34px, 4.5vw, 46px); letter-spacing: -0.02em; color: var(--orange-dark); line-height: 1; }
.price-card__meta { color: var(--muted); font-size: 13.5px; font-weight: 600; margin: 9px 0 22px; }
.price-card__list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-card__list li { position: relative; padding-left: 30px; color: var(--soft); font-size: 15px; line-height: 1.5; }
.price-card__list li::before { content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--tint); }
.price-card__list li::after { content: ""; position: absolute; left: 6px; top: 6px; width: 7px; height: 4px; border-left: 2px solid var(--orange-dark); border-bottom: 2px solid var(--orange-dark); transform: rotate(-45deg); }
.price-card__foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.price-card__more { color: var(--orange-dark); font-weight: 700; font-size: 14px; text-decoration: none; }
.price-card__more:hover { text-decoration: underline; }
.pricing-note { text-align: center; color: var(--muted); font-size: 14px; margin: clamp(26px, 3vw, 40px) auto 0; max-width: 640px; line-height: 1.6; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }

/* Werte (Über uns) */
.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2.5vw, 30px); box-shadow: var(--shadow-sm); }
.value-card__t { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(17px, 1.5vw, 20px); color: var(--ink); margin: 0 0 8px; line-height: 1.25; }
.value-card__t em { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; color: var(--orange-dark); }
.value-card__x { color: var(--soft); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 860px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

/* Team (Über uns) – klickbare Karten */
.team { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.team-card { display: flex; flex-direction: column; text-align: left; width: 100%; padding: 0; font: inherit; color: inherit; cursor: pointer; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.team-card:hover, .team-card:focus-visible { transform: translateY(-5px); border-color: var(--orange); box-shadow: var(--shadow-lg); outline: none; }
.team-card__photo { position: relative; aspect-ratio: 4 / 5; background: var(--bg-2); overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__plus { position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); box-shadow: var(--shadow-md); opacity: 0; transform: translateY(6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.team-card__plus::before, .team-card__plus::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #fff; border-radius: 2px; }
.team-card__plus::before { width: 14px; height: 2px; }
.team-card__plus::after { width: 2px; height: 14px; }
.team-card:hover .team-card__plus, .team-card:focus-visible .team-card__plus { opacity: 1; transform: none; }
.team-card__body { padding: 16px 18px 20px; }
.team-card__name { display: block; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 17px; color: var(--ink); margin: 0 0 3px; }
.team-card__role { display: block; color: var(--orange-dark); font-weight: 700; font-size: 12.5px; letter-spacing: 0.01em; margin: 0 0 10px; }
.team-card__bio { display: block; color: var(--soft); font-size: 14px; line-height: 1.55; }
@media (max-width: 920px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }

/* Intro-Split (Über uns) */
.intro-split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); column-gap: clamp(28px, 5vw, 72px); row-gap: 18px; align-items: start; }
.intro-split { row-gap: 8px; }
.intro-split__eyebrow { grid-column: 1 / -1; margin: 0; }
.intro-split__title { margin: 0; font-family: "Fraunces", serif; font-optical-sizing: auto; font-weight: 400; font-size: clamp(26px, 3.3vw, 40px); line-height: 1.18; letter-spacing: -0.005em; }
.section--intro { padding-top: clamp(26px, 3.4vw, 48px); padding-bottom: clamp(48px, 6vw, 78px); }
.intro-split__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.btn-jump { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 18px; font: inherit; font-family: "Hanken Grotesk", sans-serif; font-size: 15px; font-weight: 400; line-height: 1; color: var(--orange-dark); border: 1.5px solid var(--orange); background: transparent; border-radius: 3px; text-decoration: none; cursor: pointer; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.btn-jump:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-jump svg { width: 14px; height: 14px; flex: 0 0 auto; transition: transform 0.3s ease; }
.btn-jump:hover svg { transform: translateY(3px); }
.intro-jump { display: inline-flex; align-items: center; gap: 9px; font-family: "Hanken Grotesk", sans-serif; font-size: clamp(15px, 1vw, 16px); font-weight: 500; color: var(--orange-dark); text-decoration: none; padding-bottom: 3px; border-bottom: 1.5px solid rgba(243, 111, 44, 0.35); transition: color 0.25s ease, border-color 0.25s ease; }
.intro-jump:hover { color: var(--orange); border-bottom-color: var(--orange); }
.intro-jump svg { width: 16px; height: 16px; flex: 0 0 auto; transition: transform 0.3s ease; }
.intro-jump:hover svg { transform: translateY(3px); }
.intro-split__text p { font-family: "Hanken Grotesk", sans-serif; font-size: clamp(15px, 1vw, 15.75px); line-height: 1.7; text-align: justify; color: #222222; margin: 0 0 1.1em; }
.intro-split__text p:last-child { margin-bottom: 0; }
@media (max-width: 800px) {
  .intro-split { grid-template-columns: minmax(0, 1fr); column-gap: 0; row-gap: 22px; }
  .intro-split__head, .intro-split__text { min-width: 0; }
  .intro-split__text p { text-align: left; overflow-wrap: break-word; }
}
@media (max-width: 560px) {
  .intro-split { row-gap: 24px; }
  .intro-split__title { font-size: clamp(25px, 7vw, 31px); line-height: 1.2; }
  .intro-split__cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 26px; }
  .btn-jump { width: 100%; max-width: none; min-height: 48px; }
  .section--intro { padding-top: 20px; padding-bottom: clamp(34px, 8vw, 48px); }
}

/* Orange Bänder */
.mm-band { padding: clamp(56px, 8vw, 112px) 0; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color: #fff; }
.eyebrow--light { color: rgba(255, 255, 255, 0.92); }
.eyebrow--light::before { background: rgba(255, 255, 255, 0.6); }
.mm-band .section__title, .mm-band .section__title em { color: #fff; }
.mm-band__head { margin-bottom: clamp(34px, 5vw, 56px); }
.mm-band__grid { display: grid; grid-template-columns: minmax(0, 460px) 1fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.mm-band__photo { margin: 0; }
.mm-band__photo img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.5); }
.mm-band__title { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -0.02em; margin: 0 0 18px; }
.mm-band__text p { color: rgba(255, 255, 255, 0.92); font-size: clamp(15px, 1vw, 15.75px); line-height: 1.7; margin: 0 0 14px; }
.mm-band__promise { font-family: "Fraunces", serif; font-style: italic; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: #fff !important; border-left: 3px solid rgba(255, 255, 255, 0.5); padding-left: 18px; margin-top: 22px !important; }
@media (max-width: 860px) { .mm-band__grid { grid-template-columns: 1fr; } }

/* Werte-Kacheln */
.vtiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.vtile { background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--radius-lg); padding: clamp(24px, 2.6vw, 32px); transition: transform 0.32s var(--ease), background 0.32s var(--ease), box-shadow 0.32s var(--ease); }
.vtile:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.18); box-shadow: 0 28px 56px -22px rgba(0, 0, 0, 0.5); }
.vtile__ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: rgba(255, 255, 255, 0.16); color: #fff; margin-bottom: 18px; transition: transform 0.32s var(--ease), background 0.32s var(--ease), color 0.32s var(--ease); }
.vtile__ic svg { width: 28px; height: 28px; transition: transform 0.32s var(--ease); }
.vtile:hover .vtile__ic { transform: scale(1.14) rotate(-4deg); background: #fff; color: var(--orange-dark); }
.vtile:hover .vtile__ic svg { transform: scale(1.06); }
.vtile__t { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(17px, 1.5vw, 20px); color: #fff; margin: 0 0 8px; }
.vtile__x { color: rgba(255, 255, 255, 0.85); font-size: 14.5px; line-height: 1.6; margin: 0; }
@media (max-width: 860px) { .vtiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vtiles { grid-template-columns: 1fr; } }

/* Kontakt/Büro-Band */
.contact-band { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-band__copy > p { color: var(--soft); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.contact-band__cue { color: var(--ink); font-weight: 700; }
.ctiles { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.ctile { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease; }
.ctile:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.ctile__ic { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--tint); color: var(--orange-dark); }
.ctile__ic svg { width: 21px; height: 21px; }
.ctile small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.ctile strong { color: var(--ink); font-size: 15.5px; }
.contact-band__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 340px; }
.contact-band__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(0.92); }
@media (max-width: 860px) { .contact-band { grid-template-columns: 1fr; } .contact-band__map { min-height: 280px; } }

/* Galerie 2×4 */
.gallery8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.4vw, 16px); }
.gallery8__item { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--bg-2); }
.gallery8__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gallery8__item:hover img { transform: scale(1.06); }
@media (max-width: 720px) { .gallery8 { grid-template-columns: repeat(2, 1fr); } }

/* Bio-Modal */
.bio-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: clamp(14px, 3vw, 30px); }
.bio-modal[hidden] { display: none; }
.bio-modal__overlay { position: absolute; inset: 0; background: rgba(27, 23, 20, 0.62); backdrop-filter: blur(4px); animation: bioFade 0.25s ease; }
.bio-modal__dialog { position: relative; width: min(1240px, 100%); height: min(640px, 88vh); overflow: hidden; background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); animation: bioRise 0.3s var(--ease); }
@keyframes bioFade { from { opacity: 0; } }
@keyframes bioRise { from { opacity: 0; transform: translateY(16px) scale(0.98); } }
.bio-modal__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.9); color: var(--ink); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background 0.2s, transform 0.3s var(--ease); }
.bio-modal__close:hover { background: #fff; transform: rotate(90deg); }
.bio-modal__close svg { width: 20px; height: 20px; }
.bio-modal__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--paper); color: var(--ink); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: background 0.2s, color 0.2s; }
.bio-modal__nav:hover { background: var(--orange); color: #fff; }
.bio-modal__nav svg { width: 22px; height: 22px; }
.bio-modal__nav--prev { left: 12px; }
.bio-modal__nav--next { right: 12px; }
.bio-modal__inner { height: 100%; }
.bio-panel { display: grid; grid-template-columns: 360px 1fr; height: 100%; }
.bio-panel[hidden] { display: none; }
.bio-panel__media { background: var(--bg-2); display: flex; align-items: center; justify-content: center; }
.bio-panel__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bio-panel__body { padding: clamp(28px, 3.2vw, 44px) clamp(60px, 5.2vw, 76px) clamp(28px, 3.2vw, 44px) clamp(28px, 3.2vw, 48px); overflow-y: auto; min-height: 0; }
.bio-panel__body > * { max-width: 76ch; }
.bio-panel__count { color: var(--orange-dark); font-weight: 800; font-size: 12.5px; letter-spacing: 0.04em; margin: 0 0 6px; }
.bio-panel__name { font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); margin: 0 0 4px; letter-spacing: -0.01em; }
.bio-panel__role { color: var(--soft); font-weight: 600; font-size: 14.5px; margin: 0 0 18px; }
.bio-panel__p { color: var(--soft); font-size: 15px; line-height: 1.7; margin: 0 0 12px; text-align: justify; hyphens: auto; }
.bio-panel__quals { list-style: none; margin: 12px 0 22px; padding: 0 0 18px; border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px; }
.bio-panel__quals li { background: var(--tint); color: var(--orange-dark); font-weight: 700; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; }
@media (max-width: 620px) { .bio-panel { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); } .bio-panel__media { height: 30vh; } .bio-panel__media img { width: 100%; height: 100%; object-fit: cover; } .bio-panel__body { padding: 24px 20px 28px; } .bio-panel__body > * { max-width: none; } .bio-modal__nav--prev { left: 10px; } .bio-modal__nav--next { right: 10px; } .bio-modal__nav { top: 15vh; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.92); } }

/* =====================================================================
   ÜBER UNS – Editorial-Schicht (Index-Kicker, Grain-Textur)
   ===================================================================== */
.ed-kicker { display: inline-flex; align-items: baseline; gap: 13px; margin: 0 0 18px; }
.ed-kicker__no { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; font-size: 15px; line-height: 1; color: var(--orange-dark); }
.ed-kicker__rule { align-self: center; display: block; width: 0; height: 1.5px; background: linear-gradient(90deg, var(--orange), transparent); transition: width 0.6s var(--ease) 0.15s; }
.ed-kicker__txt { font-family: "Hanken Grotesk", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); }
.ed-kicker.is-in .ed-kicker__rule { width: 28px; }
html:not(.js) .ed-kicker__rule { width: 28px; }
.section__head--center .ed-kicker { justify-content: center; }
.ed-kicker--light .ed-kicker__no { color: #fff; }
.ed-kicker--light .ed-kicker__rule { background: linear-gradient(90deg, #fff, transparent); }
.ed-kicker--light .ed-kicker__txt { color: rgba(255, 255, 255, 0.9); }

.ed-grain { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@media (prefers-reduced-motion: reduce) { .ed-kicker__rule { width: 28px; transition: none; } }

/* Team – Magazin-Cover-Kacheln (Über uns) */
.team-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.8vw, 24px); max-width: 1080px; margin: clamp(8px, 2vw, 24px) auto 0; }
.team-tile { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); border: 0; padding: 0; cursor: pointer; background: var(--bg-2); box-shadow: var(--shadow-sm); transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.team-tile:hover, .team-tile:focus-visible { box-shadow: var(--shadow-lg); transform: translateY(-4px); outline: none; }
.team-tile:focus-visible { box-shadow: 0 0 0 3px rgba(243, 111, 44, 0.55), var(--shadow-md); }
.team-tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform 0.6s var(--ease); }
.team-tile:hover .team-tile__img, .team-tile:focus-visible .team-tile__img { transform: scale(1.05); }
.team-tile__tint { display: none; }
.team-tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 16, 13, 0.85) 0%, rgba(20, 16, 13, 0.4) 26%, rgba(20, 16, 13, 0) 52%); pointer-events: none; }
.team-tile__no { position: absolute; top: 13px; left: 16px; font-family: "Fraunces", serif; font-style: italic; font-weight: 500; font-size: 19px; color: #fff; opacity: 0.92; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
.team-tile__body { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 18px 18px 17px; text-align: left; color: #fff; }
.team-tile__name { width: 100%; font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(20px, 1.7vw, 25px); line-height: 1.1; letter-spacing: -0.01em; }
.team-tile__role { width: 100%; font-family: "Hanken Grotesk", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.82); margin-top: 4px; }
.team-tile__title { width: 100%; font-family: "Hanken Grotesk", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.01em; color: rgba(255, 255, 255, 0.7); margin-top: 5px; }
.team-tile__seg { white-space: nowrap; }
.team-tile__tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: "Hanken Grotesk", sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em; color: #fff; }
.team-tile__tag svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.team-tile:hover .team-tile__tag svg, .team-tile:focus-visible .team-tile__tag svg { transform: translateX(4px); }
@media (max-width: 600px) {
  .team-tiles { gap: 12px; }
  .team-tile { aspect-ratio: 4 / 5; }
  .team-tile__body { padding: 13px 13px 14px; }
  .team-tile__name { font-size: 16px; }
  .team-tile__role { font-size: 10.5px; line-height: 1.3; white-space: normal; overflow-wrap: anywhere; }
  .team-tile__title { font-size: 9.5px; margin-top: 3px; }
  .team-tile__tag { font-size: 10.5px; margin-top: 9px; }
  .team-tile__no { font-size: 16px; top: 10px; left: 12px; }
}

/* ===== TEST: Startseite – Überschriften in Montserrat (statt Hanken) ===== */
body.page-start .mmh__h1,
body.page-start .section__title,
body.page-start .method__title,
body.page-start .svc__title,
body.page-start .step__title,
body.page-start .eyebrow,
body.page-start .faq__q,
body.page-start .quote__name {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}
/* Kursive Akzente bleiben Fraunces */
body.page-start .section__title em,
body.page-start .method__title em,
body.page-start .svc__title em,
body.page-start .mmh__accent {
  font-family: "Fraunces", Georgia, serif;
}

/* Mobiles Menü: kein Slide bei reduzierter Bewegung */
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .site-nav { transition: visibility 0s; }
}

/* =====================================================================
   STARTSEITE REWORK — Zahlen (editorial), Feature-Leistung,
   Quick-Check-CTA, Unser Weg. (Alte .stats/.process/.quiz-Blöcke bleiben
   für index-v1-backup.php erhalten.)
   ===================================================================== */

/* ---- Zahlen: große Serif-Ziffern, Hairline oben, Uppercase-Label ---- */
.figures { position: relative; }
.figures__inner { position: relative; }
.figures__kicker {
  margin: 0 0 clamp(28px, 4.4vw, 52px);
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
}
.figures__kicker span { font-weight: 600; opacity: 0.55; letter-spacing: 0.18em; }
.figures__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3.4vw, 48px); }
.fig { border-top: 1px solid transparent; padding-top: clamp(14px, 2vw, 24px); }
.fig__num {
  display: flex; align-items: baseline; gap: 7px;
  font-family: "Fraunces", Georgia, serif; font-weight: 500;
  font-size: clamp(42px, 4.8vw, 70px); line-height: 1; letter-spacing: -0.01em;
  font-variant-numeric: lining-nums;
}
.fig__num em { font-style: italic; font-weight: 600; font-size: 0.46em; letter-spacing: 0; }
.fig__label { margin: 13px 0 0; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

.figures--light { padding: clamp(56px, 8.4vw, 104px) 0 clamp(44px, 6.4vw, 80px); }
.figures--light .figures__kicker { color: var(--orange-dark); }
.figures--light .fig { border-top-color: var(--line-2); }
.figures--light .fig__num { color: var(--ink); }
.figures--light .fig__num em { color: var(--orange-dark); }
.figures--light .fig__label { color: var(--muted); }
.figures--light .figures__vtag { color: var(--muted); }

@media (max-width: 860px) {
  .figures__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 22px; }
  .fig__num { font-size: clamp(38px, 9.6vw, 52px); }
}

/* ---- Leistungen: Foto-Karten (Studienberatung + Karriere) ---- */
/* 2 Spalten: die beiden Foto-Karten (.svcf) spannen voll, Coaching/Unternehmen je halb. */
.services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.svcf {
  grid-column: 1 / -1;
  /* Desktop 60/40: Text bekommt mehr Raum, Foto kleiner. */
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  padding: 0; overflow: hidden;
}
.svcf__body { padding: clamp(24px, 3.4vw, 46px); display: flex; flex-direction: column; align-items: flex-start; }
.svcf__flag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 18px; padding: 5px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
}
.svcf__flag svg { width: 11px; height: 11px; flex: 0 0 auto; }
/* Badge oben links ins Bild gelegt (dunkles Glas fuer Lesbarkeit ueber jedem Foto) */
.svcf__media .svcf__flag {
  position: absolute; top: 16px; left: 16px; z-index: 2; margin: 0;
  background: rgba(20, 16, 13, 0.5); border-color: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.svcf__media { position: relative; margin: 0; min-height: 280px; overflow: hidden; }   /* skaliertes (gezoomtes) Bild sauber beschneiden, statt ueberlaufen zu lassen */
.svcf__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
/* Studienberatung: herangezoomt, Kopf der Frau etwas hoeher im Bild */
.svc--feature .svcf__media img { object-position: center 63%; transform: scale(1.22); }
/* Karriereberatung (weisse Foto-Karte): leicht herangezoomt */
.svcf:not(.svc--feature) .svcf__media img { transform: scale(1.2); }
/* Orange-Ueberblendung nur beim Flaggschiff (weisse Foto-Karte bleibt clean) */
.svc--feature .svcf__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(216, 91, 28, 0.34) 0%, rgba(216, 91, 28, 0) 42%);
}
@media (max-width: 760px) {   /* erst hier von "Text links / Bild rechts" auf "Bild oben / Text unten" umschalten */
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svcf { grid-template-columns: 1fr; }
  .svcf__media { order: -1; min-height: 0; aspect-ratio: 16 / 8.4; }
  .svcf__media::after { background: linear-gradient(180deg, rgba(216, 91, 28, 0.22) 0%, rgba(216, 91, 28, 0) 46%); }
}
@media (max-width: 760px) {
  .services__grid { grid-template-columns: 1fr; gap: 12px; }
  .svcf__media { aspect-ratio: 2 / 1; }   /* mobil flacher -> mehr Platz fuer Text */
  /* "Am häufigsten gebucht" + Karten mobil kompakter */
  .svcf__flag { font-size: 9px; padding: 4px 9px; gap: 5px; margin-bottom: 12px; }
  .svcf__flag svg { width: 10px; height: 10px; }
  .svcf__body { padding: 22px; }
  .svc { padding: 22px; }
  .svcf { padding: 0; }   /* .svc-Padding oben darf die Feature-Kachel nicht zusaetzlich einruecken (Foto bleibt randlos, Inhalt gleich breit wie die Karten) */
  .svc__icon { width: 42px; height: 42px; margin-bottom: 14px; }
  .svc__icon svg { width: 21px; height: 21px; }
  .svc__title { font-size: 19px; margin-bottom: 8px; }
  .svc__text { font-size: 14.5px; margin-bottom: 14px; }
  .svc__list { font-size: 13.5px; }
  .svc__k { font-size: 11px; }
}

/* ---- Quick-Check: oranges CTA-Panel mit Profil-Balken ---- */
.qc__panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: clamp(24px, 3.4vw, 48px); align-items: center;
  padding: clamp(22px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: linear-gradient(128deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 30px 60px -32px rgba(216, 91, 28, 0.55);
}
.qc__panel::before {
  content: ""; position: absolute; right: -120px; top: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}
.qc__copy { position: relative; }
.qc__eyebrow {
  margin: 0 0 11px; font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82);
}
.qc__title {
  margin: 0 0 12px; font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: clamp(25px, 3vw, 38px); line-height: 1.08; letter-spacing: -0.015em; color: #fff;
}
.qc__title em { font-style: italic; color: #ffd9bd; }
.qc__lead { margin: 0 0 15px; max-width: 46ch; font-size: clamp(14.5px, 1.3vw, 16px); line-height: 1.55; color: rgba(255, 255, 255, 0.93); }
.qc__points { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: 0 0 20px; padding: 0; list-style: none; font-size: 13px; font-weight: 700; }
.qc__points li { display: inline-flex; align-items: center; gap: 7px; }
.qc__points li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #ffd9bd; }
.qc__btn {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  background: #fff; color: var(--orange-dark);
  font-weight: 800; font-size: 15px; text-decoration: none;
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.qc__btn:hover, .qc__btn:focus-visible { transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(0, 0, 0, 0.4); }
.qc__btn svg { transition: transform 0.2s var(--ease); }
.qc__btn:hover svg { transform: translateX(3px); }

/* ---- Quick-Check: moderne Sofort-Ergebnis-Karte (Papier-Mock, dark-safe) ---- */
.qc__viz { position: relative; display: flex; flex-direction: column; gap: 12px; }
.qc__result {
  position: relative; overflow: hidden;
  background: #fff; color: #1b1714;
  border-radius: 18px;
  box-shadow: 0 30px 62px -26px rgba(0, 0, 0, 0.55);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease);
}
.qc__panel:hover .qc__result { transform: rotate(0deg) translateY(-2px); }
.qc__result-top {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(120deg, #fff6ef 0%, #fdeadd 100%);
  border-bottom: 1px solid #f1e3d4;
}
.qc__result-ava {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; box-shadow: 0 10px 20px -8px rgba(216, 91, 28, 0.85);
}
.qc__result-ava svg { width: 20px; height: 20px; }
.qc__result-meta { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }
.qc__result-k { font-size: 14px; font-weight: 800; color: #1b1714; line-height: 1; }
.qc__result-sub { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #b08868; }
.qc__result-badge {
  flex: 0 0 auto; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #8a7c6e; background: rgba(255, 255, 255, 0.65); border: 1px solid #e7dccd; border-radius: 999px; padding: 4px 9px;
}
.qc__result-body { padding: 18px; }
.qc__result-type {
  margin: 0 0 5px; font-family: "Fraunces", Georgia, serif; font-weight: 600;
  font-size: clamp(20px, 2vw, 25px); line-height: 1.15; letter-spacing: -0.01em; color: #1b1714;
}
.qc__result-type em { font-style: italic; color: #d85b1c; }
.qc__result-desc { margin: 0 0 17px; font-size: 13.5px; line-height: 1.5; color: #6b5f52; }
.qc__dims { display: grid; gap: 11px; margin-bottom: 17px; }
.qc__dim { display: grid; grid-template-columns: 96px minmax(0, 1fr) 26px; align-items: center; gap: 10px; }
.qc__dim span { font-size: 11.5px; font-weight: 700; color: #5f5448; }
.qc__dim b { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 13px; color: #d85b1c; text-align: right; }
.qc__dim i { display: block; position: relative; height: 7px; border-radius: 999px; background: #f4e5d6; overflow: hidden; }
.qc__dim i::after {
  content: ""; position: absolute; inset: 0; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, #f36f2c 0%, #d85b1c 100%);
  transition: width 1s var(--ease) 0.15s;
}
.qc__panel.is-in .qc__dim i::after { width: var(--w, 70%); }
.qc__panel.is-in .qc__dims .qc__dim:nth-child(2) i::after { transition-delay: 0.28s; }
.qc__panel.is-in .qc__dims .qc__dim:nth-child(3) i::after { transition-delay: 0.42s; }
.qc__tags-k { display: block; margin: 0 0 8px; font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #b08868; }
.qc__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.qc__tags span {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  background: #fdeee2; color: #c2531a;
  border: 1px solid rgba(216, 91, 28, 0.2);
  font-size: 12.5px; font-weight: 700; line-height: 1;
  opacity: 0; transform: translateY(8px) scale(0.94);
  transition: opacity 0.45s var(--ease) var(--d, 0s), transform 0.45s var(--ease) var(--d, 0s);
}
.qc__panel.is-in .qc__tags span { opacity: 1; transform: none; }
.qc__viz-note { margin: 2px 6px 0; font-size: 12.5px; color: rgba(255, 255, 255, 0.78); }
@media (max-width: 900px) {
  .qc__panel { grid-template-columns: 1fr; gap: 22px; }
  .qc__viz { max-width: 440px; }
}
@media (max-width: 560px) {
  .qc__btn { width: 100%; justify-content: center; }
  .qc__result { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .qc__dim i::after { transition: none; width: var(--w, 70%); }
  .qc__tags span { transition: none; opacity: 1; transform: none; }
  .qc__result { transform: none; }
}

/* ---- Unser Weg: editorial, Hairline + Fraunces-Nummern ---- */
.way__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 44px); margin: 0; padding: 0; list-style: none;
}
.way__step { border-top: 1px solid var(--line-2); padding-top: clamp(16px, 2.2vw, 24px); }
.way__num {
  display: block; margin-bottom: 12px;
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600;
  font-size: clamp(30px, 3vw, 42px); line-height: 1; color: var(--orange);
}
.way__title { margin: 0 0 8px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: 18px; color: var(--ink); }
.way__text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--soft); }
@media (max-width: 980px) {
  .way__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
}
@media (max-width: 560px) {
  .way__grid { grid-template-columns: 1fr; gap: 0; }
  .way__step { display: grid; grid-template-columns: 58px minmax(0, 1fr); column-gap: 14px; padding: 18px 0; border-top-color: var(--line); }
  .way__num { grid-row: 1 / 3; margin: 1px 0 0; font-size: 32px; }
  .way__title { grid-column: 2; }
  .way__text { grid-column: 2; }
}

/* ---- Dunkle Kompakt-Sektionen (Analyse/Antrieb): Copy + genau 1 Visual ---- */
.dsec { background: var(--espresso); color: var(--on-dark); position: relative; overflow: hidden; }
.section.dsec, .section.method, .section.empf { padding: clamp(46px, 6vw, 84px) 0; }
.dsec__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.dsec .eyebrow { color: #ffb585; }
.dsec .eyebrow::before { background: linear-gradient(90deg, var(--orange-2), transparent); }
.dsec__title { margin: 0 0 16px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(27px, 3.3vw, 40px); line-height: 1.06; letter-spacing: -0.025em; color: #fff; }
.dsec__title em {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; letter-spacing: -0.005em;
  background: linear-gradient(115deg, var(--orange) 0%, #ff9d5c 52%, var(--orange-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.dsec__text { margin: 0 0 22px; color: var(--on-dark-soft); font-size: 16px; line-height: 1.65; max-width: 50ch; }
.dsec__points { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.dsec__points li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; color: var(--on-dark); font-size: 14.5px; line-height: 1.5; }
.dsec__points .mp-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(243, 111, 44, 0.18); color: #ffb585; }
.dsec__points .mp-ic svg { width: 16px; height: 16px; }
.dsec__points strong { color: #fff; font-weight: 800; }
.dsec__visual { min-width: 0; }
.dsec__visual .diag__card { width: 100%; }
.dsec__note { margin: 10px 6px 0; font-size: 11.5px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.45); }
.dsec__link { color: #ffb585; }
.dsec__link:hover { color: #fff; }
@media (max-width: 980px) {
  .dsec__grid { grid-template-columns: 1fr; gap: 26px; }
  .dsec--flip .dsec__copy { order: -1; }
}

/* ---- Diagnostik-Karten (Visuals der Kompakt-Sektionen) ---- */
.diag__card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.28s var(--ease);
}
.diag__card:hover { border-color: rgba(243, 111, 44, 0.45); background: rgba(255, 255, 255, 0.075); transform: translateY(-3px); }
.diag__k { margin-bottom: 10px; font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #ffb585; }
.diag__h { margin: 0 0 16px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.25; color: #fff; }
.diag__h em { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; color: #ffb585; }
.diag__p { margin: auto 0 0; padding-top: 14px; font-size: 13px; line-height: 1.55; color: var(--on-dark-soft); }

/* Profil-Verlauf (wie ein echtes Testprofil: Punkte + Linie + Vergleichsband) */
.diag__card--chart { display: flex; }
.diag__chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; width: 100%; }
.diag__chart-head .diag__h { margin-bottom: 10px; }
.diag__live {
  display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.8);
}
.diag__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(243, 111, 44, 0.55); animation: diagPing 2.2s ease-out infinite; }
@keyframes diagPing { 0% { box-shadow: 0 0 0 0 rgba(243, 111, 44, 0.55); } 70% { box-shadow: 0 0 0 8px rgba(243, 111, 44, 0); } 100% { box-shadow: 0 0 0 0 rgba(243, 111, 44, 0); } }
.diag__plot { position: relative; width: 100%; margin-top: 6px; }
.diag__svg { display: block; width: 100%; height: auto; }
.diag__svg .ds-scale { fill: rgba(255, 255, 255, 0.45); font: 700 10px "Hanken Grotesk", sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.diag__svg .ds-band { fill: rgba(255, 255, 255, 0.06); stroke: rgba(255, 255, 255, 0.08); }
.diag__svg .ds-grid { stroke: rgba(255, 255, 255, 0.09); stroke-dasharray: 2 5; }
.diag__svg .ds-lbl { fill: rgba(255, 255, 255, 0.82); font: 700 12.5px "Hanken Grotesk", sans-serif; }
.diag__svg .ds-line {
  fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round;
  stroke-dasharray: 620; stroke-dashoffset: 620;
}
.diag__card.is-in .ds-line { transition: stroke-dashoffset 1.5s var(--ease) 0.25s; stroke-dashoffset: 0; }
.diag__svg .ds-dot {
  fill: var(--orange); stroke: #fff; stroke-width: 2;
  transform-box: fill-box; transform-origin: center;
  opacity: 0; transform: scale(0.3);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.diag__card.is-in .ds-dot { opacity: 1; transform: scale(1); }
.diag__card.is-in .ds-dot:nth-of-type(1) { transition-delay: 0.35s; }
.diag__card.is-in .ds-dot:nth-of-type(2) { transition-delay: 0.6s; }
.diag__card.is-in .ds-dot:nth-of-type(3) { transition-delay: 0.85s; }
.diag__card.is-in .ds-dot:nth-of-type(4) { transition-delay: 1.1s; }
.diag__card.is-in .ds-dot:nth-of-type(5) { transition-delay: 1.35s; }
.diag__chip {
  position: absolute; right: 1%; top: 66%;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 11px;
  background: rgba(16, 13, 10, 0.92); border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff; font-size: 12px; font-weight: 700; line-height: 1; white-space: nowrap;
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.8);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease) 1.55s, transform 0.5s var(--ease) 1.55s;
}
.diag__chip i { width: 7px; height: 7px; border-radius: 50%; background: #8fd6a4; }
.diag__card.is-in .diag__chip { opacity: 1; transform: none; }
/* LMI-Punkte */
.diag__lmi { display: grid; gap: 12px; width: 100%; margin: 0 0 2px; padding: 0; list-style: none; }
.diag__lmi li { display: grid; grid-template-columns: minmax(0, 1fr); gap: 5px; }
.diag__lmi-k { font-size: 12.5px; font-weight: 800; color: #fff; }
.diag__dots {
  position: relative; display: block; height: 7px; border-radius: 999px; overflow: hidden;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 16px, transparent 16px 21px);
}
.diag__dots::before {
  content: ""; position: absolute; inset: 0; width: 0;
  background: repeating-linear-gradient(90deg, var(--orange) 0 16px, transparent 16px 21px);
  transition: width 0.9s var(--ease) 0.15s;
}
.diag__card.is-in .diag__dots::before { width: var(--w, 60%); }
.diag__delta { justify-self: start; font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.diag__delta--up { color: #8fd6a4; }

@media (max-width: 540px) {
  .diag__svg .ds-lbl { font-size: 15px; }
  .diag__svg .ds-scale { font-size: 12px; }
  .diag__chip { right: 0; top: 62%; font-size: 10.5px; padding: 7px 10px; }
}

/* ---- Methode: zentrierter Kopf + Bento-Grid (Cairn-Stil) ---- */
.method__head { max-width: 700px; margin: 0 auto clamp(26px, 4vw, 44px); text-align: center; }
.method__head .eyebrow { justify-content: center; }
.method__head .method__title { margin-bottom: 12px; font-size: clamp(28px, 3.6vw, 44px); }
.method__lead { margin: 0 auto; max-width: 56ch; color: var(--on-dark-soft); font-size: 16px; line-height: 1.65; }
.mgrid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 980px) {
  .mgrid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
  .mgrid .diag__card { grid-column: span 5; }
  .mgrid .diag__card--wide { grid-column: span 7; }
  /* Geparkte 3er-Variante (Unterseite): 1 volle Reihe + 2 halbe */
  .mgrid--park .diag__card { grid-column: span 6; }
  .mgrid--park .diag__card--full { grid-column: 1 / -1; }
}
.diag__card--radar .method__radar { width: min(100%, 290px); height: auto; margin: 8px auto 12px; }
/* Foto-Karten: Bild + Scrim hinter dem Inhalt, sanfter Zoom */
.diag__card--photo { overflow: hidden; }
.diag__card--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0.9) 0%, rgba(16, 13, 10, 0.55) 52%, rgba(16, 13, 10, 0.78) 100%);
}
.diag__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.4s var(--ease);
}
.diag__card--photo:hover .diag__bg { transform: scale(1.09); }
.diag__card--photo > :not(.diag__bg) { position: relative; z-index: 2; }
/* Inneres Glass-Panel (wie das Chart-Panel bei Cairn) */
.diag__panel {
  width: 100%; margin-top: 10px;
  padding: clamp(12px, 1.6vw, 18px);
  background: rgba(13, 10, 8, 0.55); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.diag__panel .diag__lmi { margin: 2px 0; }
/* Stärken-Ableitung (gestaffelt einfliegend) */
.dflow { display: grid; gap: 8px; width: 100%; margin-bottom: 12px; }
.dflow__row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px 9px;
  padding: 9px 11px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.diag__card.is-in .dflow__row { opacity: 1; transform: none; }
.diag__card.is-in .dflow__row:nth-child(2) { transition-delay: 0.15s; }
.diag__card.is-in .dflow__row:nth-child(3) { transition-delay: 0.3s; }
.dflow__row span { font-size: 11.5px; font-weight: 700; color: rgba(255, 255, 255, 0.72); }
.dflow__row svg { width: 13px; height: 13px; color: var(--orange); flex: 0 0 auto; }
.dflow__row b { font-size: 12.5px; font-weight: 800; color: #ffd9bd; }

/* ---- Kontakt: Foto-Panel mit Formular (Cairn-Abschluss) ---- */
.home-contact { padding: clamp(56px, 7vw, 96px) 0; }
.hc-panel {
  position: relative; overflow: hidden;
  padding: clamp(24px, 3.6vw, 52px);
  border-radius: var(--radius-lg); background: #1b1714;
  box-shadow: var(--shadow-lg);
}
.hc-panel__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hc-panel__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(16, 13, 10, 0.93) 0%, rgba(16, 13, 10, 0.74) 48%, rgba(16, 13, 10, 0.42) 100%);
}
.hc-panel__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(26px, 4vw, 64px); align-items: center;
}
.hc-panel .eyebrow { color: #ffb585; }
.hc-panel .eyebrow::before { background: linear-gradient(90deg, var(--orange-2), transparent); }
.hc-panel__title { margin: 0 0 14px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05; letter-spacing: -0.025em; color: #fff; }
.hc-panel__title em {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; letter-spacing: -0.005em;
  background: linear-gradient(115deg, var(--orange) 0%, #ff9d5c 52%, var(--orange-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hc-panel__lead { margin: 0 0 18px; max-width: 44ch; font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.88); }
/* Kontakt-Quick-Aktionen: kompakte Icon-Tiles in EINER Zeile (Desktop + Mobil) */
.hc-panel .home-contact__quick { display: flex; flex-wrap: nowrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.hc-panel .home-contact__quick li { flex: 1 1 0; min-width: 0; }
.hc-panel .home-contact__quick a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px 4px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff; text-decoration: none; box-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.hc-panel .home-contact__quick a svg { width: 19px; height: 19px; color: #ffb585; }
.hc-panel .home-contact__quick a span { padding: 0; background: none; border: 0; border-radius: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.01em; color: rgba(255, 255, 255, 0.9); }
.hc-panel .home-contact__quick a:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.42); transform: translateY(-2px); color: #fff; }
.hc-panel__note { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, 0.78); }
.hc-panel__note svg { width: 15px; height: 15px; color: #8fd6a4; flex: 0 0 auto; }
/* grid-area-Reset: .contact-form traegt fuer /kontakt ein "form"-Area, das
   im Panel-Grid (ohne Areas) sonst eine Phantomspalte erzeugt */
.hc-panel .contact-form { grid-area: auto; justify-self: end; width: 100%; max-width: 460px; }
@media (max-width: 920px) {
  .hc-panel__grid { grid-template-columns: 1fr; gap: 22px; }
  .hc-panel .contact-form { justify-self: stretch; max-width: none; }
}

/* ---- Empfehlungs-Showcase (dunkle Sektion, animiertes Dossier) ---- */
.empf { background: var(--espresso); color: var(--on-dark); position: relative; overflow: hidden; }
.empf::before {
  content: ""; position: absolute; left: -180px; bottom: -220px; width: 520px; height: 520px;
  border-radius: 50%; background: radial-gradient(circle, rgba(243, 111, 44, 0.13) 0%, rgba(243, 111, 44, 0) 64%);
  pointer-events: none;
}
.empf__grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(36px, 5vw, 80px); align-items: center; }
.empf .eyebrow { color: #ffb585; }
.empf .eyebrow::before { background: linear-gradient(90deg, var(--orange-2), transparent); }
.empf__title { margin: 0 0 16px; font-family: "Hanken Grotesk", sans-serif; font-weight: 800; font-size: clamp(27px, 3.3vw, 40px); line-height: 1.06; letter-spacing: -0.025em; color: #fff; }
.empf__title em {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; letter-spacing: -0.005em;
  background: linear-gradient(115deg, var(--orange) 0%, #ff9d5c 52%, var(--orange-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.empf__text { margin: 0 0 22px; color: var(--on-dark-soft); font-size: 16px; line-height: 1.65; max-width: 50ch; }
.empf__points { display: grid; gap: 13px; margin: 0 0 24px; padding: 0; list-style: none; }
.empf__points li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; color: var(--on-dark); font-size: 15px; line-height: 1.5; }
.empf__points .mp-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(243, 111, 44, 0.18); color: #ffb585; }
.empf__points .mp-ic svg { width: 16px; height: 16px; }
.empf__points strong { color: #fff; font-weight: 800; }

.empf__stage { min-width: 0; }
.empf__tabs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.empf__tab {
  padding: 8px 15px; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75); font: inherit; font-size: 13px; font-weight: 700; line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.empf__tab:hover { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.empf__tab.is-active { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-color: rgba(243, 111, 44, 0.6); color: #fff; }
.empf__cards { display: grid; }
.empf__card {
  grid-area: 1 / 1; min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 34px 70px -36px rgba(0, 0, 0, 0.8);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.empf__card.is-active { opacity: 1; transform: none; pointer-events: auto; }
.empf__card[hidden] { display: block; visibility: hidden; }
.empf__card.is-active[hidden] { visibility: visible; }
.empf__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.empf__pill { display: inline-flex; margin-bottom: 9px; padding: 5px 10px; border-radius: 999px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; line-height: 1; }
.empf__deg { margin: 0 0 5px; font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(20px, 2.1vw, 26px); letter-spacing: -0.01em; color: #fff; line-height: 1.05; }
.empf__meta { margin: 0; font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.62); }
.empf__match { position: relative; flex: 0 0 auto; width: 66px; height: 66px; }
.empf__match svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.empf__match-track { fill: none; stroke: rgba(255, 255, 255, 0.14); stroke-width: 6; }
.empf__match-fill {
  fill: none; stroke: url(#empfGrad), var(--orange); stroke: var(--orange);
  stroke-width: 6; stroke-linecap: round;
  stroke-dasharray: 169.65; stroke-dashoffset: 169.65;
  transition: stroke-dashoffset 1.1s var(--ease) 0.2s;
}
.empf__match-val { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 1px; font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 17px; color: #fff; }
.empf__match-val i { font-style: normal; font-size: 11px; color: #ffb585; margin-top: 4px; }
.empf__block { padding-top: 10px; margin-top: 2px; }
.empf__block + .empf__block { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 12px; }
.empf__k { display: block; margin-bottom: 9px; font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.empf__why { display: grid; gap: 7px; }
.empf__why-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px 9px;
  padding: 9px 12px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
}
.empf__why-row i { font-style: normal; font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.75); }
.empf__why-row svg { width: 13px; height: 13px; color: var(--orange); flex: 0 0 auto; }
.empf__why-row b { font-size: 13px; font-weight: 800; color: #ffd9bd; }
.empf__unis { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.empf__unis li {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px; font-weight: 700; color: #fff;
}
.empf__unis svg { width: 15px; height: 15px; color: #ffb585; flex: 0 0 auto; }
.empf__unis span { min-width: 0; }
.empf__tag { margin-left: auto; flex: 0 0 auto; font-style: normal; font-size: 9.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255, 255, 255, 0.65); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; padding: 4px 8px; line-height: 1; }
.empf__tag--home { color: #ffb585; background: rgba(243, 111, 44, 0.14); border-color: rgba(243, 111, 44, 0.45); }
.empf__note { margin: 12px 6px 0; font-size: 11.5px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.45); }
/* 12 Monate Nachbetreuung – Banner unter dem Dossier */
.empf__after {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(10px, 1.6vw, 20px); padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.8vw, 34px);
  background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
}
.empf__after-num {
  flex: 0 0 auto; display: flex; align-items: baseline; gap: 6px;
  font-family: "Fraunces", Georgia, serif; font-weight: 500; font-size: clamp(34px, 3.4vw, 46px); line-height: 1; color: #fff;
}
.empf__after-num em { font-style: italic; font-weight: 600; font-size: 0.42em; color: #ffb585; }
.empf__after-txt { flex: 1 1 auto; margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--on-dark-soft); }
.empf__after-txt strong { color: #fff; font-weight: 800; }
.empf__after-link { flex: 0 0 auto; color: #ffb585; }
.empf__after-link:hover { color: #fff; }
@media (max-width: 1023px) {
  .empf__grid { grid-template-columns: 1fr; gap: 30px; }
  .empf__text { max-width: none; }
}
@media (max-width: 640px) {
  .empf__after { flex-wrap: wrap; gap: 10px 18px; }
  .empf__after-txt { flex-basis: 100%; }
}
@media (max-width: 480px) {
  .empf__match { width: 64px; height: 64px; }
  .empf__match-val { font-size: 16px; }
  /* "Warum es zu dir passt" einzeilig halten */
  .empf__why-row { flex-wrap: nowrap; gap: 6px; padding: 8px 10px; }
  .empf__why-row i { flex: 0 0 auto; font-size: 10.5px; white-space: nowrap; }
  .empf__why-row svg { width: 11px; height: 11px; }
  .empf__why-row b { flex: 1 1 auto; min-width: 0; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  /* Uni-Tags auch mobil zeigen, nur kompakter */
  .empf__unis li { font-size: 12px; padding: 8px 10px; gap: 7px; }
  .empf__unis svg { width: 13px; height: 13px; }
  .empf__tag { font-size: 8px; padding: 3px 6px; letter-spacing: 0.05em; }
}
@media (prefers-reduced-motion: reduce) {
  .empf__card { transition: none; }
  .empf__match-fill { transition: none; }
  .diag__dots::before { transition: none; width: var(--w, 60%); }
}

/* ---- Einblicke: nur Bilder, schlank ---- */
.gallery--bare { padding: clamp(20px, 3.4vw, 44px) 0 clamp(36px, 5.4vw, 64px); }

/* ---- Feature-Karte: CTA-Zeile ---- */
.svcf__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 18px; margin-top: 20px; }
/* "Mehr erfahren" als dezenter Button (statt losem Textlink) */
.svcf__actions .svc__link {
  padding: 8px 15px; font-size: 13px; border-radius: 999px; border: 1.5px solid var(--line-2); font-weight: 800;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.svcf__actions .svc__link:hover { border-color: var(--orange); background: var(--tint); transform: translateY(-1px); }
.svc--feature .svcf__actions .svc__link { color: #fff; border-color: rgba(255, 255, 255, 0.5); background: transparent; }
.svc--feature .svcf__actions .svc__link:hover { color: var(--orange-dark); background: #fff; border-color: #fff; }
.svcf__btn {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  background: #fff; color: var(--orange-dark);
  font-weight: 800; font-size: 14.5px; text-decoration: none;
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.svcf__btn:hover, .svcf__btn:focus-visible { transform: translateY(-2px); color: var(--orange-dark); }

/* ---- Unser Weg: CTA darunter ---- */
.way__cta {
  display: flex; flex-direction: column; align-items: center; gap: 13px;
  margin-top: clamp(30px, 4.4vw, 54px); text-align: center;
}
.way__cta-txt { margin: 0; font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; font-size: clamp(18px, 1.9vw, 23px); color: var(--ink); }

/* ---- FAQ: kompakter + Linkzeile ---- */
.faq__list { gap: 9px; }
.faq__q { padding: 13px 16px 13px 18px; font-size: 15px; gap: 12px; }
.faq__icon { width: 16px; height: 16px; }
.faq__icon::before { width: 12px; }
.faq__icon::after { height: 12px; }
.faq__a-inner { padding: 0 18px 15px; font-size: 14px; line-height: 1.6; }
.faq__links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 22px; }

/* ---- Kontakt: Stempel-Badge, kompakte Kontakt-Pills, gleiche Höhen ---- */
.home-contact__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  grid-template-areas: "copy form" "extra form";
  grid-template-rows: auto 1fr;
  align-items: stretch; row-gap: 0;
}
.home-contact__copy { grid-area: copy; position: relative; }
.home-contact__extra { grid-area: extra; display: flex; flex-direction: column; min-height: 0; }
.home-contact__stamp {
  position: absolute; top: -16px; right: clamp(0px, 4vw, 48px); z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 102px; height: 102px; border-radius: 50%; rotate: 8deg;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff;
  text-align: center; line-height: 1.25;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 18px 36px -16px rgba(216, 91, 28, 0.6);
}
.home-contact__stamp em { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; font-size: 13px; letter-spacing: 0; text-transform: none; }
.home-contact__lead { margin-bottom: 0; }
/* Kontakt-Quick-Aktionen als Icon-Tiles (eine Zeile, helle Flächen) */
.home-contact__quick { display: flex; flex-wrap: nowrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.home-contact__quick li { flex: 1 1 0; min-width: 0; }
.home-contact__quick a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 12px 6px; border-radius: 14px;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink); text-decoration: none; box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.home-contact__quick a svg { width: 19px; height: 19px; color: var(--orange-dark); flex: 0 0 auto; }
.home-contact__quick a span { font-size: 11.5px; font-weight: 700; color: var(--soft); }
.home-contact__quick a:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ink); }
.home-contact__photo {
  position: relative; flex: 1 1 auto;
  width: 100%; min-height: 210px; margin: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.home-contact__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.contact-form { max-width: 520px; }
@media (max-width: 920px) {
  /* Mobil: Text -> Formular -> Kontakt-Pills + Bild */
  .home-contact__inner { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "form" "extra"; grid-template-rows: auto; row-gap: 22px; }
  .contact-form { max-width: none; justify-self: stretch; }
  .home-contact__extra { min-height: 0; }
  .home-contact__quick { margin: 0 0 14px; }
  .home-contact__photo { min-height: 0; aspect-ratio: 16 / 10; flex: 0 0 auto; }
  .home-contact__stamp { width: 88px; height: 88px; top: -8px; right: 0; font-size: 9px; }
  .home-contact__stamp em { font-size: 11.5px; }
  /* Stempel-Zone freihalten, damit Titel nicht darunter laeuft */
  .home-contact__copy .eyebrow, .home-contact__copy .section__title { max-width: calc(100% - 94px); }
}

/* ===================== Magazin-Teaser (Startseite) ================== */
.magteaser__panel {
  display: flex; align-items: center; gap: clamp(24px, 5vw, 56px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow-md);
  text-decoration: none; color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.magteaser__panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.magteaser__cover { flex: 0 0 auto; width: clamp(150px, 20vw, 208px); }
.magteaser__cover img {
  width: 100%; height: auto; display: block; border-radius: 9px; background: #fff;
  box-shadow: 0 26px 50px -22px rgba(30, 22, 16, 0.55);
  transform: rotate(-3deg); transition: transform 0.35s var(--ease);
}
.magteaser__panel:hover .magteaser__cover img { transform: rotate(0); }
.magteaser__copy { flex: 1 1 auto; min-width: 0; text-align: left; }
.magteaser__copy .eyebrow { margin: 0 0 8px; }
.magteaser__copy .section__title { margin: 0 0 12px; }
.magteaser__copy .section__lead { margin: 0 0 22px; max-width: 48ch; }
.magteaser__btn { display: inline-flex; align-items: center; gap: 9px; }
@media (max-width: 720px) {
  .magteaser__panel { flex-direction: column; text-align: center; padding: 28px 22px 32px; }
  .magteaser__copy { text-align: center; }
  .magteaser__copy .section__lead { margin-inline: auto; }
  .magteaser__cover { width: 158px; }
}

/* =====================================================================
   ERSTGESPRÄCH /erstgespraech/ — Buchungsseite (Slots aus Strapi)
   Zwei Spalten ab 920px: links Vertrauen (Foto, Ablauf), rechts Buchung.
   Farben über Tokens — funktioniert in Light & Dark.
   ===================================================================== */
.bk-sec { padding: clamp(52px, 8vw, 88px) 0; }
.bk-sec .wrap { max-width: 1060px; }
.bk-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }

.bk-msg { max-width: 760px; margin: 0 auto 26px; font-size: 15px; line-height: 1.55; border-radius: 14px; padding: 16px 20px; }
.bk-msg strong { display: block; margin-bottom: 3px; font-size: 16px; }
.bk-msg--ok  { background: #e8f3ec; border: 1px solid #c4e2cf; color: #2c6a47; }
.bk-msg--err { background: #fdecea; border: 1px solid #f5c6c0; color: #a5301f; }
[data-theme="dark"] .bk-msg--ok  { background: rgba(61,122,74,.16); border-color: rgba(143,199,155,.35); color: #9ed3ab; }
[data-theme="dark"] .bk-msg--err { background: rgba(165,48,31,.16); border-color: rgba(240,147,127,.35); color: #f0937f; }

/* Zwischenseite: Bestätigen/Absagen per bewusstem Klick (POST) */
.bk-inter { max-width: 480px; margin: 0 auto; text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; }
.bk-inter__ic { display: inline-flex; width: 52px; height: 52px; border-radius: 50%; background: var(--tint); color: var(--orange-dark); align-items: center; justify-content: center; margin-bottom: 14px; }
.bk-inter__ic svg { width: 26px; height: 26px; }
.bk-inter h2 { font-size: 22px; margin: 0 0 10px; color: var(--ink); }
.bk-inter p { font-size: 14.5px; line-height: 1.6; color: var(--soft); margin: 0 0 20px; }
.bk-inter__keep { display: inline-block; margin-top: 14px; font-size: 14px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.bk-inter__keep:hover { color: var(--soft); }

/* Layout */
.bk-layout { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 24px; align-items: start; }
@media (max-width: 920px) { .bk-layout { grid-template-columns: 1fr; } }

/* Vertrauen (links) */
.bk-info { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.bk-info__media { margin: 0; }
.bk-info__media img { display: block; width: 100%; height: 220px; object-fit: cover; }
.bk-info__body { padding: 22px 24px 26px; }
.bk-info__title { font-size: 18px; color: var(--ink); margin: 0 0 14px; }
.bk-info__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 11px; }
.bk-info__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--soft); }
.bk-info__ic { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--tint); color: var(--orange-dark); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.bk-info__ic svg { width: 11px; height: 11px; }
.bk-info__sign { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.bk-info__sign em { font-family: var(--heading, inherit); font-style: italic; font-size: 17px; color: var(--orange-dark); }

/* Buchungs-Karte (rechts) */
.bk-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: clamp(20px, 3.5vw, 30px); }
.bk-step { display: flex; align-items: center; gap: 10px; margin: 26px 0 14px; }
.bk-step:first-child { margin-top: 0; }
.bk-step__n { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 13.5px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.bk-step__t { font-weight: 700; font-size: 15.5px; color: var(--ink); }

.bk-day { font-weight: 600; color: var(--ink); margin: 14px 0 8px; font-size: 13.5px; }
.bk-slots { display: flex; flex-wrap: wrap; gap: 9px; }
.bk-slot input { position: absolute; opacity: 0; pointer-events: none; }
.bk-slot__t { display: inline-block; cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--soft); background: var(--bg); border: 1.5px solid var(--line); border-radius: 11px; padding: 9px 15px; transition: border-color .15s, background .15s, color .15s; }
.bk-slot input:checked + .bk-slot__t { background: var(--orange); border-color: var(--orange); color: #fff; }
.bk-slot__t:hover { border-color: var(--orange); }
.bk-slot input:focus-visible + .bk-slot__t { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Format: zwei gleichwertige Karten */
.bk-fmts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .bk-fmts { grid-template-columns: 1fr; } }
.bk-fmt { cursor: pointer; }
.bk-fmt input { position: absolute; opacity: 0; pointer-events: none; }
.bk-fmt__b { display: flex; gap: 12px; align-items: flex-start; height: 100%; background: var(--bg); border: 1.5px solid var(--line); border-radius: 13px; padding: 14px 16px; transition: border-color .15s, background .15s; }
.bk-fmt input:checked + .bk-fmt__b { border-color: var(--orange); background: var(--tint); }
.bk-fmt input:focus-visible + .bk-fmt__b { outline: 2px solid var(--orange); outline-offset: 2px; }
.bk-fmt__b svg { width: 22px; height: 22px; color: var(--orange-dark); flex: none; margin-top: 2px; }
.bk-fmt__txt b { display: block; font-size: 15px; color: var(--ink); }
.bk-fmt__txt small { display: block; font-weight: 400; font-size: 12.5px; line-height: 1.45; color: var(--muted); margin-top: 2px; }

/* Felder */
.bk-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
@media (max-width: 560px) { .bk-grid2 { grid-template-columns: 1fr; } }
.bk-field label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 5px; color: var(--ink); }
.bk-req { color: var(--orange-dark); font-weight: 700; }
.bk-opt { font-weight: 400; color: var(--muted); }
.bk-in { width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 11px; padding: 11px 14px; outline: none; transition: border-color .15s, box-shadow .15s; }
.bk-in:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243, 111, 44, .14); }
.bk-in::placeholder { color: var(--muted); }

.bk-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.5; color: var(--soft); margin-top: 18px; cursor: pointer; }
.bk-consent input { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; margin: 1px 0 0; flex: none; cursor: pointer; border: 1.5px solid var(--line); border-radius: 6px; background: var(--bg); position: relative; transition: background .15s, border-color .15s; }
.bk-consent input:checked { background: var(--orange); border-color: var(--orange); }
.bk-consent input:checked::after { content: ""; position: absolute; left: 6px; top: 2.5px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.bk-consent input:focus-visible { box-shadow: 0 0 0 3px rgba(243, 111, 44, .18); outline: none; }
.bk-consent a { color: var(--orange-dark); }

.bk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.bk-actions { margin-top: 20px; }
.bk-submit { width: 100%; justify-content: center; }
.bk-note { margin: 10px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); text-align: center; }

.bk-err { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #a5301f; background: #fdecea; border: 1px solid #f5c6c0; border-radius: 9px; padding: 6px 11px; margin: 9px 0 0; }
[data-theme="dark"] .bk-err { background: rgba(165,48,31,.16); border-color: rgba(240,147,127,.35); color: #f0937f; }
.bk-err[hidden] { display: none; }
.bk-err svg { width: 15px; height: 15px; flex: none; }

.bk-empty { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 30px; text-align: center; color: var(--soft); font-size: 15px; line-height: 1.6; }
.bk-empty__t { margin: 0 0 6px; font-weight: 700; color: var(--ink); }
.bk-empty a { color: var(--orange-dark); }
