/* =========================================================================
   AS PHYSIO NÜRNBERG — Startseite
   Designsystem & Layout
   ========================================================================= */

/* -------------------------------------------------- 1. Design Tokens */
:root {
  /* Farben */
  /* Markennavy – dunkle Sektionen, Header, Fließtext-Akzente */
  --navy-900: #1b2537;   /* Primärfarbe */
  --navy-800: #222c42;   /* eine Stufe heller, für Karten auf Navy (Petrol darauf 4,7:1) */
  --navy-700: #1b2537;   /* Header */
  --navy-600: #33405c;
  --navy-100: #dbeceb;   /* helle Petroltönung für Icon-Flächen */

  /* Signalfarbe Petrol – ersetzt das frühere Gold */
  --accent:      #00a6a6; /* Flächen und Akzente auf dunklem Grund (5,1:1 auf Navy) */
  --accent-dark: #008c8c; /* Hover-Fläche */
  --accent-soft: #e3f4f4; /* zarte Tönung für Hinweiskästen */
  /* Petrol als TEXT auf hellem Grund: abgedunkelt, damit WCAG AA (>=4,5:1) hält */
  --accent-ink:  #00706f; /* 5,9:1 auf Weiß · 5,5:1 auf --bg-soft */

  /* Buttonfarbe (primär) — getrennt vom Akzent, damit Icons, Badges und
     Eyebrows unabhängig davon eingefärbt bleiben. */
  --btn:        #b2b2b2;
  --btn-hover:  #9e9e9e;
  --btn-ink:    var(--navy-900); /* 7,3:1 auf #b2b2b2 */

  --ink:        #0f1d2b;  /* Fließtext dunkel  – 15.8:1 auf Weiß */
  --ink-muted:  #46586b;  /* Fließtext gedimmt –  7.3:1 auf Weiß (AA+) */
  --ink-onDark: #ffffff;
  --ink-onDark-muted: #c3d0dc; /* 10.4:1 auf Navy-900 */

  --bg:        #ffffff;
  --bg-soft:   #f4f6f8;
  --bg-softer: #fbfcfd;
  --line:      #dfe5ea;
  --line-dark: rgba(255, 255, 255, .14);

  --success: #1c7a4f;
  --star:      var(--accent);      /* Bewertungssterne auf dunklem Grund */
  --star-ink:  var(--accent-ink);  /* auf hellem Grund — 5,9:1 */

  /* Typografie */
  --font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.15rem, 1.35rem + 2.6vw, 3.65rem);
  --fs-h2:      clamp(1.65rem, 1.15rem + 1.7vw, 2.3rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + .55vw, 1.5rem);
  --fs-h4:      1.0625rem;
  --fs-lead:    clamp(1.02rem, .96rem + .3vw, 1.19rem);
  --fs-body:    1rem;
  --fs-sm:      .9375rem;
  --fs-xs:      .8125rem;

  /* Vertikaler Rhythmus – fester 8er-Raster */
  --sp-1:  .5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  3rem;
  --sp-6:  4rem;
  --sp-7:  6rem;
  --section-y: clamp(3.5rem, 2rem + 5vw, 6.5rem);

  /* Sonstiges */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(27, 37, 55, .06), 0 2px 8px rgba(27, 37, 55, .05);
  --shadow:    0 4px 10px rgba(27, 37, 55, .07), 0 14px 34px rgba(27, 37, 55, .09);
  --shadow-lg: 0 10px 24px rgba(27, 37, 55, .10), 0 30px 70px rgba(27, 37, 55, .16);
  --container: 1400px;
  --header-h:    110px;  /* Höhe der Kopfzeile */
  --header-h-sm:  84px;  /* darunter ab 640px */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------- 2. Reset & Basis */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip statt hidden: verhindert waagerechtes Scrollen, ohne einen
     Scroll-Container zu erzeugen (sonst kann die Schublade als Streifen
     am rechten Rand erreichbar bleiben). */
  overflow-x: clip;
}
html { overflow-x: clip; }

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

h1, h2, h3, h4 { margin: 0; line-height: 1.16; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--navy-900);
  padding: .75rem 1.25rem; font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------- 3. Layout-Helfer */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: var(--section-y); }
.section--soft  { background: var(--bg-soft); }
.section--dark  { background: var(--navy-900); color: var(--ink-onDark); }
.section--dark p { color: var(--ink-onDark-muted); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }

.section-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: var(--sp-5); }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.section-head p  { margin-top: var(--sp-2); font-size: var(--fs-lead); color: var(--ink-muted); }
.section--dark .section-head p { color: var(--ink-onDark-muted); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: var(--sp-2);
}
.section--dark .eyebrow { color: var(--accent); }

.pill-label {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .4rem 1.1rem;
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  background: #fff;
  margin-bottom: var(--sp-3);
}

.grid { display: grid; gap: clamp(1rem, .5rem + 1.4vw, 1.75rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }

/* -------------------------------------------------- 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.2;
  padding: 1rem 1.9rem;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

/* Primärbutton */
.btn--primary {
  background: var(--btn);
  color: var(--btn-ink);
  /* Rand, damit sich der Button auch auf hellem Grund abgrenzt */
  border-color: var(--btn);
  box-shadow: 0 4px 12px rgba(27, 37, 55, .14);
}
.btn--primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  box-shadow: 0 8px 20px rgba(27, 37, 55, .2);
}

/* Sekundär auf hellem Grund */
.btn--secondary { background: #fff; color: var(--navy-900); border-color: var(--navy-900); }
.btn--secondary:hover { background: var(--navy-900); color: #fff; }

/* Sekundär auf dunklem Grund */
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.btn--sm { padding: .7rem 1.35rem; min-height: 44px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* -------------------------------------------------- 5. Header (Original beibehalten) */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-700);
  color: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: var(--header-h);
  padding-block: .75rem;
}
.header__logo img { height: 70px; width: auto; }

.nav { margin-left: auto; }
/* Schubladen-Teile nur auf Mobil */
.nav__head, .nav__close, .nav__foot, .nav__phone, .nav-backdrop { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, .3rem + 1.5vw, 2.25rem); }
.nav__list a {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  padding-block: .5rem;
  white-space: nowrap;
}
.nav__list a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 1.25rem; }
.header__phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .9375rem; white-space: nowrap; color: #fff;
}
.header__phone svg { opacity: .85; }
.header__cta {
  border: 1px solid #fff; border-radius: var(--radius-pill);
  padding: .72rem 1.4rem; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.header__cta:hover { background: #fff; color: var(--navy-700); }

/* Zwei kräftige Balken, rahmenlos. 44px Tastfläche bleibt erhalten. */
.burger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  border: 0; background: transparent; padding: 0;
  color: #fff; cursor: pointer;
}
.burger span {
  display: block; width: 26px; height: 3px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* -------------------------------------------------- 6. Hero
   Vollflächiges Praxisfoto als Hintergrund, Text zentriert davor.
   -------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(86vh, 780px);
  padding-block: clamp(3.5rem, 2rem + 6vw, 7rem);
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* --- Hintergrundbilder --- */
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
/* Bild 1 liegt fest darunter, Bild 2 blendet darüber ein und wieder aus */
.hero__slide--2 { opacity: 0; animation: heroFade 18s ease-in-out infinite; }
@keyframes heroFade {
  0%, 6%    { opacity: 0; }
  44%, 56%  { opacity: 1; }
  94%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide--2 { animation: none; opacity: 0; }
}

/* --- Abdunkelung: hält weißen Text auch über hellen Bildstellen auf AA ---
   Mitte ~7,7:1 · Ränder ~4,9:1 gegenüber Weiß, selbst über reinweißen Pixeln. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 92% 74% at 50% 52%, rgba(27, 37, 55, .42) 0%, rgba(27, 37, 55, 0) 72%),
    linear-gradient(180deg,
      rgba(27, 37, 55, .74) 0%,
      rgba(27, 37, 55, .58) 32%,
      rgba(27, 37, 55, .60) 68%,
      rgba(27, 37, 55, .82) 100%);
}

/* --- Inhalt, zentriert --- */
.hero__content {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero__kicker {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--sp-2);
}
.hero h1 {
  font-size: var(--fs-display); text-transform: uppercase;
  max-width: 29.5ch;
  text-shadow: 0 2px 24px rgba(27, 37, 55, .45);
}
.hero h1 .u { color: var(--accent); }
.hero__lead {
  margin-top: var(--sp-3); font-size: var(--fs-lead);
  color: #e7edf3; max-width: 58ch;
  text-shadow: 0 1px 14px rgba(27, 37, 55, .5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: var(--sp-4); justify-content: center; }
/* Sekundärbutton bekommt über dem Foto einen leichten Rückhalt */
.hero__actions .btn--ghost {
  background: rgba(27, 37, 55, .42);
  border-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(4px);
}
.hero__actions .btn--ghost:hover { background: #fff; border-color: #fff; }

.hero__usps { display: flex; flex-wrap: wrap; gap: .5rem .6rem; margin-top: var(--sp-4); justify-content: center; }
.hero__usps li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-xs); font-weight: 600; color: #fff;
  background: rgba(27, 37, 55, .42);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-pill); padding: .45rem .95rem;
  backdrop-filter: blur(4px);
}
.hero__usps svg { color: var(--accent); flex: none; }

/* -------------------------------------------------- 7. Trust-Leiste */
.trustbar { background: var(--navy-800); border-top: 1px solid var(--line-dark); color: #fff; }
.trustbar__list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-dark);
}
.trustbar__list li {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  background: var(--navy-800); padding: 1.15rem 1rem;
  font-size: var(--fs-sm); font-weight: 600; text-align: center;
}
.trustbar__list svg { color: var(--accent); flex: none; }
.trustbar__list b { font-weight: 800; }
.trustbar .stars { color: var(--star); letter-spacing: .05em; }

/* -------------------------------------------------- 8. Intro */
.intro { max-width: 880px; margin-inline: auto; text-align: center; }
.intro h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.intro__claim {
  display: block; margin-top: var(--sp-2);
  font-size: var(--fs-h4); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-ink);
}
.intro p { margin-top: var(--sp-3); font-size: var(--fs-lead); color: var(--ink-muted); }
.intro__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: var(--sp-4); }

/* -------------------------------------------------- 9. Beschwerde-Check */
.check {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1rem + 3vw, 3.25rem);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
/* Erklärzeile über dem Check */
.check__reassure {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .5rem 1.1rem;
}
.check__reassure svg { color: var(--success); flex: none; }

.check__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .75rem 1.25rem; margin-bottom: var(--sp-3); }
.check__head h3 { font-size: var(--fs-h3); text-transform: uppercase; }
.check__progress { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.check__bar { height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .15); overflow: hidden; margin-bottom: var(--sp-4); }
.check__bar i { display: block; height: 100%; width: 33.33%; background: var(--accent); transition: width .35s var(--ease); }

.check__step[hidden] { display: none; }
.check__q { font-size: var(--fs-lead); font-weight: 700; margin-bottom: var(--sp-3); }
.check__options { display: flex; flex-wrap: wrap; gap: .65rem; }
.check__options button {
  font-family: inherit; font-size: var(--fs-sm); font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill); padding: .8rem 1.35rem; cursor: pointer;
  transition: .18s var(--ease);
}
.check__options button:hover { background: var(--accent); border-color: var(--accent); color: var(--navy-900); transform: translateY(-2px); }
.check__back {
  margin-top: var(--sp-3); background: none; border: 0; padding: 0;
  color: var(--ink-onDark-muted); font-family: inherit; font-size: var(--fs-sm);
  cursor: pointer; text-decoration: underline;
}
.check__result h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.check__summary {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-3);
}
.check__summary span {
  font-size: var(--fs-xs); font-weight: 700; padding: .35rem .85rem;
  border-radius: var(--radius-pill); background: rgba(0, 166, 166, .16);
  color: var(--accent); border: 1px solid rgba(0, 166, 166, .35);
}
.check__result p { color: var(--ink-onDark-muted); max-width: 62ch; }
.check__result .hero__actions { margin-top: var(--sp-4); }

/* -------------------------------------------------- 10. Leistungskarten */
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  color: var(--ink); /* wichtig: Karte steht in .section--dark, erbt sonst Weiß */
  border-radius: var(--radius-lg);
  padding: 0 1.75rem 1.75rem;
  margin-top: 92px;  /* Platz für das überstehende Bild */
  box-shadow: var(--shadow);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Freigestelltes Bild ragt oben aus der Karte heraus (wie im Screendesign) */
.service__media {
  height: 150px; margin-top: -92px; margin-bottom: 1rem;
  display: flex; align-items: flex-end; justify-content: center;
}
.service__media img { max-height: 100%; width: auto; object-fit: contain; }
.service h3 { font-size: var(--fs-h4); margin-bottom: .6rem; color: var(--ink); }
.service p { font-size: var(--fs-sm); color: var(--ink-muted); }
.service__meta {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: var(--sp-2);
}
.service__meta span {
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-muted);
  background: var(--bg-soft); border-radius: var(--radius-pill); padding: .3rem .75rem;
}
.service__link {
  margin-top: auto; padding-top: var(--sp-3);
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-sm); font-weight: 700; color: var(--navy-900);
}
.service__link svg { transition: transform .2s var(--ease); }
.service:hover .service__link svg { transform: translateX(4px); }

/* Abschluss-Karte statt 6. Leistung */
.service--cta {
  background: var(--navy-800); color: #fff; justify-content: center;
  padding-block: 2.5rem; margin-top: 92px;
}
.service--cta h3 { color: #fff; font-size: var(--fs-h3); }
.service--cta h3 { font-size: var(--fs-h3); }
.service--cta p { color: var(--ink-onDark-muted); }
.service--cta .btn { margin-top: var(--sp-3); }

/* -------------------------------------------------- 11. Prozess */
.steps { list-style: none; margin: 0; padding: 0; }

.step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
}
.step + .step { margin-top: 62px; }
.step + .step::before {
  content: ""; position: absolute; top: -44px; left: 50%; transform: translateX(-50%);
  border-left: 18px solid transparent; border-right: 18px solid transparent;
  border-top: 22px solid var(--navy-800);
}
.step:nth-child(even) .step__body { order: 2; }
.step__num { font-size: clamp(2.5rem, 1.5rem + 3vw, 3.75rem); font-weight: 800; color: var(--accent); line-height: 1; }
.step__kicker { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--ink-onDark-muted); }
.step h3 { margin-top: .35rem; font-size: var(--fs-h3); }
.step p { margin-top: var(--sp-2); color: var(--ink-onDark-muted); }
.step__time {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: var(--sp-3);
  font-size: var(--fs-xs); font-weight: 700; color: var(--accent);
  background: rgba(0, 166, 166, .12); border: 1px solid rgba(0, 166, 166, .3);
  border-radius: var(--radius-pill); padding: .4rem .9rem;
}
.step__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 11; object-fit: cover; }

/* -------------------------------------------------- 12. Beschwerden-Grid */
.symptom-grid { grid-template-columns: repeat(4, 1fr); }
.symptom {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: .2s var(--ease);
}
.symptom:hover { border-color: var(--navy-900); box-shadow: var(--shadow); transform: translateY(-4px); }
.symptom__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.1rem; }
.symptom__icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-100); color: var(--navy-900);
}
.symptom__arrow { color: var(--ink-muted); transition: .2s var(--ease); }
.symptom:hover .symptom__arrow { color: var(--navy-900); transform: translate(3px, -3px); }
.symptom h3 { font-size: var(--fs-h4); margin-bottom: .4rem; }
.symptom p { font-size: var(--fs-sm); color: var(--ink-muted); }

/* -------------------------------------------------- 13. Team */
.team-grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; margin-inline: auto; }
.member { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.member img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%; }
.member__body { padding: 1.4rem 1.5rem 1.6rem; }
.member h3 { font-size: var(--fs-h4); }
.member__role { font-size: var(--fs-sm); font-weight: 700; color: var(--accent-ink); margin-top: .2rem; }
.member__quals { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: var(--sp-2); }
.member__quals span {
  font-size: var(--fs-xs); color: var(--ink-muted);
  background: var(--bg-soft); border-radius: var(--radius-pill); padding: .28rem .7rem;
}

/* -------------------------------------------------- 14. Kurse */
.course-grid { grid-template-columns: repeat(4, 1fr); }
.course {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: .2s var(--ease);
}
.course:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.course__media { position: relative; }
.course__media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.course__badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--accent); color: var(--navy-900);
  font-size: var(--fs-xs); font-weight: 800;
  padding: .38rem .8rem; border-radius: var(--radius-pill);
  box-shadow: 0 3px 10px rgba(27, 37, 55, .25);
}
.course__body { display: flex; flex-direction: column; flex: 1; padding: 1.35rem 1.35rem 1.5rem; }
.course h3 { font-size: var(--fs-h4); }
.course__format { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-top: .3rem; }
/* Der Text füllt den Rest der Karte, damit der Button in allen Karten
   einer Reihe auf gleicher Höhe sitzt. */
.course p { font-size: var(--fs-sm); color: var(--ink-muted); margin-top: .7rem; flex: 1; }
.course__price { margin-top: var(--sp-3); font-size: var(--fs-sm); }
.course__price s { color: var(--ink-muted); }
.course__price b { font-size: 1.35rem; font-weight: 800; color: var(--success); margin-left: .4rem; }
.course .btn { margin-top: var(--sp-3); }
.course__note { font-size: var(--fs-xs); color: var(--ink-muted); text-align: center; margin-top: var(--sp-4); }

/* -------------------------------------------------- 15. Lead-Magnet */
.offer {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center;
}
.offer__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0, 166, 166, .14); color: var(--accent);
  border: 1px solid rgba(0, 166, 166, .35); border-radius: var(--radius-pill);
  padding: .45rem 1rem; font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--sp-3);
}
.offer h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.offer__list { margin-top: var(--sp-3); display: grid; gap: .7rem; }
.offer__list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-onDark-muted); }
.offer__list svg { color: var(--accent); flex: none; margin-top: 4px; }
.offer__fineprint { margin-top: var(--sp-3); font-size: var(--fs-xs); color: rgba(255, 255, 255, .55); }

.form-card {
  background: #fff; color: var(--ink); /* steht ebenfalls in .section--dark */
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: var(--fs-h3); color: var(--ink); }
.form-card > p { margin-top: .6rem; font-size: var(--fs-sm); color: var(--ink-muted); }
.field { margin-top: var(--sp-3); }
.field label { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: .4rem; color: var(--ink); }
.field input {
  width: 100%; font-family: inherit; font-size: var(--fs-body); color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .18s var(--ease);
}
.field input:focus { border-color: var(--navy-900); }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin-top: var(--sp-3); font-size: var(--fs-xs); color: var(--ink-muted); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--navy-900); flex: none; }
.consent a { text-decoration: underline; }
.form-card .btn { margin-top: var(--sp-3); }

/* -------------------------------------------------- 16. Ergebnisse / Video */
.case { display: grid; grid-template-columns: 420px 1fr; gap: clamp(1.25rem, 1rem + 2vw, 2.5rem); align-items: center;
        background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.25rem; }
.case + .case { margin-top: var(--sp-3); }
.case__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.case__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.case__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(27, 37, 55, .32); border: 0; cursor: pointer; color: #fff;
  transition: background-color .2s var(--ease);
}
.case__play:hover { background: rgba(27, 37, 55, .5); }
.case__play span {
  width: 62px; height: 62px; border-radius: 50%; background: var(--accent); color: var(--navy-900);
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}
.case__length {
  position: absolute; right: .7rem; bottom: .7rem;
  background: rgba(27, 37, 55, .85); color: #fff;
  font-size: var(--fs-xs); font-weight: 700; padding: .22rem .55rem; border-radius: 4px;
}
.case__body { padding: .5rem 1rem .5rem 0; }
.case__tag { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); }
.case h3 { font-size: var(--fs-h3); margin-top: .4rem; }
.case dl { margin: var(--sp-3) 0 0; display: grid; gap: .8rem; }
.case dt { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-muted); }
.case dd { margin: .2rem 0 0; font-size: var(--fs-sm); color: var(--ink); }
.case__person { margin-top: var(--sp-3); font-size: var(--fs-sm); font-weight: 700; color: var(--ink-muted); }

/* -------------------------------------------------- 17. Bewertungen */
.rating-head { display: flex; flex-direction: column; align-items: center; gap: .4rem; margin-bottom: var(--sp-4); }
.rating-head .stars { color: var(--star-ink); font-size: 1.5rem; letter-spacing: .1em; }
.rating-head b { font-size: var(--fs-lead); }
.rating-head a { font-size: var(--fs-sm); color: var(--ink-muted); text-decoration: underline; }

.slider { position: relative; }
.slider__track {
  display: grid; grid-auto-flow: column;
  /* 2,5 Karten sichtbar: die halbe dritte zeigt an, dass es weitergeht.
     Breitere Karten heißt ruhigerer Zeilenumbruch – die Zitate sind lang. */
  grid-auto-columns: minmax(320px, calc((100% - 1.5 * 1.5rem) / 2.5));
  gap: var(--sp-3); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem .25rem 1.25rem; scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 1.4vw, 2.25rem); display: flex; flex-direction: column;
}
.review__stars { color: var(--star-ink); letter-spacing: .08em; margin-bottom: .7rem; }
.review p { font-size: var(--fs-sm); color: var(--ink); flex: 1; }
.review footer { margin-top: var(--sp-3); font-size: var(--fs-sm); font-weight: 700; }
.review footer small { display: block; font-weight: 400; color: var(--ink-muted); }
.slider__nav { display: flex; justify-content: center; gap: .6rem; }
.slider__nav button {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1.5px solid var(--navy-900); background: #fff; color: var(--navy-900);
  display: grid; place-items: center; transition: .18s var(--ease);
}
.slider__nav button:hover { background: var(--navy-900); color: #fff; }

/* -------------------------------------------------- 18. CTA-Band */
.cta-band { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--bg-soft); }
.cta-band__media { min-height: 340px; position: relative; }
.cta-band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 30%; }
.cta-band__body { padding: clamp(2rem, 1rem + 4vw, 4.5rem) clamp(1.25rem, 4vw, 4rem); align-self: center; }
.cta-band h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.cta-band > .cta-band__body > p { margin-top: var(--sp-2); color: var(--ink-muted); font-size: var(--fs-lead); max-width: 52ch; }
.cta-band__list { margin-top: var(--sp-3); display: grid; gap: .55rem; }
.cta-band__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); }
.cta-band__list svg { color: var(--success); flex: none; margin-top: 4px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: var(--sp-4); }

/* -------------------------------------------------- 19. FAQ */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.faq__item + .faq__item { margin-top: .7rem; }
.faq__item[open] { border-color: var(--navy-900); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem; cursor: pointer; font-weight: 700; font-size: var(--fs-body);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q svg { flex: none; color: var(--navy-900); transition: transform .22s var(--ease); }
.faq__item[open] .faq__q svg { transform: rotate(180deg); }
.faq__a { padding: 0 1.35rem 1.35rem; font-size: var(--fs-sm); color: var(--ink-muted); max-width: 68ch; }
.faq__a a { text-decoration: underline; }

/* -------------------------------------------------- 20. Kontakt & Anfahrt */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: start; }
.contact__head { margin-bottom: var(--sp-5); }
.contact__head h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.contact__block { margin-top: var(--sp-4); }
.contact__block--first { margin-top: 0; }
.contact__block h3 { font-size: var(--fs-h4); margin-bottom: .6rem; }
.contact__block p, .contact__block li { font-size: var(--fs-sm); color: var(--ink-muted); }
.contact__block a { font-weight: 700; color: var(--ink); }

.hours { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours th, .hours td { text-align: left; padding: .5rem .5rem .5rem 0; border-bottom: 1px solid var(--line); font-weight: 400; color: var(--ink-muted); }
.hours th { font-weight: 700; color: var(--ink); width: 8rem; }
.hours tr[data-today] th, .hours tr[data-today] td { color: var(--ink); font-weight: 700; background: var(--accent-soft); }
.hours caption { text-align: left; font-weight: 700; font-size: var(--fs-h4); padding-bottom: .5rem; color: var(--ink); }

.arrival { display: grid; gap: .6rem; margin-top: var(--sp-2); }
.arrival li { display: flex; gap: .6rem; align-items: flex-start; }
.arrival svg { color: var(--navy-900); flex: none; margin-top: 3px; }

/* -------------------------------------------------- 21. Galerie */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s var(--ease); }
.gallery figure { margin: 0; overflow: hidden; }
.gallery figure:hover img { transform: scale(1.05); }

/* -------------------------------------------------- 22. Footer */
.footer { background: var(--navy-900); color: var(--ink-onDark-muted); padding-block: var(--sp-6) var(--sp-4); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-4); }
.footer__logo img { height: 56px; width: auto; margin-bottom: var(--sp-3); }
.footer h3 { font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-2); }
.footer li + li { margin-top: .45rem; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__links { font-size: var(--fs-sm); }
.footer__social { display: flex; gap: .6rem; margin-top: var(--sp-3); }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .1); color: #fff; transition: .18s var(--ease);
}
.footer__social a:hover { background: var(--accent); color: var(--navy-900); }
.footer__bottom {
  margin-top: var(--sp-5); padding-top: var(--sp-3);
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: var(--fs-xs);
}

/* -------------------------------------------------- 24. Responsive */
@media (max-width: 1080px) {
  .header__phone { display: none; }
  .nav__list { gap: 1.1rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .symptom-grid { grid-template-columns: repeat(3, 1fr); }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Der Burger ist auf Mobil das letzte Element in der Kopfzeile.
     margin-right gleicht den Innenabstand der 44px-Tastfläche aus, damit die
     Balken optisch bündig mit dem Logo an der Containerkante stehen. */
  .burger { display: flex; margin-left: auto; margin-right: -.55rem; }
  /* Telefon und CTA sind hier ohnehin ausgeblendet – der leere Block würde
     sonst als Flex-Element eine Lücke von 2rem hinter dem Burger erzeugen. */
  .header__actions { display: none; }
  /* --- Menü als Schublade von rechts --- */
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; margin: 0;
    z-index: 120;
    width: min(86vw, 380px);
    display: flex; flex-direction: column;
    background: var(--navy-700);
    box-shadow: -18px 0 46px rgba(27, 37, 55, .5);
    /* Geschlossen komplett aus dem Weg: verschoben, unsichtbar, nicht klickbar.
       Die Sichtbarkeit schaltet erst nach der Animation um. */
    transform: translateX(100%);
    visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), visibility 0s linear .3s;
    overflow-y: auto; overscroll-behavior: contain;
    padding: 0 0 calc(var(--sp-4) + env(safe-area-inset-bottom));
  }
  .nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), visibility 0s;
  }

  .nav__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid var(--line-dark);
    position: sticky; top: 0; z-index: 2;
    background: var(--navy-700);
  }
  .nav__title {
    font-size: var(--fs-xs); font-weight: 800; letter-spacing: .16em;
    text-transform: uppercase; color: var(--accent);
  }
  .nav__close {
    display: grid; place-items: center;
    width: 44px; height: 44px; margin-right: -.5rem;
    background: transparent; border: 0; color: #fff; cursor: pointer;
  }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0 1.35rem; }
  .nav__list > li + li { border-top: 1px solid var(--line-dark); }
  .nav__list a { display: block; padding: 1rem 0; font-size: 1rem; }

  .nav__foot {
    display: block; margin-top: auto;
    padding: var(--sp-4) 1.35rem 0;
  }
  .nav__phone {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    margin-top: .75rem; padding: .9rem;
    font-size: var(--fs-sm); font-weight: 700; color: #fff;
    border: 1px solid rgba(255, 255, 255, .35); border-radius: var(--radius-pill);
  }
  .nav__phone:hover { background: rgba(255, 255, 255, .1); }

  /* Abdunklung hinter der Schublade.
     Wichtig: [hidden] muss die display-Regel schlagen, sonst liegt die
     unsichtbare Fläche über der Seite und schluckt jeden Klick. */
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 110;
    background: rgba(27, 37, 55, .55);
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease);
  }
  .nav-backdrop[hidden] { display: none; }
  .nav-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }


  .hero { min-height: min(78vh, 640px); }
  .hero h1 { max-width: 16ch; }
  /* Auf Mobil rückt das Motiv im Bild nach oben, damit der Text nicht auf Details liegt */
  .hero__slide { object-position: 50% 42%; }

  .trustbar__list { grid-template-columns: repeat(2, 1fr); }

  .step { grid-template-columns: 1fr; }
  .step:nth-child(even) .step__body { order: 0; }
  .step__media { order: -1; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .offer, .contact, .cta-band { grid-template-columns: 1fr; }
  .cta-band__media { min-height: 260px; }
  .case { grid-template-columns: 1fr; }
  .case__body { padding: 0 .5rem 1rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 640px) {
  :root { --header-h: var(--header-h-sm); }
  .header__inner { min-height: var(--header-h-sm); }
  .header__logo img { height: 60px; }
  /* Kein inset hier – die Schublade dockt über die volle Höhe rechts an
     (siehe Regel im 900px-Block). Ein inset mit left:0 würde sie nach
     links ziehen, weil left und right zusammen mit width überbestimmt sind. */
  .service-grid, .symptom-grid, .course-grid, .team-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .trustbar__list { grid-template-columns: 1fr; }
  .trustbar__list li { justify-content: flex-start; text-align: left; }
  .hero__actions .btn, .intro__actions .btn, .cta-band__actions .btn { width: 100%; }
  .slider__track { grid-auto-columns: 86%; }
  .footer__bottom { flex-direction: column; }
}

/* -------------------------------------------------- 25. Print */
@media print {
  .header, .slider__nav, .check { display: none; }
  body { color: #000; }
}

/* -------------------------------------------------- 26. Utilities */
.t-lead   { font-size: var(--fs-lead); }
.t-sm     { font-size: var(--fs-sm); }
.t-xs     { font-size: var(--fs-xs); }
.t-muted  { color: var(--ink-muted); }
.t-normal { font-weight: 400; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.on-dark-strong { color: #fff; }
.link-strong { font-weight: 700; color: var(--ink); text-decoration: underline; }
.section--dark .t-muted { color: var(--ink-onDark-muted); }

/* =========================================================================
   27. Dropdown-Navigation
   Desktop: Hover + Focus-within · Mobil: Klick-Akkordeon
   ========================================================================= */
.nav__list > li { position: relative; }

.nav__item > a { display: inline-flex; align-items: center; }
/* Kein Pfeil-Indikator neben Menüpunkten mit Untermenü – das Panel öffnet
   auf dem Desktop bei Hover bzw. beim Tabben. */

/* Umschalter nur auf Mobil sichtbar */
.nav__toggle {
  display: none;
  width: 46px; height: 46px; flex: none;
  background: transparent; border: 0; cursor: pointer; color: #fff;
  padding: 0; place-items: center;
}
.nav__toggle svg { transition: transform .22s var(--ease); }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* --- Panel --- */
.nav__sub {
  position: absolute; top: 100%; left: -1rem;
  z-index: 60;
  min-width: 310px;
  padding: .55rem;
  margin-top: .5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
/* Unsichtbare Brücke, damit das Menü beim Herunterfahren nicht zuklappt */
.nav__sub::before { content: ""; position: absolute; top: -.75rem; left: 0; right: 0; height: .75rem; }

.nav__item--has-sub:hover > .nav__sub,
.nav__item--has-sub:focus-within > .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nav__sub a {
  display: block;
  padding: .62rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 600;
  letter-spacing: 0; text-transform: none;
  color: var(--ink);
  white-space: normal;
}
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: var(--bg-soft); color: var(--navy-900); }
.nav__sub a[aria-current="page"] { background: var(--navy-900); color: #fff; }

/* =========================================================================
   28. Unterseiten
   ========================================================================= */
/* --- Seiten-Hero --- */
.phero {
  position: relative;
  display: grid; place-items: center;
  min-height: min(52vh, 430px);
  padding-block: clamp(2.75rem, 1.5rem + 4vw, 4.5rem);
  background: var(--navy-900); color: #fff;
  overflow: hidden; isolation: isolate;
}
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 90% 78% at 50% 55%, rgba(27, 37, 55, .40) 0%, rgba(27, 37, 55, 0) 74%),
    linear-gradient(180deg, rgba(27, 37, 55, .80) 0%, rgba(27, 37, 55, .62) 40%, rgba(27, 37, 55, .74) 100%);
}
.phero__inner { position: relative; text-align: center; max-width: 900px; margin-inline: auto; }
.phero__eyebrow {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--sp-2);
}
.phero h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3.1rem);
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(27, 37, 55, .45);
}
.phero__lead {
  margin-top: var(--sp-3); font-size: var(--fs-lead); color: #e7edf3;
  max-width: 62ch; margin-inline: auto;
  text-shadow: 0 1px 14px rgba(27, 37, 55, .5);
}
.phero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: var(--sp-4); }
.phero__actions .btn--ghost {
  background: rgba(27, 37, 55, .42); border-color: rgba(255, 255, 255, .7); backdrop-filter: blur(4px);
}
.phero__actions .btn--ghost:hover { background: #fff; border-color: #fff; }

/* --- Fließtext --- */
.prose--page { max-width: 1000px; margin-inline: auto; }
.prose > * + * { margin-top: var(--sp-3); }
.prose h2 {
  font-size: var(--fs-h2); text-transform: uppercase;
  margin-top: var(--sp-6); padding-top: var(--sp-1);
}
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-h3); margin-top: var(--sp-5); }
.prose p { font-size: 1.0625rem; color: var(--ink-muted); max-width: 70ch; }
.prose p strong, .prose li strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-ink); }

.prose__intro { font-size: var(--fs-lead) !important; color: var(--ink) !important; max-width: 66ch; }

/* Merkmal-Listen */
.ticklist { display: grid; gap: .75rem; margin-top: var(--sp-3); }
.ticklist--2 { grid-template-columns: repeat(2, 1fr); gap: .75rem var(--sp-4); max-width: 1000px; margin-inline: auto; }
@media (max-width: 700px) { .ticklist--2 { grid-template-columns: 1fr; } }
.section--dark .ticklist li { color: var(--ink-onDark-muted); }
.section--dark .ticklist svg { color: var(--accent); }
.split .ticklist { max-width: none; }
.split .member__quals { margin-top: var(--sp-3); }
.section--dark .member__quals span { background: rgba(255,255,255,.1); color: #fff; }
.ticklist li {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: 1.0625rem; color: var(--ink-muted); max-width: 70ch;
}
.ticklist svg { color: var(--success); flex: none; margin-top: 6px; }

/* Faktenkasten */
.factbox {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
  margin-top: var(--sp-4);
}
.factbox h3 { font-size: var(--fs-h4); margin-bottom: .6rem; }
.factbox p, .factbox li { font-size: var(--fs-sm); color: var(--ink-muted); }
.factbox ul { display: grid; gap: .4rem; }
.factbox li { display: flex; gap: .6rem; }
.factbox li::before { content: "—"; color: var(--accent-ink); flex: none; }

/* Kartenraster im Fließtext */
.infocards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); margin-top: var(--sp-3); }
.infocards article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.infocards h3 { font-size: var(--fs-h4); margin: 0 0 .45rem; }
.infocards p { font-size: var(--fs-sm); color: var(--ink-muted); margin: 0; }

/* Bild im Fließtext */
.prose figure { margin: var(--sp-4) 0 0; }
.prose figure img { width: 100%; border-radius: var(--radius); }
.prose figcaption { margin-top: .6rem; font-size: var(--fs-xs); color: var(--ink-muted); }

/* --- Kachelraster für Übersichtsseiten --- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.tile {
  display: flex; flex-direction: column;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem;
  transition: .2s var(--ease);
}
.tile:hover { border-color: var(--navy-900); box-shadow: var(--shadow); transform: translateY(-4px); }
.tile h3 { font-size: var(--fs-h4); margin-bottom: .45rem; }
.tile p { font-size: var(--fs-sm); color: var(--ink-muted); flex: 1; }
.tile__more {
  margin-top: var(--sp-3); display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-sm); font-weight: 700; color: var(--navy-900);
}
.tile:hover .tile__more svg { transform: translateX(4px); }
.tile__more svg { transition: transform .2s var(--ease); }

/* --- Team --- */
.member--lg img { aspect-ratio: 3 / 4; }

/* --- Stellenanzeigen --- */
.job {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.job + .job { margin-top: var(--sp-3); }
.job__head { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; justify-content: space-between; }
.job h3 { font-size: var(--fs-h3); }
.job__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.job__tags span {
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-muted);
  background: var(--bg-soft); border-radius: var(--radius-pill); padding: .3rem .8rem;
}
.job p { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--ink-muted); }
.job .btn { margin-top: var(--sp-3); }

/* --- Blog --- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.post {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: .2s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--accent-ink); }
.post h3 { font-size: var(--fs-h4); margin: .45rem 0 .5rem; }
.post p { font-size: var(--fs-sm); color: var(--ink-muted); flex: 1; }

/* --- Rechtstexte --- */
.legal .prose h2 { font-size: var(--fs-h3); margin-top: var(--sp-5); }
.legal .prose p { font-size: var(--fs-sm); }

/* --- Responsive --- */
@media (max-width: 1080px) {
  .tiles, .posts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Menü als Akkordeon */
  .nav__item { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__item > a { flex: 1; }
  .nav__toggle { display: grid; }

  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    width: 100%; min-width: 0; margin: 0 0 .5rem;
    /* Kein eigener Hintergrund – die Schublade trägt die Farbe.
       Die Einrückung markiert die Ebene. */
    background: transparent;
    box-shadow: none; border-radius: 0;
    padding: 0 0 0 .9rem;
    display: none;
  }
  /* Untermenü klappt per Klick auf den Pfeil auf */
  .nav__item > a { flex: 1 1 auto; min-width: 0; }
  .nav__toggle { margin-left: .75rem; }
  .nav__sub li + li { border-top: 1px solid rgba(255, 255, 255, .08); }
  .nav__sub::before { display: none; }
  /* Hier NICHT mit :hover/:focus-within gegensteuern – solche Selektoren sind
     spezifischer als [data-open] und würden das aufgeklappte Untermenü wieder
     zuklappen, sobald der Pfeil-Button den Fokus bekommt. Die Desktop-Regeln
     ändern ohnehin nur opacity/visibility, nicht display. */
  .nav__sub[data-open="true"] { display: block; }
  .nav__sub a { color: var(--ink-onDark-muted); padding: .6rem 0; }
  .nav__sub a:hover { background: transparent; color: #fff; }
  /* Aktive Unterseite ohne Fläche, nur farbig und fett */
  .nav__sub a[aria-current="page"] {
    background: transparent; color: var(--accent); font-weight: 700;
  }

  .infocards { grid-template-columns: 1fr; }
  .phero { min-height: min(46vh, 340px); }
}

@media (max-width: 640px) {
  .tiles, .posts { grid-template-columns: 1fr; }
  .phero__actions .btn { width: 100%; }
}

/* =========================================================================
   29. Sektionsseiten ("kreative" Unterseiten)
   Blöcke rendern als volle Sektionen statt in einer Textspalte.
   ========================================================================= */

/* --- Wechselnde Bild/Text-Sektion --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
/* Standard: Text links, Bild rechts. Mit --flip umgekehrt (für den Wechselrhythmus). */
.split__media { order: 2; }
.split--flip .split__media { order: 0; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__body h2 { font-size: var(--fs-h2); text-transform: uppercase; }
/* Zeilenlänge begrenzen – bei 1400px Container würden die Spalten sonst zu breit */
.split__body > p,
.split__body .ticklist li { max-width: 62ch; }
.split__body > p { margin-top: var(--sp-3); font-size: 1.0625rem; color: var(--ink-muted); }
.split__body > p.lead { font-size: var(--fs-lead); color: var(--ink); }
.section--dark .split__body > p { color: var(--ink-onDark-muted); }
.section--dark .split__body > p.lead { color: #fff; }
.split__note {
  margin-top: var(--sp-3); padding: 1.1rem 1.3rem;
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink);
}
.section--dark .split__note {
  background: rgba(0, 166, 166, .12); border-left-color: var(--accent); color: #fff;
}
.split .btn { margin-top: var(--sp-4); }

/* --- Drei Beschwerde-Spalten --- */
.cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.cols3 article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.cols3 h3 {
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); padding-bottom: .8rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cols3 ul { display: grid; gap: .6rem; }
.cols3 li { display: flex; gap: .6rem; font-size: var(--fs-sm); color: var(--ink-muted); }
.cols3 li::before {
  content: ""; flex: none; width: 6px; height: 6px; margin-top: .55rem;
  border-radius: 50%; background: var(--accent);
}

/* --- Vorteilskacheln mit Icon --- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: .2s var(--ease);
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit__icon {
  width: 64px; height: 64px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  background: var(--navy-100); border-radius: 50%;
  overflow: hidden;
}
.benefit__icon img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.benefit__icon--line { background: var(--navy-900); color: var(--accent); }
.benefit__icon--line svg { width: 30px; height: 30px; }
.section--dark .benefit__icon--line { background: var(--accent); color: var(--navy-900); }
.benefit h3 { font-size: var(--fs-h4); margin-bottom: .5rem; }
.benefit p { font-size: var(--fs-sm); color: var(--ink-muted); }

/* --- Produkt-Highlight --- */
.highlight { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.highlight__flag {
  display: inline-block; margin-bottom: var(--sp-2);
  background: var(--accent); color: var(--navy-900);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--radius-pill);
}
.highlight h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.highlight__qa { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.highlight__qa > div {
  border-left: 3px solid rgba(255, 255, 255, .22); padding-left: 1.1rem;
}
.highlight__qa h3 { font-size: var(--fs-h4); color: var(--accent); margin-bottom: .35rem; }
.highlight__qa p { font-size: var(--fs-sm); color: var(--ink-onDark-muted); }
.highlight__media img { width: 100%; border-radius: var(--radius-lg); }
.highlight .hero__actions { margin-top: var(--sp-4); }

/* --- Preisblock --- */
.pricing { max-width: 900px; margin-inline: auto; text-align: center; }
.pricing__img {
  margin-top: var(--sp-4); border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden; background: #fff;
}
.pricing__img img { width: 100%; }
.pricing .hero__actions { justify-content: center; }

/* --- Kennzahlenband --- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); }
.statband div { background: var(--navy-800); padding: 1.6rem 1.25rem; text-align: center; }
.statband b { display: block; font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); color: var(--accent); line-height: 1.1; }
.statband span { display: block; margin-top: .35rem; font-size: var(--fs-sm); color: var(--ink-onDark-muted); }

/* --- Ablauf-Schritte --- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); counter-reset: flow; }
.flow article { position: relative; padding-top: var(--sp-4); }
.flow article::before {
  counter-increment: flow; content: counter(flow, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: 1.6rem; font-weight: 800; color: var(--accent-ink);
}
.flow article::after {
  content: ""; position: absolute; top: 12px; left: 44px; right: -12px; height: 2px;
  background: var(--line);
}
.flow article:last-child::after { display: none; }
.flow h3 { font-size: var(--fs-h4); margin-bottom: .45rem; }
.flow p { font-size: var(--fs-sm); color: var(--ink-muted); }

@media (max-width: 1180px) {
  .benefits, .cols3 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow article::after { display: none; }
  .statband { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split, .highlight { grid-template-columns: 1fr; }
  /* Einspaltig steht das Bild immer oben */
  .split__media, .split--flip .split__media { order: 0; }
}
@media (max-width: 640px) {
  .benefits, .cols3, .flow { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr; }
}

/* --- Auswahlkarten für die Terminseite --- */
.paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.path {
  display: flex; flex-direction: column;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 2rem 2.1rem 2.1rem;
  box-shadow: var(--shadow-sm);
}
.path h3 { font-size: var(--fs-h3); }
.path__sub { font-size: var(--fs-sm); font-weight: 700; color: var(--accent-ink); margin-top: .35rem; }
.path > p { font-size: var(--fs-sm); color: var(--ink-muted); margin-top: var(--sp-2); flex: 1; }
.path .btn { margin-top: var(--sp-3); align-self: flex-start; }
.path__tel {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: var(--sp-2);
  font-size: var(--fs-sm); font-weight: 700; color: var(--ink);
}
.path__tel:hover { color: var(--accent-ink); }
@media (max-width: 900px) { .paths { grid-template-columns: 1fr; } .path .btn { align-self: stretch; } }

/* =========================================================================
   30. Newsletter — Brevo-Formular an die Marke angepasst
   Struktur und Klassen kommen von Brevo, hier wird nur die Optik überschrieben.
   Brevo setzt vieles inline, deshalb sind !important nötig.
   ========================================================================= */
.newsletter__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start;
}
.newsletter h2 { font-size: var(--fs-h2); }
.newsletter__intro > p { margin-top: var(--sp-3); max-width: 56ch; }
.newsletter__gift { color: #fff !important; font-weight: 700; }
.newsletter__form { max-width: 540px; }

/* --- Rahmen des Brevo-Formulars --- */
.newsletter .sib-form { padding: 0 !important; text-align: left !important; }
.newsletter #sib-form-container { max-width: 540px; }
.newsletter #sib-container {
  background-color: transparent !important;
  max-width: none !important;
  text-align: left !important;
  padding: 0 !important;
}

/* --- Typografie auf die Hausschrift --- */
.newsletter #sib-form,
.newsletter #sib-form label,
.newsletter #sib-form span,
.newsletter #sib-form p,
.newsletter #sib-form input,
.newsletter #sib-form button { font-family: var(--font) !important; }

.newsletter .sib-text-form-block p {
  font-size: var(--fs-lead) !important;
  color: var(--ink-onDark-muted) !important;
  margin: 0 0 var(--sp-2);
}
.newsletter .entry__label { font-size: var(--fs-sm) !important; color: #fff !important; }
/* Pflichtfeld-Sternchen: kräftiges Rot erreicht auf Navy nur 3,7:1 */
.newsletter [data-required]::after { color: #ff8a80 !important; }

/* --- Eingabefelder --- */
.newsletter #sib-form .input {
  width: 100%;
  background: #fff !important; color: var(--ink) !important;
  border: 1.5px solid transparent !important; border-radius: var(--radius-sm) !important;
  padding: .20rem 1rem !important;
  font-size: var(--fs-body) !important;
}
.newsletter #sib-form .input:focus { border-color: var(--accent) !important; outline: 0; }

/* --- Kontrollkästchen --- */
.newsletter .entry__choice { margin-bottom: .35rem; }
.newsletter .checkbox__label span,
.newsletter .sib-optin span { color: var(--ink-onDark-muted) !important; }
.newsletter .sib-optin a, .newsletter #sib-container a {
  color: #fff !important; text-decoration: underline;
}
.newsletter .checkbox { border-color: rgba(255, 255, 255, .5) !important; }
.newsletter input:checked + .checkbox_tick_positive {
  background-color: var(--accent) !important; border-color: var(--accent) !important;
}

/* --- Absendeknopf im Stil der Website --- */
.newsletter .sib-form-block__button {
  background-color: var(--btn) !important; color: var(--btn-ink) !important;
  border-radius: var(--radius-pill) !important;
  padding: 1rem 1.9rem !important; min-height: 52px;
  font-size: var(--fs-sm) !important; font-weight: 700 !important;
  letter-spacing: 0; text-transform: none;
  box-shadow: 0 4px 12px rgba(27, 37, 55, .14);
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.newsletter .sib-form-block__button:hover {
  background-color: var(--btn-hover) !important; transform: translateY(-2px);
}

@media (max-width: 900px) {
  .newsletter__grid { grid-template-columns: 1fr; }
  .newsletter #sib-form-container { max-width: none; }
}

/* =========================================================================
   31. Kontaktseite
   ========================================================================= */
.contactpage {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start;
}
.contactpage h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.contactpage__addr { margin-top: var(--sp-3); font-size: 1.0625rem; color: var(--ink-muted); }
.contactpage__addr strong { color: var(--ink); }
.contactpage__info .hours { margin-top: var(--sp-4); }
.contactpage__info .arrival { margin-top: var(--sp-4); }
.contactpage__info .btn { margin-top: var(--sp-4); }

.contactpage__form {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.contactpage__lead { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--ink-muted); }

.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.cform textarea {
  width: 100%; font-family: inherit; font-size: var(--fs-body); color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; resize: vertical; min-height: 140px;
  transition: border-color .18s var(--ease);
}
.cform textarea:focus { border-color: var(--accent); outline: 0; }
.cform .field input:focus { border-color: var(--accent); }
.cform .req { color: #b3261e; }          /* 5,9:1 auf Weiß */
.cform .btn { margin-top: var(--sp-3); }
.cform__note { margin-top: var(--sp-2); font-size: var(--fs-xs); color: var(--ink-muted); }

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

/* =========================================================================
   32. Umzugs-Popup
   ========================================================================= */
.movedlg { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; }
.movedlg[hidden] { display: none; }
.movedlg__backdrop {
  position: absolute; inset: 0;
  background: rgba(27, 37, 55, .68);
  opacity: 0; transition: opacity .28s var(--ease);
}
.movedlg[data-open] .movedlg__backdrop { opacity: 1; }

.movedlg__box {
  position: relative;
  display: grid; grid-template-columns: 420px 1fr;
  width: min(94vw, 920px); max-height: 92vh; overflow: auto;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(14px) scale(.985);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.movedlg[data-open] .movedlg__box { opacity: 1; transform: none; }

.movedlg__media { background: var(--navy-900); }
.movedlg__media img { width: 100%; height: 100%; object-fit: cover; }

.movedlg__body { padding: clamp(1.6rem, 1rem + 2vw, 2.5rem); }
.movedlg__flag {
  display: inline-block; margin-bottom: var(--sp-2);
  background: var(--accent); color: #fff;
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--radius-pill);
}
.movedlg h2 { font-size: var(--fs-h3); }
.movedlg__body > p { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--ink-muted); }
.movedlg__addr {
  margin-top: var(--sp-3) !important; padding: .9rem 1.1rem;
  background: var(--bg-soft); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm); color: var(--ink) !important;
}
.movedlg__addr strong { display: inline-block; margin-bottom: .2rem; }
.movedlg__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: var(--sp-4); }
.movedlg__actions .btn { font-size: var(--fs-xs); padding: .8rem 1.3rem; min-height: 46px; }

.movedlg__close {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .9); color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.movedlg__close:hover { background: #fff; }

@media (max-width: 720px) {
  .movedlg__box { grid-template-columns: 1fr; width: min(94vw, 460px); }
  .movedlg__media { max-height: 200px; }
  .movedlg__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .movedlg__backdrop, .movedlg__box { transition: none; }
}

/* =========================================================================
   33. Übergabe-Modul zur Schwestermarke AS Fitness
        Bewusst ruhig gehalten: Es steht vor dem Termin-Band und darf
        diesem nicht die Aufmerksamkeit nehmen.
   ========================================================================= */
.club-sec { background: var(--bg-soft); }
.club {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); align-items: center;
}
.club__body { min-width: 0; }
.club__flag {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-ink);
}
.club__flag::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); flex: none;
}
.club h2 { font-size: var(--fs-h2); text-transform: uppercase; margin-top: .6rem; }
.club__lead {
  margin-top: var(--sp-2); font-size: var(--fs-lead);
  color: var(--ink-muted); max-width: 52ch;
}
.club__list { margin-top: var(--sp-3); display: grid; gap: .6rem; }
.club__list li { display: flex; gap: .65rem; align-items: flex-start; font-size: var(--fs-sm); }
.club__list svg { color: var(--accent-ink); flex: none; margin-top: 4px; }
.club__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.25rem; margin-top: var(--sp-4);
}
.club__more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-sm); font-weight: 700; color: var(--accent-ink);
}
.club__more svg { transition: transform .18s var(--ease); }
.club__more:hover svg { transform: translateX(3px); }

.club__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: #fff;
}
.club__media img {
  display: block; width: 100%; height: 100%;
  min-height: 320px; object-fit: cover;
}

@media (max-width: 900px) {
  .club { grid-template-columns: 1fr; }
  .club__media { order: -1; }
  .club__media img { min-height: 240px; }
}
