@charset "UTF-8";

/* =============================================================
   burn-it | just fitness — Designsystem
   -------------------------------------------------------------
   FARB-REGEL (60-30-10) — verbindlich für jede zukünftige Änderung.
   Quelle der Wahrheit für alle Farbentscheidungen.

     60 %  HINTERGRUND  (warmes Cream, ruhig, premium)
            → --color-bg, --color-surface, --color-surface-2
            Anwendung: body, .page-hero, section, .card, .container,
            sticky Header, helle Content-Flächen.

     30 %  SEKUNDÄRFARBE  (gedämpftes Sage — ganzheitlich, Trust)
            → --color-secondary, --color-secondary-dark, --color-secondary-soft
            Anwendung: Footer-Hintergrund, große dunkle CTA-Teaser,
            Section-Akzente, Pulse-Indikatoren, Sekundär-Buttons, große Icons,
            Headline-Highlights („Trust"-Signale, Health-Claims).

     10 %  AKZENT  (Bordeaux-Rot #BE1622 — burn-it CI)
            → --color-primary, --color-primary-dark, --color-primary-soft
            Anwendung: AUSSCHLIESSLICH Logo + Conversion-Buttons
            („Erstgespräch vereinbaren", aktive Nav-Items).
            Knaller-Farbe — sparsam einsetzen.

      < 5 % TERTIÄR-AKZENT  (Dusty Rose / Terracotta)
            → --color-accent, --color-accent-soft
            Anwendung: Badges, kleine Highlights, weiche Funken.

   Regeln für neue Komponenten:
   • Großflächige Hintergründe → IMMER aus 60 %- oder 30 %-Token.
   • Buttons mit Conversion-Intent (Erstgespräch) → .btn-primary (Rot).
   • Buttons mit Trust/Health-Intent → .btn-secondary (Sage).
   • Button-Form: Soft-Rechteck (--radius-sm), flache Fläche, kein Pill/Gloss.
   • Radien siteweit: sm 8 / md 10 / lg 12 / xl 16 — Pill nur Status-Badges.
   • Niemals großflächige rote Flächen — Rot ist Punkt-Akzent, nie Fläche.
   ============================================================= */

:root {
  /* ---------- 60 % | Hintergrund & Oberflächen ---------- */
  --color-bg:          #F7F2EB;   /* Warmes Cream */
  --color-surface:     #EFE8DC;   /* Sanfter Sektionsbruch */
  --color-surface-2:   #FBF7F2;   /* Hellere Cream — Nav-Pills, Card-BG */
  --color-bg-elevated: #FFFCFA;   /* Fast-Weiß — Cards, Modals */

  /* ---------- 30 % | Sekundärfarbe (Sage) ---------- */
  --color-secondary:        #6F7F64;
  --color-secondary-dark:   #556348;  /* Hover / Headlines */
  --color-secondary-soft:   #E8EBE3;  /* Weiche Banner-/Badge-Untergründe */
  --color-secondary-strong: #3D4638;  /* Footer-/Banner-Tiefen */
  --color-ink-deep:         #2C3329;  /* Dunkelster Sage-Charcoal */
  --color-ink-mid:          #3A4336;

  /* RGB-Kanäle für rgba() — keine Hex-Werte außerhalb von :root */
  --color-vital-rgb:   111, 127, 100;
  --color-primary-rgb: 190, 22, 34;
  --color-accent-rgb:  196, 120, 106;

  /* ---------- 10 % | Akzent (burn-it CI Bordeaux) ---------- */
  --color-primary:      #BE1622;
  --color-primary-dark: #7E0C18;
  --color-primary-soft: #F6E4E2;

  /* ---------- < 5 % | Tertiär-Akzent (Dusty Rose) ---------- */
  --color-accent:      #C4786A;
  --color-accent-soft: #F3E4DE;
  --color-accent-dark: #9A564C;

  /* ---------- Typografie & Neutraltöne ---------- */
  --color-text:          #2C2A28;
  --color-text-muted:    #6B6560;
  --color-text-subtle:   #8E877F;
  --color-border:        #E4DCD0;
  --color-border-strong: #D3C8B8;

  /* ---------- Schriften ---------- */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ---------- Radien & Easing ----------
     Architectural soft — professionell, studio-tauglich:
     sm  Controls/Buttons  · md  kompakt  · lg  Media/Cards  · xl  große Panels
     pill nur für echte Status-/Discount-Pills (nicht für CTAs/Container) */
  --radius-sm:   8px;
  --radius-md:  10px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-pill: 999px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  /* ---------- Schatten ---------- */
  --shadow-sm:     0 2px 8px rgba(44, 42, 40, 0.05);
  --shadow-md:     0 10px 28px rgba(44, 42, 40, 0.08);
  --shadow-lg:     0 20px 52px rgba(44, 42, 40, 0.12);
  --shadow-accent: 0 8px 22px rgba(var(--color-primary-rgb), 0.28);
  --shadow-vital:  0 8px 22px rgba(var(--color-vital-rgb), 0.28);
  --shadow-orange: var(--shadow-accent);                  /* Legacy-Alias */
}

/* =============================================================
   BASE — 60 % Hintergrund-Layer (body, Typografie, Links)
   ============================================================= */

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.85rem); font-weight: 500; letter-spacing: -0.018em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { margin: 0 0 1em; }

/* Links: per Default in Sekundärfarbe (30 %), Hover schaltet auf 10 %-Akzent */
a {
  color: var(--color-secondary-dark);
  text-decoration-color: rgba(var(--color-vital-rgb), 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
a:hover { color: var(--color-primary); text-decoration-color: var(--color-primary); }

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

/* Layout-Helfer */
.container { width: min(1180px, 92vw); margin: 0 auto; }
section    { padding: clamp(48px, 8vw, 96px) 0; }
/* Unterhalb des Folds: Rendering erst bei Bedarf — flüssigeres Scrollen */
.section:not(.hero):not(.page-hero):not(.section--tariffs):not(.section--tariffs-follow):not(.section--has-embed):not(.reviews) {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}
.section--after-hero {
  padding-top: clamp(20px, 3vw, 36px);
}
.section--kontakt {
  padding-top: clamp(20px, 3vw, 36px);
}
.section--tight-bottom {
  padding-bottom: clamp(16px, 2.5vw, 28px);
}
.section--tight-top {
  padding-top: clamp(16px, 2.5vw, 28px);
}
.section.reviews {
  padding-top: clamp(12px, 2vw, 24px);
  padding-bottom: clamp(28px, 4vw, 48px);
}
.section-header--tight {
  margin-bottom: clamp(12px, 1.5vw, 18px);
}
.section-header--hero .eyebrow {
  display: block;
  margin-bottom: 10px;
}
.section-header--hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 3.85rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  color: var(--color-text);
}
.section-header--hero p {
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  line-height: 1.6;
  max-width: none;
  color: var(--color-text-muted);
}
.section-header--hero p strong {
  color: var(--color-text);
  font-weight: 600;
}
.coaches-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin: 0 0 clamp(8px, 1.2vw, 14px);
}
.coaches-intro__copy {
  margin: 0;
  max-width: none;
  width: auto;
  min-width: 0;
}
.coaches-intro__award {
  margin: 0;
  flex-shrink: 0;
  width: clamp(110px, 16vw, 168px);
}
.coaches-intro__award img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}
/* Profil direkt unter Intro — ohne Extra-Section-Abstand */
.coaches-profile {
  margin-top: clamp(10px, 1.5vw, 18px);
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--color-border);
}
.coach-contact {
  margin: 18px 0 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.coach-contact__btn {
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--color-bg-elevated);
  border-color: color-mix(in srgb, var(--color-text) 16%, transparent);
  color: var(--color-text);
  box-shadow: none;
}
.coach-contact__btn:hover {
  background: #fff;
  color: var(--color-text);
  border-color: color-mix(in srgb, var(--color-text) 35%, transparent);
  box-shadow: 0 4px 14px rgba(44, 42, 40, 0.08);
}
/* KI-Transparenzhinweis an Coach-Porträts (Art. 50 KI-VO) */
.media-ai-note {
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  max-width: 36ch;
}
.media-ai-note--ltr {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 880px) {
  .media-ai-note,
  .media-ai-note--ltr {
    margin-left: 0;
    text-align: left;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .coaches-intro {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .coaches-intro__award {
    width: clamp(96px, 28vw, 132px);
  }
}

/* 60 %-Varianten */
.section--bg      { background: var(--color-bg); }
.section--surface { background: var(--color-surface); }

/* 30 %-Sektion (Sage, dunkel) — für Health-Teaser, Footer-Lookalikes */
.section--secondary {
  background:
    radial-gradient(circle at 85% 12%, rgba(var(--color-vital-rgb), 0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-ink-deep) 0%, var(--color-ink-mid) 55%, var(--color-secondary-strong) 100%);
  color: #fff;
}
.section--secondary h1,
.section--secondary h2,
.section--secondary h3 { color: #fff; }
.section--secondary p  { color: rgba(255, 255, 255, 0.92); }
.section--secondary a  { color: #fff; text-decoration-color: rgba(255, 255, 255, 0.5); }
.section--secondary a:hover { color: var(--color-accent); text-decoration-color: var(--color-accent); }

/* =============================================================
   BUTTONS — klare Rollenzuweisung pro 60-30-10 + Plastik-Tiefe
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  box-shadow: none;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1.15;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: none;
}

/* 10 %-Akzent — Conversion-CTA („Anmeldung", „Kontakt", „Online beitreten") */
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 1px 2px rgba(var(--color-primary-rgb), 0.18);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.22);
}

/* 30 %-Sekundär — Trust-/Health-Button („Probetraining", „Beratung") */
.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  box-shadow: 0 1px 2px rgba(var(--color-vital-rgb), 0.16);
}
.btn-secondary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--color-vital-rgb), 0.2);
}

/* Ghost — neutrale Sekundär-Aktion auf hellem Hintergrund */
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-strong);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--color-bg-elevated);
  border-color: var(--color-text);
  color: var(--color-text);
  box-shadow: 0 4px 14px rgba(44, 42, 40, 0.08);
}

/* Light — auf farbigem (i. d. R. grünem) Hintergrund eingesetzt */
.btn-light {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 2px rgba(44, 42, 40, 0.08);
}
.btn-light:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
  box-shadow: 0 6px 18px rgba(44, 42, 40, 0.12);
}

/* Klein-Variante & Pfeil-Suffix */
.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}
.btn-arrow::after {
  content: '→';
  font-weight: 700;
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:active {
    transform: none;
  }
}

/* =============================================================
   HEADER & NAV — 60 %-Layer + 10 %-Rot nur für Aktiv/CTA
   ============================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}
.site-header .nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.site-header .nav a {
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.site-header .nav a:hover    { background: var(--color-surface); color: var(--color-primary); }
.site-header .nav a.is-active{ color: var(--color-primary); font-weight: 600; }

/* =============================================================
   FOOTER — 30 %-Rolle: großer, dunkler Sage-Layer
   ============================================================= */

.site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--color-vital-rgb), 0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-ink-deep) 0%, var(--color-ink-mid) 60%, var(--color-secondary-strong) 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 64px 0 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 1rem; letter-spacing: 0.02em; }
.site-footer a  { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }

/* Flammen-Hintergrund — 3 Kacheln à ~40 % Breite, leicht überlappend;
   gleicher Seitenverlauf an jeder Kachel → weicher Übergang wie ein Bild. */
.site-footer__fire {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: clamp(96px, 36%, 168px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.42;
}
.site-footer__fire-tile {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  display: block;
  overflow: hidden;
  background-image: var(--footer-fire-image);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.site-footer__fire-tile:nth-child(1) { left: 0; }
.site-footer__fire-tile:nth-child(2) { left: 30%; }
.site-footer__fire-tile:nth-child(3) { left: 60%; }
.site-footer--fire > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  /* Bild ist 960×527 — nicht auf Footer-Höhe strecken (sonst wirken die Flammen wie Grashalme). */
  .site-footer__fire {
    top: auto;
    bottom: 0;
    height: min(55vw, 280px);
  }
  .site-footer__fire-tile {
    background-size: cover;
    background-position: center bottom;
  }
}
@media (max-width: 700px) {
  .site-footer__fire {
    opacity: 0.34;
  }
  .site-footer__fire-tile {
    width: 58%;
  }
  .site-footer__fire-tile:nth-child(1) { left: 0; }
  .site-footer__fire-tile:nth-child(2) { left: 42%; }
  .site-footer__fire-tile:nth-child(3) { display: none; }
}

/* =============================================================
   LAYOUT-KOMPONENTEN
   60-30-10 wird durch Token-Wahl je Komponente eingehalten.
   ============================================================= */

/* ---------- NAV-Brand & Mobile-Toggle ---------- */
.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.nav-brand:hover { transform: scale(1.03); }
.nav-brand__logo {
  height: clamp(52px, 5.2vw, 68px);
  width: auto;
  max-width: min(300px, 42vw);
}

/* Hamburger-Toggle: Default versteckt (Desktop), wird ab 980px sichtbar.
   Drei Bars liegen vertikal gestapelt und animieren beim Öffnen zu einem „X". */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  height: 44px;
  padding: 0 14px 0 12px;
  color: var(--color-text);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-toggle:hover { background: var(--color-surface-2); }
.nav-toggle:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.nav-toggle__icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transform-origin: 50% 50%;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__label { line-height: 1; }
/* Hamburger → X bei geöffnetem Menü */
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-list { flex-wrap: wrap; }
.nav-list a.is-active { background: var(--color-primary-soft); }
.nav-cta { margin-left: 4px; }
.site-header .nav .nav-cta .btn-primary {
  color: #fff;
  font-weight: 600;
}
.site-header .nav .nav-cta .btn-primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Backdrop hinter dem geöffneten Mobile-Menü — auf Desktop unsichtbar/inactive */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 24, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 40;
}

@media (max-width: 980px) {
  .site-header .nav { gap: 12px; padding: 8px 0; position: relative; z-index: 71; }
  .nav-brand__logo { height: 48px; max-width: 220px; }

  .nav-toggle { display: inline-flex; }

  /* Nav-Liste wird als Dropdown unterhalb des Headers gerendert — nicht mehr im
     Header-Flow. Damit bleibt der obere Balken kompakt und übersichtlich.
     Selektor bewusst spezifisch (`.site-header .nav ul.nav-list`), damit die
     Basis-Regel `.site-header .nav ul { display: flex }` (Specificity 0,2,1)
     überschrieben wird. */
  .site-header .nav ul.nav-list {
    position: fixed;
    top: var(--nav-panel-top, 72px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px 16px 16px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 16px 32px -16px rgba(10, 31, 24, 0.18);
    display: none;
    z-index: 70;
    transform-origin: top center;
    max-height: min(78dvh, calc(100dvh - var(--nav-panel-top, 72px) - env(safe-area-inset-bottom, 0px)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header .nav ul.nav-list.is-open { display: flex; }
  .site-header .nav ul.nav-list > li { width: 100%; }
  .site-header .nav ul.nav-list a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
  .site-header .nav ul.nav-list a.is-active { background: var(--color-primary-soft); }
  .site-header .nav ul.nav-list .nav-cta { margin: 4px 0 0; }
  .site-header .nav ul.nav-list .nav-cta .btn { width: 100%; justify-content: center; min-height: 44px; }
  .site-header .nav ul.nav-list .nav-self__link { width: 100%; justify-content: flex-start; }

  /* Backdrop aktiv schalten, wenn Menü offen — kein Layout-Shift dahinter. */
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
    z-index: 65;
    top: var(--nav-panel-top, 72px);
  }
  /* Overflow:hidden auf body hebt sticky auf — Header + Panel daher viewport-fest. */
  body.nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 80;
    background: var(--color-bg);
  }
  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  html.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  /* CTA-Bar darf geöffnetes Menü nicht überdecken */
  body.nav-open .mobile-cta-bar {
    visibility: hidden;
    pointer-events: none;
    transform: translateY(110%);
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }
}

/* ---------- HERO (Startseite) ---------- */
.hero {
  position: relative;
  padding: clamp(12px, 2vw, 24px) 0 clamp(24px, 3.5vw, 44px);
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--color-vital-rgb), 0.14) 0%, transparent 52%),
    radial-gradient(circle at 8% 92%, rgba(var(--color-accent-rgb), 0.10) 0%, transparent 42%),
    var(--color-bg);
  overflow: hidden;
  --editorial-fade: var(--color-bg);
}
/* Option A — atmosphärischer Spiegel links (balanciert Bild-Bleed rechts) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 72% at -6% 38%, rgba(var(--color-vital-rgb), 0.20) 0%, transparent 62%),
    radial-gradient(ellipse 42% 48% at 4% 92%, rgba(var(--color-accent-rgb), 0.14) 0%, transparent 54%),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-surface) 42%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-bg-elevated) 18%, transparent) 18%,
      transparent 34%
    );
}
/* Option B — Editorial-Watermark: großes Logo, unter dem Text ausblendend wie das Bild */
.hero__inner--editorial .hero__watermark {
  position: absolute;
  left: calc((100% - 100vw) / 2);
  width: 72%;
  top: 0;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(10px, 1.8vw, 26px);
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.hero__inner--editorial .hero__watermark::after {
  content: "";
  position: absolute;
  inset: -4% 0;
  z-index: 1;
  pointer-events: none;
  /* Nur am rechten Rand abdunkeln — unter dem Text Logo sichtbar lassen */
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 70%,
    color-mix(in srgb, var(--editorial-fade) 18%, transparent) 82%,
    color-mix(in srgb, var(--editorial-fade) 42%, transparent) 93%
  );
}
.hero__watermark-logo {
  position: relative;
  z-index: 0;
  width: clamp(920px, 72vw, 1480px);
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.085;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.9) 56%,
    rgba(0, 0, 0, 0.68) 68%,
    rgba(0, 0, 0, 0.42) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.9) 56%,
    rgba(0, 0, 0, 0.68) 68%,
    rgba(0, 0, 0, 0.42) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    transparent 100%
  );
}
@media (max-width: 1240px) {
  .hero__inner--editorial .hero__watermark { display: none; }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero__inner--editorial {
  gap: clamp(4px, 1vw, 12px);
  align-items: stretch;
}
.hero__inner--editorial .hero__copy {
  position: relative;
  z-index: 2;
}
.hero__inner--editorial .hero__visual {
  min-height: 0;
  align-self: stretch;
}
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-self: stretch;
}
.hero__inner--editorial .hero__visual::before {
  display: none;
}
.hero__copy {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.hero__copy .eyebrow { margin-bottom: 8px; }
.hero__copy h1 { margin-bottom: 14px; }
.hero__lead { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--color-text-muted); max-width: 52ch; }

/* ---------- EDITORIAL SPLIT — fließender Bildübergang ---------- */
.editorial-split__figure {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
}
.editorial-split__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 50%;
  display: block;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 16%,
    rgba(0, 0, 0, 0.38) 30%,
    rgba(0, 0, 0, 0.72) 44%,
    #000 58%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 16%,
    rgba(0, 0, 0, 0.38) 30%,
    rgba(0, 0, 0, 0.72) 44%,
    #000 58%
  );
}
.editorial-split__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Nur seitlich in den Text überblenden — kein Cream oben/unten, sonst wirkt das Foto beschnitten */
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--editorial-fade) 50%, transparent) 10%,
    color-mix(in srgb, var(--editorial-fade) 82%, transparent) 24%,
    color-mix(in srgb, var(--editorial-fade) 48%, transparent) 40%,
    color-mix(in srgb, var(--editorial-fade) 16%, transparent) 54%,
    transparent 68%
  );
}
@media (min-width: 881px) {
  .hero__inner--editorial .hero__visual {
    margin-right: calc((100vw - min(1180px, 92vw)) / -2);
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
  }
  .hero__inner--editorial .editorial-split__figure {
    flex: 1 1 auto;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    width: calc(100% + clamp(120px, 14vw, 220px));
    margin-left: calc(-1 * clamp(120px, 14vw, 220px));
  }
  .hero__inner--editorial .editorial-split__figure picture {
    position: absolute;
    inset: 0;
    display: block;
  }
  .hero__inner--editorial .editorial-split__figure img {
    position: absolute;
    inset: 0;
  }
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; align-items: start; }
  .hero__inner--editorial .hero__visual {
    margin-right: 0;
    pointer-events: auto;
  }
  .hero__inner--editorial .editorial-split__figure {
    width: auto;
    margin-left: 0;
  }
  .editorial-split__figure {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .editorial-split__figure img {
    min-height: 0;
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 52%,
      rgba(0, 0, 0, 0.55) 72%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 52%,
      rgba(0, 0, 0, 0.55) 72%,
      transparent 100%
    );
  }
  .editorial-split__fade {
    background:
      linear-gradient(
        180deg,
        transparent 48%,
        color-mix(in srgb, var(--editorial-fade) 35%, transparent) 68%,
        color-mix(in srgb, var(--editorial-fade) 70%, transparent) 88%,
        transparent 100%
      ),
      linear-gradient(
        90deg,
        transparent 0%,
        color-mix(in srgb, var(--editorial-fade) 28%, transparent) 8%,
        transparent 20%
      );
  }
}

/* Editorial-Split — Section-Varianten */
.section--editorial {
  overflow: hidden;
}
.section--editorial.section--surface {
  --editorial-fade: var(--color-surface);
}
.section--editorial-cream {
  --editorial-fade: var(--color-bg);
}
/* Aufeinanderfolgende Editorial-Blöcke: kein doppeltes Section-Padding */
.section--editorial + .section--editorial {
  padding-top: clamp(16px, 2.5vw, 28px);
}
.section--editorial:has(+ .section--editorial) {
  padding-bottom: clamp(16px, 2.5vw, 28px);
}
.section--editorial:has(+ .reviews) {
  padding-bottom: clamp(12px, 2vw, 24px);
}
.editorial-split {
  display: grid;
  gap: clamp(4px, 1vw, 12px);
  align-items: start;
  position: relative;
}
.editorial-split__copy {
  position: relative;
  z-index: 2;
}
.editorial-split__lead {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}
.editorial-split__trust {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 16px 0 0;
}
.editorial-split__note {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  margin: 14px 0 0;
}
.studio-address-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}
.studio-address-link:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}
.studio-address-link--inline {
  text-underline-offset: 0.12em;
}
.footer-address__link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-style: normal;
}
.footer-address__link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.editorial-split__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: start;
}
/* LTR — Text links · Bild rechts (wie Hero) */
.editorial-split--ltr {
  grid-template-columns: 1.05fr 0.95fr;
}
.editorial-split--stacked {
  margin-top: clamp(40px, 6vw, 72px);
}
.section--editorial .seca-showcase {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--color-border);
}
/* Reverse — Bild links · Text rechts (wie Hyrox) */
.editorial-split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
/* Bildhöhe folgt Textspalte — verhindert „Durchschneiden“ des CTAs */
@media (min-width: 881px) {
  .editorial-split--match-copy {
    align-items: stretch;
  }
  .editorial-split--match-copy .editorial-split__visual {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }
  .editorial-split--match-copy .editorial-split__figure {
    flex: 1 1 auto;
    aspect-ratio: auto;
    min-height: 0;
  }
  /* Coach-Porträts: Unterkante fluchtet mit WhatsApp-Button-Unterkante */
  .editorial-split--match-copy.coaches-profile .editorial-split__figure {
    height: 100%;
  }
  .editorial-split--match-copy.coaches-profile .editorial-split__figure picture {
    position: absolute;
    inset: 0;
    display: block;
  }
  .editorial-split--match-copy.coaches-profile .media-ai-note {
    position: absolute;
    left: 0;
    bottom: 8px;
    margin: 0;
    z-index: 2;
  }
  .editorial-split--match-copy.coaches-profile .media-ai-note--ltr {
    left: auto;
    right: 0;
  }
}
.editorial-split--reverse .editorial-split__figure img {
  object-position: 50% 48%;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 54%,
    rgba(0, 0, 0, 0.72) 66%,
    rgba(0, 0, 0, 0.38) 78%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 54%,
    rgba(0, 0, 0, 0.72) 66%,
    rgba(0, 0, 0, 0.38) 78%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
}
/* Coach Birgit — Querporträt, Höhe folgt gesamtem Fachtext inkl. CTA, Verlauf nur nach rechts */
.editorial-split--reverse.editorial-split--coach-birgit .editorial-split__figure {
  aspect-ratio: 3 / 2;
}
@media (min-width: 881px) {
  .editorial-split--match-copy.editorial-split--coach-birgit .editorial-split__figure {
    aspect-ratio: auto;
  }
  .editorial-split--match-copy.editorial-split--coach-birgit .editorial-split__figure img,
  .editorial-split--match-copy.editorial-split--coach-birgit .editorial-split__figure--wide img {
    /* Unterkante am Text; Kopf oben halten */
    object-position: left top;
  }
}
.editorial-split--reverse.editorial-split--coach-birgit .editorial-split__figure img,
.editorial-split--reverse.editorial-split--coach-birgit .editorial-split__figure--wide img {
  object-fit: cover;
  object-position: left center;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.75) 64%,
    rgba(0, 0, 0, 0.4) 78%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.75) 64%,
    rgba(0, 0, 0, 0.4) 78%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
}
.editorial-split--reverse.editorial-split--coach-birgit .editorial-split__fade {
  background: linear-gradient(
    90deg,
    transparent 46%,
    color-mix(in srgb, var(--editorial-fade) 10%, transparent) 56%,
    color-mix(in srgb, var(--editorial-fade) 40%, transparent) 68%,
    color-mix(in srgb, var(--editorial-fade) 78%, transparent) 82%,
    color-mix(in srgb, var(--editorial-fade) 42%, transparent) 94%,
    transparent 100%
  );
}
/* Coach Daniel — Spiegel zu Birgit: Motiv rechts, Verlauf nach links, Höhe = Text */
.editorial-split--ltr.editorial-split--coach-daniel .editorial-split__figure {
  aspect-ratio: 3 / 2;
}
@media (min-width: 881px) {
  .editorial-split--match-copy.editorial-split--coach-daniel .editorial-split__figure {
    aspect-ratio: auto;
  }
  .editorial-split--match-copy.editorial-split--coach-daniel .editorial-split__figure img,
  .editorial-split--match-copy.editorial-split--coach-daniel .editorial-split__figure--wide img {
    object-position: right top;
  }
}
.editorial-split--ltr.editorial-split--coach-daniel .editorial-split__figure img,
.editorial-split--ltr.editorial-split--coach-daniel .editorial-split__figure--wide img {
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.4) 22%,
    rgba(0, 0, 0, 0.75) 36%,
    #000 48%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.4) 22%,
    rgba(0, 0, 0, 0.75) 36%,
    #000 48%,
    #000 100%
  );
}
.editorial-split--ltr.editorial-split--coach-daniel .editorial-split__fade {
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--editorial-fade) 40%, transparent) 5%,
    var(--editorial-fade) 12%,
    color-mix(in srgb, var(--editorial-fade) 82%, transparent) 22%,
    color-mix(in srgb, var(--editorial-fade) 40%, transparent) 32%,
    color-mix(in srgb, var(--editorial-fade) 10%, transparent) 44%,
    transparent 54%
  );
}
.editorial-split--reverse .editorial-split__figure--wide img {
  object-fit: cover;
  object-position: 28% 50%;
}
.editorial-split--reverse .editorial-split__fade {
  background: linear-gradient(
    90deg,
    transparent 42%,
    color-mix(in srgb, var(--editorial-fade) 10%, transparent) 52%,
    color-mix(in srgb, var(--editorial-fade) 38%, transparent) 60%,
    color-mix(in srgb, var(--editorial-fade) 72%, transparent) 70%,
    color-mix(in srgb, var(--editorial-fade) 55%, transparent) 84%,
    color-mix(in srgb, var(--editorial-fade) 18%, transparent) 94%,
    transparent 100%
  );
}
/* Watermark rechts — Spiegel des Hero-Logos */
.editorial-split--reverse .editorial-split__watermark {
  position: absolute;
  right: calc((100% - 100vw) / 2);
  width: 72%;
  top: 0;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(10px, 1.8vw, 26px);
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.editorial-split--reverse .editorial-split__watermark::after {
  content: "";
  position: absolute;
  inset: -4% 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    transparent 0%,
    transparent 74%,
    color-mix(in srgb, var(--editorial-fade) 14%, transparent) 86%,
    color-mix(in srgb, var(--editorial-fade) 32%, transparent) 96%
  );
}
.editorial-split--reverse .editorial-split__watermark .hero__watermark-logo {
  width: clamp(880px, 68vw, 1420px);
  opacity: 0.052;
  -webkit-mask-image: linear-gradient(
    270deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.82) 50%,
    rgba(0, 0, 0, 0.52) 64%,
    rgba(0, 0, 0, 0.22) 78%,
    rgba(0, 0, 0, 0.08) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    270deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.82) 50%,
    rgba(0, 0, 0, 0.52) 64%,
    rgba(0, 0, 0, 0.22) 78%,
    rgba(0, 0, 0, 0.08) 90%,
    transparent 100%
  );
}
/* PRIVATE-TRAINING®-Marke als Watermark (schwarzes PNG) */
.editorial-split--reverse .editorial-split__watermark .hero__watermark-logo--pt,
.editorial-split--ltr .editorial-split__watermark .hero__watermark-logo--pt {
  opacity: 0.08;
  mix-blend-mode: normal;
}
@media (max-width: 1240px) {
  .editorial-split--reverse .editorial-split__watermark { display: none; }
  .editorial-split--ltr .editorial-split__watermark { display: none; }
}
/* Watermark links — LTR-Sections (Team, analog Hero) */
.editorial-split--ltr .editorial-split__watermark {
  position: absolute;
  left: calc((100% - 100vw) / 2);
  width: 72%;
  top: 0;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(10px, 1.8vw, 26px);
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.editorial-split--ltr .editorial-split__watermark::after {
  content: "";
  position: absolute;
  inset: -4% 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 70%,
    color-mix(in srgb, var(--editorial-fade) 18%, transparent) 82%,
    color-mix(in srgb, var(--editorial-fade) 42%, transparent) 93%
  );
}
.editorial-split--ltr .editorial-split__watermark .hero__watermark-logo {
  opacity: 0.065;
}
@media (min-width: 881px) {
  .editorial-split--reverse,
  .editorial-split--ltr {
    align-items: stretch;
  }
  .editorial-split--reverse .editorial-split__visual {
    margin-left: calc((100vw - min(1180px, 92vw)) / -2);
    z-index: 0;
    pointer-events: none;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .editorial-split--reverse .editorial-split__figure {
    flex: 1 1 auto;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    width: calc(100% + clamp(120px, 14vw, 220px));
    margin-right: calc(-1 * clamp(120px, 14vw, 220px));
  }
  .editorial-split--match-copy.editorial-split--reverse .editorial-split__figure {
    aspect-ratio: auto;
  }
  .editorial-split--reverse .editorial-split__figure img {
    position: absolute;
    inset: 0;
  }
  .editorial-split--ltr .editorial-split__visual {
    margin-right: calc((100vw - min(1180px, 92vw)) / -2);
    z-index: 0;
    pointer-events: none;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .editorial-split--ltr .editorial-split__figure {
    flex: 1 1 auto;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
    width: calc(100% + clamp(120px, 14vw, 220px));
    margin-left: calc(-1 * clamp(120px, 14vw, 220px));
  }
  .editorial-split--ltr.editorial-split--portrait .editorial-split__figure {
    width: calc(100% + clamp(120px, 14vw, 220px));
    margin-left: calc(-1 * clamp(120px, 14vw, 220px));
  }
  .editorial-split--ltr.editorial-split--coach-daniel .editorial-split__figure {
    width: calc(100% + clamp(120px, 14vw, 220px));
    margin-left: calc(-1 * clamp(120px, 14vw, 220px));
  }
  .editorial-split--match-copy.editorial-split--coach-daniel .editorial-split__figure {
    aspect-ratio: auto;
  }
  .editorial-split--reverse.editorial-split--coach-birgit .editorial-split__figure {
    width: calc(100% + clamp(120px, 14vw, 220px));
    margin-right: calc(-1 * clamp(120px, 14vw, 220px));
  }
  .editorial-split--match-copy.editorial-split--coach-birgit .editorial-split__figure {
    aspect-ratio: auto;
  }
  .hero__inner--editorial .editorial-split__figure picture,
  .editorial-split--ltr .editorial-split__figure picture,
  .editorial-split--reverse .editorial-split__figure picture {
    position: absolute;
    inset: 0;
    display: block;
  }
  .editorial-split--ltr .editorial-split__figure img {
    position: absolute;
    inset: 0;
  }
  .editorial-split--portrait .editorial-split__figure img {
    object-position: 50% 12%;
  }
  /* Porträt LTR: Daniel — Fade links, Gesicht im Fokus */
  .editorial-split--ltr.editorial-split--portrait .editorial-split__figure img {
    object-position: 52% 16%;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 4%,
      rgba(0, 0, 0, 0.7) 10%,
      #000 18%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 4%,
      rgba(0, 0, 0, 0.7) 10%,
      #000 18%
    );
  }
  .editorial-split--ltr.editorial-split--portrait .editorial-split__fade {
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--editorial-fade) 45%, transparent) 4%,
      color-mix(in srgb, var(--editorial-fade) 70%, transparent) 10%,
      color-mix(in srgb, var(--editorial-fade) 25%, transparent) 16%,
      transparent 24%
    );
  }
}
@media (max-width: 880px) {
  .editorial-split {
    grid-template-columns: 1fr;
  }
  .editorial-split--reverse .editorial-split__visual {
    margin-left: 0;
    pointer-events: auto;
  }
  .editorial-split--reverse .editorial-split__figure {
    width: auto;
    margin-right: 0;
  }
  .editorial-split--ltr .editorial-split__visual {
    margin-right: 0;
    pointer-events: auto;
  }
  .editorial-split--ltr .editorial-split__figure {
    width: auto;
    margin-left: 0;
  }
  .editorial-split--portrait .editorial-split__figure {
    aspect-ratio: 16 / 10;
  }
  .editorial-split--reverse.editorial-split--coach-birgit .editorial-split__figure {
    aspect-ratio: 3 / 2;
  }
  .editorial-split--ltr.editorial-split--coach-daniel .editorial-split__figure {
    aspect-ratio: 3 / 2;
  }
  .editorial-split--ltr.editorial-split--portrait .editorial-split__figure img {
    object-position: 44% 22%;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.55) 75%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.55) 75%,
      transparent 100%
    );
  }
  .editorial-split--reverse .editorial-split__fade {
    background:
      linear-gradient(
        180deg,
        transparent 48%,
        color-mix(in srgb, var(--editorial-fade) 35%, transparent) 68%,
        color-mix(in srgb, var(--editorial-fade) 70%, transparent) 88%,
        transparent 100%
      ),
      linear-gradient(
        270deg,
        transparent 0%,
        color-mix(in srgb, var(--editorial-fade) 28%, transparent) 8%,
        transparent 20%
      );
  }
  .editorial-split--reverse.editorial-split--coach-birgit .editorial-split__fade {
    background: linear-gradient(
      180deg,
      transparent 58%,
      color-mix(in srgb, var(--editorial-fade) 35%, transparent) 80%,
      color-mix(in srgb, var(--editorial-fade) 40%, transparent) 94%,
      transparent 100%
    );
  }
  .editorial-split--ltr.editorial-split--coach-daniel .editorial-split__fade {
    background: linear-gradient(
      180deg,
      transparent 58%,
      color-mix(in srgb, var(--editorial-fade) 35%, transparent) 80%,
      color-mix(in srgb, var(--editorial-fade) 40%, transparent) 94%,
      transparent 100%
    );
  }
}

/* ---------- HERO-PATH (3 gleichwertige Schritte, volle Breite) ---------- */
.hero-path {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  position: relative;
  z-index: 1;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.hero-path__step {
  position: relative;
  text-align: center;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-path__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 28px);
  width: calc(100% - 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-border) 100%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-path__num {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--color-bg-elevated);
}
.hero-path__title {
  display: block;
  font-size: 1.02rem;
  color: var(--color-text);
  line-height: 1.25;
}
.hero-path__text {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 32ch;
}
.hero-path__text strong { color: var(--color-text); font-weight: 600; }
@media (max-width: 780px) {
  .hero-path {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
  .hero-path__step {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: left;
    gap: 10px 14px;
    padding: 0;
  }
  .hero-path__step:not(:last-child)::after {
    display: none;
  }
  .hero-path__num { flex-shrink: 0; }
  .hero-path__title { flex: 1; padding-top: 6px; }
  .hero-path__text {
    flex: 1 1 100%;
    padding-left: 50px;
    max-width: none;
  }
}

/* ---------- PAGE-HERO (Unterseiten) ---------- */
.page-hero {
  padding: clamp(16px, 2.5vw, 32px) 0 clamp(20px, 3vw, 36px);
  background: var(--color-surface);
}
.page-hero--brand {
  background:
    radial-gradient(circle at 85% 15%, rgba(var(--color-vital-rgb), 0.10) 0%, transparent 50%),
    var(--color-surface);
}
.page-hero--studio {
  padding-bottom: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(var(--color-primary-rgb), 0.07) 0%, transparent 55%),
    radial-gradient(circle at 92% 18%, rgba(var(--color-vital-rgb), 0.12) 0%, transparent 48%),
    var(--color-surface);
}
.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: end;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}
.studio-hero__copy {
  min-width: 0;
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.page-hero--studio .page-hero__lead {
  max-width: 42ch;
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  color: var(--color-text-muted);
  margin: 0;
}
.page-hero--studio h1 {
  margin-bottom: 12px;
}
.studio-hero__visual {
  min-width: 0;
  width: 100%;
  max-width: min(100%, 760px);
  justify-self: stretch;
  align-self: end;
}
.studio-hero__figure {
  position: relative;
  margin: 0;
  width: 100%;
  background: #0a0a0a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(var(--color-primary-rgb), 0.07),
    0 0 0 1px rgba(var(--color-primary-rgb), 0.06);
}
.studio-hero__player {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0a;
  vertical-align: middle;
}
.studio-hero__sound {
  position: absolute;
  right: 12px;
  bottom: 52px;
  z-index: 3;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: rgba(20, 20, 20, 0.78);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.studio-hero__sound:hover {
  background: var(--color-primary);
}
.studio-hero__sound[hidden] {
  display: none !important;
}
.stats-bar--hero {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  border-color: color-mix(in srgb, var(--color-border) 70%, transparent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    var(--shadow-sm);
}
.stats-bar--compact {
  gap: clamp(10px, 1.5vw, 16px);
  padding: clamp(14px, 1.8vw, 20px) clamp(12px, 1.6vw, 18px);
}
.stats-bar--compact .stat-item .num {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}
.stats-bar--compact .stat-item .label {
  font-size: 0.8rem;
}
.stats-bar--compact .stat-item__hint {
  font-size: 0.72rem;
  margin-top: 4px;
  max-width: 16ch;
}
.stats-bar--hero .stat-item:nth-child(3) .num,
.stats-bar--hero .stat-item:nth-child(4) .num {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  letter-spacing: -0.02em;
}
.stat-item__hint {
  margin: 6px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  max-width: 18ch;
  margin-inline: auto;
}
@media (max-width: 880px) {
  .studio-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .studio-hero__visual {
    max-width: min(100%, 720px);
    justify-self: stretch;
  }
  .page-hero--studio .page-hero__lead {
    max-width: none;
  }
}

/* Tarif-Hero: gleiches Kapitel-Muster wie Galerie, Video im DOM zuerst (Mobile = oben). */
.tarif-hero {
  align-items: start;
  margin-bottom: 0;
}
.tarif-hero__copy {
  min-width: 0;
  width: 100%;
}
.tarif-hero__visual {
  min-width: 0;
  width: 100%;
  max-width: none;
}
.tarif-hero__actions {
  margin: 18px 0 0;
}
@media (min-width: 881px) {
  .tarif-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    grid-template-areas: "copy visual";
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
  }
  .tarif-hero__copy { grid-area: copy; }
  .tarif-hero__visual {
    grid-area: visual;
    max-width: none;
    align-self: center;
  }
}
@media (max-width: 880px) {
  .tarif-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
  }
  .tarif-hero__visual,
  .tarif-hero__copy,
  .tarif-hero .studio-hero__figure,
  .tarif-hero .studio-hero__player {
    width: 100%;
    max-width: none;
  }
  .tarif-hero .page-hero__lead {
    max-width: none;
  }
  .tarif-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .tarif-hero__actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    box-sizing: border-box;
  }
}
@media (max-width: 700px) {
  .stat-item__hint { max-width: 22ch; }
  .stats-bar--compact { grid-template-columns: 1fr 1fr; }
}
.page-hero__mark { width: 48px; height: auto; margin-bottom: 12px; }
.page-hero__brands {
  --brands-logo-h: 52px;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
  margin-bottom: clamp(14px, 2vw, 20px);
  flex-wrap: nowrap;
}
/* Spezifität > globales `img { height: auto }` */
.page-hero__brands img.page-hero__mark,
.page-hero__brands img.page-hero__pt-logo {
  margin-bottom: 0;
  height: var(--brands-logo-h);
  width: auto;
  max-width: none;
  max-height: var(--brands-logo-h);
  object-fit: contain;
  object-position: center center;
  flex-shrink: 0;
  align-self: center;
}
.page-hero__brands-amp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
  opacity: 0.72;
  flex-shrink: 0;
  align-self: center;
  transform: translateY(-0.04em);
}
.page-hero--editorial {
  --editorial-fade: var(--color-surface);
  padding-bottom: 0;
}
.page-hero--editorial .hero__inner--editorial {
  margin-top: clamp(4px, 1vw, 12px);
}
.page-hero--editorial .trust-counter {
  margin-top: clamp(-88px, -9vw, -128px);
  position: relative;
  z-index: 3;
}
.page-hero--editorial + .section--after-hero {
  padding-top: clamp(16px, 2.5vw, 28px);
}
/* Tarif-Hero: Logo-Video — klarer, größerer Fokus neben dem Text */
.page-hero--editorial-video {
  padding-bottom: clamp(28px, 3.5vw, 40px);
}
.page-hero--editorial-video .hero__inner--editorial {
  align-items: center;
  position: relative;
  gap: clamp(20px, 3vw, 40px);
}
@media (min-width: 881px) {
  .page-hero--editorial-video .hero__inner--editorial {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}
.page-hero--editorial-video .hero__copy {
  position: relative;
  z-index: 2;
}
.page-hero--editorial-video .hero__copy .hero-actions {
  margin-bottom: 0;
}
.page-hero--editorial-video .trust-counter {
  margin-top: clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 2;
}
.editorial-split__figure--video {
  background: #0a0a0a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(var(--color-primary-rgb), 0.07),
    0 0 0 1px rgba(var(--color-primary-rgb), 0.06);
}
.editorial-split__figure--video .page-hero__player {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  vertical-align: middle;
  background: #0a0a0a;
}
/* 360°-Tour / Videos im Editorial-Split: kompakt wie Kontakt- & Tarif-Video */
.editorial-split--video .editorial-split__fade {
  display: none !important;
}
.editorial-split__figure--video,
.editorial-split--video .editorial-split__figure,
.editorial-split--video .editorial-split__figure--video {
  -webkit-mask-image: none;
  mask-image: none;
}
.editorial-split--video .editorial-split__tour {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}
.editorial-split--video .editorial-split__tour iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (min-width: 881px) {
  .editorial-split--video.editorial-split--reverse .editorial-split__visual,
  .editorial-split--video.editorial-split--ltr .editorial-split__visual {
    margin-left: 0;
    margin-right: 0;
    pointer-events: auto;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: min(100%, 440px);
    z-index: 1;
  }
  .editorial-split--video.editorial-split--reverse .editorial-split__figure,
  .editorial-split--video.editorial-split--ltr .editorial-split__figure,
  .editorial-split--video .editorial-split__figure--video {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 880px) {
  /* 360°-Tour: volle Breite, sonst kollabiert das Embed auf 0×0
     (max-width ohne width + aspect-ratio/iframe → Shrink-to-Fit). */
  .editorial-split--video {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .editorial-split--video .editorial-split__visual {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    min-width: 0;
    min-height: auto;
    justify-self: stretch;
  }
  .editorial-split--video .editorial-split__figure,
  .editorial-split--video .editorial-split__figure--video,
  .editorial-split--video .editorial-split__tour {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    min-height: 180px;
    height: auto;
    margin: 0;
  }
}
.editorial-split__fade--video {
  display: none;
}
@media (min-width: 881px) {
  .page-hero--editorial-video .hero__inner--editorial .hero__visual {
    margin-right: 0;
    pointer-events: auto;
    align-self: center;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    /* Marke + Eyebrow über der Headline ausgleichen → optische Mittellinie */
    margin-top: clamp(52px, 6vw, 76px);
    margin-inline: 0;
    z-index: 1;
  }
  .page-hero--editorial-video .hero__inner--editorial .editorial-split__figure--video {
    aspect-ratio: 16 / 9;
    width: 100%;
    margin-left: 0;
  }
  .page-hero--editorial-video .hero__inner--editorial .editorial-split__figure--video .page-hero__player {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 880px) {
  .page-hero--editorial-video .hero__inner--editorial {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }
  .page-hero--editorial-video .hero__inner--editorial .kontakt-intro__watermark {
    display: none;
  }
  /* Video über dem Copy-Block, gleiche Breite wie der Text (wie andere Kapitel) */
  .page-hero--editorial-video .hero__inner--editorial .hero__visual {
    order: -1;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .page-hero--editorial-video .hero__inner--editorial .hero__copy {
    width: 100%;
    max-width: none;
  }
  .page-hero--editorial-video .hero__lead {
    max-width: none;
  }
  .page-hero--editorial-video .hero__inner--editorial .editorial-split__figure--video {
    width: 100%;
    margin: 0;
  }
  .editorial-split__figure--video {
    aspect-ratio: 16 / 9;
  }
  .editorial-split__figure--video .page-hero__player {
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.info-card--standalone {
  margin-top: 0;
}
.breadcrumbs {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.breadcrumbs a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-primary); }

/* ---------- EYEBROW & SECTION-HEADER ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-secondary-dark);
  margin-bottom: 12px;
}
.section-header { max-width: 64ch; margin: 0 0 clamp(28px, 3.5vw, 44px); }
.section-header.section-header--hero {
  max-width: none;
  width: 100%;
}
.section-header h2 { margin: 0 0 12px; }
.section-header p { color: var(--color-text-muted); }

/* ---------- SECTION-VARIANTEN (Hintergründe = 60 %-Layer) ---------- */
.section--cream   { background: var(--color-surface); }
.section--soft    { background: var(--color-surface-2); }

/* ---------- GRID & SPLIT ---------- */
.grid { display: grid; gap: clamp(18px, 2vw, 28px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
}
.split-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split--diagnostik .split-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split + .split { margin-top: clamp(40px, 6vw, 72px); }

/* ---------- CARD ---------- */
.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3, .card h4 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { color: var(--color-text-muted); margin: 0; }

/* Leistungs-Karten: Skizzen-Visual oben, Text darunter */
.card--visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card__visual {
  margin: 0;
  aspect-ratio: 3 / 4;
  max-height: 220px;
  overflow: hidden;
  background: var(--color-surface);
}
.card__visual .card__img,
.card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.card__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 880px) {
  /* aspect-ratio 3/4 + max-height 220px schrumpft die Figure nach links;
     Mobile: volle Kartenbreite, Motiv mittig — wie eine Web-Kartenkopfzeile. */
  .card--visual .card__visual {
    width: 100%;
    max-width: 100%;
    max-height: none;
    align-self: stretch;
    margin-inline: auto;
    aspect-ratio: 3 / 4;
  }
  .card--visual .card__visual picture,
  .card--visual .card__visual .card__img,
  .card--visual .card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
.card__body {
  padding: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card--visual .card__tagline {
  margin: 0 0 8px;
}

/* ---------- ICON-BOX (Karten-Icon, 30 %-Sekundärfarbe als Default) ---------- */
.icon-box {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-secondary-soft);
  color: var(--color-secondary-dark);
  border-radius: 50%;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.icon-box svg { width: 24px; height: 24px; }
.icon-box.green  { background: var(--color-secondary); color: #fff; }
.icon-box.yellow { background: var(--color-accent-soft); color: var(--color-accent-dark); }

/* ---------- ICON (Hero-Card-Row Mini-Icon) ---------- */
.icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  flex-shrink: 0;
}
.icon.green  { background: var(--color-secondary); }
.icon.yellow { background: var(--color-accent); color: var(--color-text); }

/* ---------- HERO-CARD-ROW ---------- */
.hero-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
}
.hero-card-row strong { display: block; font-size: 0.96rem; }
.hero-card-row span { display: block; color: var(--color-text-muted); font-size: 0.88rem; }

/* ---------- CHECKLIST ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--color-text);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ---------- PRICE-CARD ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}
.price-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
}
@media (max-width: 900px) {
  .price-grid,
  .price-grid--2 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.price-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--color-secondary);
}
.price-card h3 { margin: 0 0 6px; font-size: 1.3rem; }
.price-card__tagline { color: var(--color-text-muted); font-size: 0.92rem; margin: 0 0 16px; min-height: 2.6em; }
.price-card .price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text);
}
.price-card .price small { font-size: 0.95rem; font-weight: 500; color: var(--color-text-muted); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.price-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--color-border);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}
.price-card__addon {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: var(--color-secondary-soft);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  color: var(--color-secondary-strong);
}
.price-card__addon--power {
  margin-top: 0;
  margin-bottom: 0;
  flex-shrink: 0;
}
.price-card__bottom {
  margin-top: 18px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card__bottom .price-card__addon {
  margin: 0;
}
.price-footnote {
  margin: 8px 0 0;
  max-width: 72ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.price-footnote strong {
  color: var(--color-secondary-strong);
  font-weight: 700;
}
/* Tarif-Blöcke eng gestapelt (Erwachsene → Jugend) */
.section.section--tariffs {
  padding: clamp(20px, 3vw, 36px) 0 0;
}
.section.section--tariffs-follow {
  padding: clamp(16px, 2vw, 24px) 0 clamp(40px, 6vw, 72px);
}
.section.section--tariffs-follow .section-header {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.price-card .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* ---------- CTA-BANNER (allgemein, helle Variante) ---------- */
.cta-banner {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
}
.cta-banner h2 { margin: 0 0 8px; }
.cta-banner p { color: var(--color-text-muted); margin: 0; }
.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta-banner__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cta-banner__mark { width: 56px; height: auto; flex-shrink: 0; }
.cta-banner__link { color: inherit; text-decoration: underline; }
@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__brand { flex-direction: column; align-items: flex-start; }
}

/* dual-cta hat zwei cta-banner nebeneinander — siehe Bestandsstyling weiter unten */

/* CTA-Banner auf 30 %-Section: weiße Schrift wird per .section--secondary erzwungen */
.section--secondary .cta-banner,
.section--secondary .cta-banner.cta-banner--final {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(6px);
}
.section--secondary .cta-banner h2 { color: #fff; }
.section--secondary .cta-banner p  { color: rgba(255, 255, 255, 0.88); }

/* ---------- INFO-CARD (Monatskarte etc.) ---------- */
.info-card {
  background: var(--color-secondary-soft);
  border: 1px solid rgba(var(--color-vital-rgb), 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.info-card h2 { margin: 0 0 8px; color: var(--color-secondary-strong); }
.info-card p  { color: var(--color-text); margin: 0; }
.info-card .actions { display: flex; flex-wrap: wrap; gap: 10px; }
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.info-card-grid .info-card {
  grid-template-columns: 1fr;
  align-items: start;
  height: 100%;
}
.info-card-grid .info-card .actions { margin-top: 16px; }
@media (max-width: 760px) {
  .info-card { grid-template-columns: 1fr; }
  .info-card-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ (<details>-basiert) ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  padding-right: 48px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-secondary);
  transition: transform 0.2s var(--ease);
}
.faq__item[open] summary::after { content: '−'; }
.faq__item[open] summary { padding-bottom: 8px; }
.faq__answer { padding: 2px 20px 16px; color: var(--color-text-muted); }
.faq__answer p { margin: 0; }

/* ---------- STATS-BAR ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.5vw, 32px);
  box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-secondary-dark);
}
.stat-item .label { font-size: 0.88rem; color: var(--color-text-muted); margin-top: 4px; }
@media (max-width: 700px) { .stats-bar { grid-template-columns: 1fr 1fr; } }

/* ---------- GALLERY (Mosaik + Lightbox) ---------- */
.gallery-showcase {
  margin-top: 0;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(90px, 7.5vw);
  gap: clamp(10px, 1.2vw, 14px);
}
.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(var(--color-primary-rgb), 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-tile--hero { grid-column: span 3; grid-row: span 2; }
.gallery-tile--wide { grid-column: span 3; grid-row: span 2; }
.gallery-tile--tall { grid-column: span 3; grid-row: span 2; }
.gallery-tile--std  { grid-column: span 3; grid-row: span 2; }
.gallery-tile picture,
.gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-tile img {
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s ease;
}
.gallery-tile__stack {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(26, 26, 31, 0.12);
}
.gallery-tile__stack picture,
.gallery-tile__stack img {
  min-height: 0;
  height: 100%;
}
.gallery-tile__meta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.gallery-tile__label,
.gallery-tile__more {
  background: rgba(26, 26, 31, 0.78);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}
.gallery-tile__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  background: rgba(255, 252, 250, 0.92);
  color: var(--color-text);
  font-weight: 650;
}
.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(44, 42, 40, 0.14);
  outline: none;
}
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.06);
}
.gallery-tile:hover .gallery-tile__more,
.gallery-tile:focus-visible .gallery-tile__more {
  background: #fff;
}
.gallery-footnote {
  margin: clamp(22px, 3vw, 32px) 0 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}
body.lightbox-open {
  overflow: hidden;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 18, 0.78);
  backdrop-filter: blur(8px);
  border: 0;
  cursor: zoom-out;
}
.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(88vh, 900px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}
.gallery-lightbox__figure {
  margin: 0;
  background: #0f120f;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.gallery-lightbox__img {
  display: block;
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  background: #0f120f;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.gallery-lightbox__img.is-fading {
  opacity: 0;
}
.gallery-lightbox__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 14px;
  color: rgba(255, 252, 250, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(20, 22, 18, 0.2), rgba(20, 22, 18, 0.92));
}
.gallery-lightbox__count {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  color: rgba(255, 252, 250, 0.72);
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(255, 252, 250, 0.92);
  color: var(--color-text);
  transition: transform 0.2s ease, background 0.2s ease;
}
.gallery-lightbox__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  z-index: 2;
}
.gallery-lightbox__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  transform: scale(1.05);
  background: #fff;
}
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .gallery-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(90px, 14vw);
  }
  .gallery-tile--hero,
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--std { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 560px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(110px, 32vw);
  }
  .gallery-tile--hero,
  .gallery-tile--wide,
  .gallery-tile--tall,
  .gallery-tile--std {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-lightbox {
    padding: 12px;
  }
  .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .gallery-lightbox__nav--prev { left: 8px; }
  .gallery-lightbox__nav--next { right: 8px; }
  .gallery-lightbox__close {
    top: 8px;
    right: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-tile,
  .gallery-tile img,
  .gallery-tile__more,
  .gallery-mosaic,
  .gallery-lightbox__img {
    transition: none !important;
  }
}

/* ---------- VIDEO-EMBED ---------- */
.video-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.video-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- LOGO-WALL ---------- */
.logo-wall {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.logo-wall--equipment {
  grid-template-columns: repeat(4, 1fr);
}
.logo-wall--nutrition {
  grid-template-columns: repeat(3, 1fr);
}
.logo-wall--service {
  grid-template-columns: repeat(3, 1fr);
}
.logo-wall--memberships {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- SECTION WATERMARK (ohne Editorial-Split, z. B. Partner) ---------- */
.section--has-watermark {
  position: relative;
  overflow: hidden;
  --section-watermark-fade: var(--color-bg);
}
.section--has-watermark.section--cream,
.section--has-watermark.section--surface {
  --section-watermark-fade: var(--color-surface);
}
.section--has-watermark > .container {
  position: relative;
  z-index: 1;
}
.section-watermark {
  position: absolute;
  top: 0;
  height: 100%;
  width: min(72%, 1100px);
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.section-watermark--end {
  right: calc((100% - 100vw) / 2);
  justify-content: flex-end;
  padding-right: clamp(10px, 1.8vw, 26px);
}
.section-watermark--start {
  left: calc((100% - 100vw) / 2);
  justify-content: flex-start;
  padding-left: clamp(10px, 1.8vw, 26px);
}
.section-watermark .hero__watermark-logo {
  width: clamp(720px, 58vw, 1180px);
  opacity: 0.055;
}
.section-watermark--end .hero__watermark-logo {
  -webkit-mask-image: linear-gradient(
    270deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.82) 50%,
    rgba(0, 0, 0, 0.52) 64%,
    rgba(0, 0, 0, 0.22) 78%,
    rgba(0, 0, 0, 0.08) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    270deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.82) 50%,
    rgba(0, 0, 0, 0.52) 64%,
    rgba(0, 0, 0, 0.22) 78%,
    rgba(0, 0, 0, 0.08) 90%,
    transparent 100%
  );
}
.section-watermark--start .hero__watermark-logo {
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.9) 56%,
    rgba(0, 0, 0, 0.68) 68%,
    rgba(0, 0, 0, 0.42) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.9) 56%,
    rgba(0, 0, 0, 0.68) 68%,
    rgba(0, 0, 0, 0.42) 80%,
    rgba(0, 0, 0, 0.18) 92%,
    transparent 100%
  );
}
@media (max-width: 1240px) {
  .section-watermark { display: none; }
}

/* ---------- EMPFEHLUNGEN (hervorgehoben) ---------- */
.section--recommend {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(90% 70% at 8% 0%, rgba(var(--color-vital-rgb), 0.14), transparent 55%),
    radial-gradient(70% 60% at 96% 12%, rgba(var(--color-primary-rgb), 0.08), transparent 50%),
    var(--color-bg);
}
.section--recommend.section--tight-bottom {
  padding-bottom: clamp(16px, 2.5vw, 28px);
}
.section--recommend.section--after-hero {
  padding-top: clamp(20px, 3vw, 36px);
}
.recommend-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--color-vital-rgb), 0.22);
  background:
    linear-gradient(165deg, rgba(255, 252, 250, 0.98) 0%, rgba(239, 232, 220, 0.88) 100%);
  box-shadow:
    0 18px 48px rgba(44, 51, 41, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}
.recommend-panel--watermark > .section-header,
.recommend-panel--watermark > .recommend-grid {
  position: relative;
  z-index: 1;
}
.recommend-panel--watermark .section-watermark {
  width: min(78%, 900px);
  right: 0;
  left: auto;
  padding-right: 0;
}
.recommend-panel--watermark .section-watermark .hero__watermark-logo {
  width: clamp(520px, 55vw, 920px);
  opacity: 0.06;
}
.recommend-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}
.recommend-panel__header {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3vw, 32px);
}
.recommend-panel__header p {
  color: var(--color-text-muted);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  box-shadow: 0 10px 28px rgba(44, 42, 40, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.recommend-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--color-primary-rgb), 0.28);
  box-shadow: 0 16px 34px rgba(44, 42, 40, 0.12);
}
.recommend-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  margin-bottom: 4px;
}
.recommend-card__logo img {
  max-width: 168px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.recommend-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}
.recommend-card > p:not(.recommend-card__note) {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.recommend-card__note {
  margin: 0 !important;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-secondary-soft);
  color: var(--color-secondary-dark) !important;
  font-size: 0.86rem !important;
  line-height: 1.4;
  text-align: center;
  flex: 0 0 auto;
}
.recommend-card__cta {
  align-self: flex-start;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .recommend-grid {
    grid-template-columns: 1fr;
  }
  .recommend-panel {
    padding: 22px 18px 20px;
  }
}

.logo-tile {
  --logo-tile-bg: var(--color-bg-elevated);
  --logo-tile-border: var(--color-border-strong);
  --logo-tile-ink: var(--color-text);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 132px;
  padding: 28px 22px 20px;
  background:
    linear-gradient(160deg, rgba(255, 252, 250, 0.92), rgba(247, 242, 235, 0.96)),
    var(--logo-tile-bg);
  border: 1px solid var(--logo-tile-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(44, 42, 40, 0.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.logo-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity 0.28s ease;
}
.logo-tile--dark {
  --logo-tile-bg: var(--color-ink-deep);
  --logo-tile-border: rgba(255, 255, 255, 0.08);
  --logo-tile-ink: #FFFCFA;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(190, 22, 34, 0.22), transparent 55%),
    linear-gradient(165deg, #3A4336 0%, var(--color-ink-deep) 55%, #1F241C 100%);
  box-shadow: 0 14px 34px rgba(44, 51, 41, 0.28);
}
.logo-wall--memberships .logo-tile {
  min-height: 196px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 24px 18px 18px;
}
.logo-wall--memberships .logo-tile img {
  display: block;
  margin-inline: auto;
  max-height: 72px;
  max-width: min(100%, 180px);
  background: transparent;
  flex-shrink: 0;
}
.cta-banner--partner {
  margin-top: clamp(28px, 4vw, 44px);
}
.logo-tile img {
  max-width: min(100%, 168px);
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.04));
  transition: transform 0.28s ease;
}
.logo-tile__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  line-height: 1.2;
  text-align: center;
}
.logo-tile__desc {
  display: block;
  margin: 0;
  max-width: 28ch;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-align: center;
  text-transform: none;
  color: var(--color-text-muted);
}
.logo-tile--dark .logo-tile__name {
  color: rgba(255, 252, 250, 0.62);
}
.logo-tile--dark .logo-tile__desc {
  color: rgba(255, 252, 250, 0.72);
}
a.logo-tile:hover,
a.logo-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: 0 18px 36px rgba(44, 42, 40, 0.14);
  outline: none;
}
a.logo-tile:hover::before,
a.logo-tile:focus-visible::before {
  opacity: 1;
}
a.logo-tile:hover img,
a.logo-tile:focus-visible img {
  transform: scale(1.05);
}
a.logo-tile--dark:hover,
a.logo-tile--dark:focus-visible {
  border-color: rgba(190, 22, 34, 0.45);
  box-shadow: 0 20px 40px rgba(20, 24, 18, 0.45);
}
@media (max-width: 900px) {
  .logo-wall--equipment,
  .logo-wall--service,
  .logo-wall--memberships {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .logo-wall--equipment,
  .logo-wall--nutrition,
  .logo-wall--service,
  .logo-wall--memberships {
    grid-template-columns: 1fr;
  }
  .logo-tile {
    min-height: 118px;
    padding: 22px 18px 16px;
  }
}

/* ---------- CERT-CARD ---------- */
.cert-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.cert-logo { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.cert-logo img { max-height: 100%; max-width: 100%; width: auto; }
.cert-card h3 { margin: 0 0 6px; font-size: 1rem; }
.cert-card p  { color: var(--color-text-muted); font-size: 0.88rem; margin: 0; }

/* ---------- TEAM-CARD ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}
@media (max-width: 900px) {
  .team-grid,
  .team-grid--duo { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.team-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.team-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 20px; }
.team-info h3 { margin: 0 0 4px; font-size: 1.1rem; }
.team-info .role {
  display: block;
  font-size: 0.82rem;
  color: var(--color-secondary-dark);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.team-info p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0 0 12px; }
.team-card__quote {
  margin: 0 0 12px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text);
  font-style: italic;
  text-align: center;
}
.editorial-split__copy .team-card__quote {
  margin: 18px auto 22px;
  max-width: 42ch;
  padding: 12px 8px;
}
@media (max-width: 600px) {
  .team-card__quote { padding: 9px 12px; font-size: 0.85rem; }
  .team-card__creds { font-size: 0.82rem; }
}
.team-card__quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}
.team-card__creds {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text);
}
.team-card__creds li {
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.team-card__creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* ---------- LEGAL-BLURB & LEGAL-TODO ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin-top: 40px; font-size: 1.4rem; }
.legal > h2:first-child { margin-top: 0; }
.legal h3 { margin-top: 24px; font-size: 1.1rem; }
.legal p, .legal li { color: var(--color-text); }
.legal hr { border: none; border-top: 1px solid var(--color-border); margin: 32px 0; }
.legal-todo {
  padding: 10px 14px;
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-accent-dark);
}
.legal-blurb { max-width: 820px; margin: 0 auto; }
.legal-blurb--after-card {
  margin-top: clamp(20px, 2.5vw, 28px);
}
.legal-blurb__fine {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-top: 16px;
}

/* ---------- BOOKING-WIDGET (Basis-Hülle; Detail-Styles via booking.js) ---------- */
.booking-widget {
  position: relative;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: var(--shadow-sm);
  min-height: 180px;
}
.booking-widget__loading {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 32px 0;
}

.bk-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.bk-status {
  min-height: 1.2em;
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.bk-status--error { color: var(--color-primary); }
.bk-empty { margin: 0; color: var(--color-text-muted); }
.bk-days {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bk-month {
  flex: 0 0 auto;
  align-self: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0 4px;
}
.bk-day {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 88px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.bk-day.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}
.bk-day__wd { font-weight: 600; font-size: 0.92rem; }
.bk-day__count { font-size: 0.78rem; color: var(--color-text-muted); }
.bk-times { margin-top: 8px; }
.bk-times__title { margin: 0 0 10px; font-size: 1rem; }
.bk-time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bk-time {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.bk-time.is-active {
  border-color: var(--color-secondary);
  background: var(--color-secondary-soft);
}
.bk-time__t { font-weight: 600; }
.bk-time__d,
.bk-time__note { font-size: 0.78rem; color: var(--color-text-muted); }
.bk-formbox {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.bk-pickinfo { margin: 0 0 14px; font-weight: 600; }
.bk-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.bk-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; }
.bk-field span em { font-style: normal; color: var(--color-text-muted); font-weight: 400; }
.bk-field input,
.bk-field textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
}
.bk-field--full { grid-column: 1 / -1; }
.bk-form .btn { grid-column: 1 / -1; justify-self: start; }
.bk-form .bk-muted { grid-column: 1 / -1; margin: 0; }
.bk-muted { font-size: 0.85rem; color: var(--color-text-muted); }
.bk-success { text-align: center; padding: 24px 8px; }
.bk-success__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--color-secondary);
}
.bk-success__icon svg { width: 48px; height: 48px; }
@media (max-width: 640px) {
  .bk-form { grid-template-columns: 1fr; }
}

/* ---------- KONTAKT: Intro (Text + Logo-Video) + Kanäle ---------- */
.kontakt-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
  position: relative;
}
.kontakt-intro__watermark {
  position: absolute;
  left: calc((100% - 100vw) / 2);
  width: 68%;
  top: 0;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(10px, 1.8vw, 26px);
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.kontakt-intro__watermark::after {
  content: "";
  position: absolute;
  inset: -4% 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 68%,
    color-mix(in srgb, var(--color-surface) 16%, transparent) 82%,
    color-mix(in srgb, var(--color-surface) 38%, transparent) 94%
  );
}
.kontakt-intro__watermark .hero__watermark-logo {
  opacity: 0.05;
}
.kontakt-intro__copy {
  position: relative;
  z-index: 2;
  max-width: none;
}
.kontakt-intro__copy .eyebrow { margin-bottom: 8px; }
.kontakt-intro__copy h2 { margin: 0 0 12px; }
.kontakt-intro__copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}
.kontakt-intro .kontakt-channels {
  max-width: none;
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  text-align: left;
}
.kontakt-intro .kontakt-channels__primary,
.kontakt-intro .kontakt-channels__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.kontakt-intro .kontakt-channels__primary {
  margin-bottom: 12px;
}
.kontakt-intro .kontakt-channels__btn,
.kontakt-intro .kontakt-channels__secondary .btn {
  min-width: 0;
  width: 100%;
  justify-content: center;
}
@media (min-width: 881px) {
  .kontakt-intro__video {
    margin-top: clamp(32px, 4.5vw, 64px);
  }
}
.kontakt-intro__video {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(var(--color-primary-rgb), 0.07),
    0 0 0 1px rgba(var(--color-primary-rgb), 0.06);
}
.kontakt-intro__video .kontakt-intro__player {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  vertical-align: middle;
  background: #0a0a0a;
}
@media (max-width: 880px) {
  .kontakt-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .kontakt-intro__watermark {
    display: none;
  }
  .kontakt-intro__copy {
    max-width: none;
    margin: 0 auto;
  }
  .kontakt-intro .kontakt-channels {
    text-align: center;
  }
  .kontakt-intro .kontakt-channels__primary,
  .kontakt-intro .kontakt-channels__secondary {
    grid-template-columns: 1fr;
  }
  .kontakt-intro__video {
    max-width: min(560px, 100%);
    justify-self: center;
  }
}

.kontakt-channels {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.kontakt-channels__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.kontakt-channels__btn {
  min-width: min(100%, 260px);
  justify-content: center;
}
.kontakt-channels__hint {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.kontakt-channels__secondary {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- KONTAKT-DIRECT (Legacy) ---------- */
.kontakt-direct {
  margin-top: 24px;
  text-align: center;
}
.kontakt-direct p { margin: 0 0 12px; color: var(--color-text-muted); }
.kontakt-direct .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- PT-Intro (verbundenes Erstblock: Studio + PRIVATE-TRAINING®) ---------- */
.pt-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.pt-intro__visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.pt-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.pt-intro__copy h2 { margin: 0 0 12px; }
.pt-intro__copy > p { color: var(--color-text-muted); }
.pt-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.pt-intro__note {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
@media (max-width: 900px) {
  .pt-intro { grid-template-columns: 1fr; }
  .pt-intro__visual img { aspect-ratio: 16 / 10; max-height: 360px; }
}

/* ---------- PT-Brand-Panel / PT-Firmenfitness (Legacy, falls noch genutzt) ---------- */
.pt-brand-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: start;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.5vw, 36px);
  box-shadow: var(--shadow-sm);
}
.pt-brand-panel__aside {
  background: var(--color-secondary-soft);
  border-radius: var(--radius-md);
  padding: 18px;
}
.pt-brand-panel__aside h3 { margin: 0 0 8px; }
.pt-brand-panel__muted { color: var(--color-text-muted); font-size: 0.92rem; }
.pt-brand-panel__aside .btn { margin-top: 12px; width: 100%; justify-content: center; }
@media (max-width: 900px) { .pt-brand-panel { grid-template-columns: 1fr; } }

.pt-firmenfitness {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--color-secondary-soft);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.5vw, 32px);
}
@media (max-width: 760px) { .pt-firmenfitness { grid-template-columns: 1fr; } }

/* ---------- SECA-Showcase (vereinfachtes Layout) ---------- */
.seca-product-intro { max-width: 820px; margin-bottom: 28px; }
.seca-showcase__hero {
  margin: 0 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.seca-showcase__hero img { width: 100%; height: auto; display: block; }
.seca-showcase__hero-cap { font-size: 0.88rem; color: var(--color-text-muted); padding: 10px 4px; }
.seca-showcase__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
}
.seca-showcase__highlights li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.94rem; }
.seca-showcase__check {
  background: var(--color-secondary);
  color: #fff;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.74rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.seca-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.seca-showcase__tile {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
}
.seca-showcase__img-wrap img { width: 100%; height: 180px; object-fit: cover; }
.seca-showcase__tile figcaption { padding: 12px 14px; }
.seca-showcase__tile strong { display: block; margin-bottom: 4px; }
.seca-showcase__tile span { color: var(--color-text-muted); font-size: 0.86rem; }
.seca-showcase__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 18px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 0 0 12px;
}
.seca-showcase__specs > div { padding: 6px 0; border-bottom: 1px solid var(--color-border); }
.seca-showcase__specs dt { font-size: 0.82rem; color: var(--color-text-muted); }
.seca-showcase__specs dd { margin: 0; font-weight: 600; font-size: 0.94rem; }
.seca-showcase__credit { font-size: 0.82rem; color: var(--color-text-muted); }
.seca-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
}
.seca-cta p { margin: 0; flex: 1; }
@media (max-width: 800px) {
  .seca-showcase__highlights,
  .seca-showcase__grid,
  .seca-showcase__specs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .seca-showcase__highlights,
  .seca-showcase__grid,
  .seca-showcase__specs { grid-template-columns: 1fr; }
}

/* ---------- FOOTER-GRID & SPALTEN (innerhalb der Sage-30 %-Layer) ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(20px, 2.5vw, 40px);
  padding: 32px 0 24px;
}
.footer-col h4 { margin: 0 0 12px; color: #fff; font-size: 0.95rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 6px 0; }
.footer-col--brand .brand-logo { height: 36px; width: auto; margin-bottom: 12px; }
.footer-brand {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 4px;
  transition: opacity 0.2s var(--ease), transform 0.25s var(--ease);
}
.footer-brand:hover { opacity: 0.92; transform: scale(1.03); }
.footer-brand .brand-logo,
.footer-brand .footer-logo { margin-bottom: 12px; }
.footer-tagline { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin: 0 0 12px; }
.footer-address { font-style: normal; color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin-bottom: 12px; }
.footer-hours strong { color: #fff; }
.footer-hours { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- MOBILE-CTA-BAR (Basis-Layout; Detail-Overrides bereits weiter unten) ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(26, 26, 31, 0.08);
  padding: 8px env(safe-area-inset-right, 8px) calc(8px + env(safe-area-inset-bottom, 0px)) env(safe-area-inset-left, 8px);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.mobile-cta-bar--triple { grid-template-columns: repeat(3, 1fr); }
.mobile-cta-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  text-align: center;
  line-height: 1.1;
}
.mobile-cta-bar__btn svg { width: 20px; height: 20px; }
/* Sichtbarkeit der Mobile-CTA-Bar: siehe MOBILE POLISH unten (≤780px) */

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.flex-center { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.reveal { /* Animation-Hook für main.js, ohne JS sichtbar */ }

/* =============================================================
   MySports-/Online-Conversion-Komponenten
   -------------------------------------------------------------
   Alle Styles, die für die Magicline / MySports Member Web -
   Integration benötigt werden. Diese Sektion hält Online-Abschluss-
   Pfade visuell konsistent über alle Seiten:

   - .visually-hidden          : a11y-Hilfsklasse (externer-Link-Hinweis)
   - .online-cta / __pill      : primärer CTA-Button + Discount-Pille
   - .btn-primary-soft         : sekundärer roter Online-Button (Card-Default)
   - .btn-light--ghost,
     .btn-ghost-light          : helle Ghost-Varianten f. dunkle Banner
   - .price-card__actions
     / __secondary-link        : zweistufiges Card-CTA-Pattern
   - .online-banner            : Aktions-Banner (Hero/Page-Hero)
   - .nav-self / .nav-cta--*   : Header-Login + zweiter Online-CTA
   - .footer-online-strip      : Online-Aktion direkt überm Footer
   - .cta-banner--online,
     .dual-cta                 : zweispaltige CTA-Bühne (Probetraining +
                                 Online-Abschluss) auf der Startseite
   - .hero-actions             : Hero-CTA-Reihe
   - .hero-channels            : Klickbare Kontakt-Chips (WA / SMS / Anruf)
   - .hero-path                : 3 gleichwertige Einstiegs-Schritte (volle Breite)
   - .mobile-cta-bar--triple   : 3-Tasten-Layout der Mobil-Leiste
   ============================================================= */

/* a11y: Inhalt visuell verbergen, aber für Screenreader sichtbar */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Online-CTA: Discount-Pille am Button ---------- */
.online-cta {
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 4px;
}
.online-cta::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M17 7H9M17 7v8'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: -2px;
  opacity: 0.95;
}
.btn-primary-soft.online-cta::before,
.btn-ghost.online-cta::before,
.btn-light.online-cta::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BE1622' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M17 7H9M17 7v8'/></svg>");
}
.online-cta__pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-left: 4px;
}
.btn-primary-soft .online-cta__pill,
.btn-light .online-cta__pill,
.btn-ghost .online-cta__pill {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}
.online-cta--compact { padding: 8px 14px; }
.online-cta--compact::before { width: 12px; height: 12px; }

/* ---------- Soft-Primary: deutlich aber nicht so dominant wie Primary ---------- */
.btn-primary-soft {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  box-shadow: none;
}
.btn-primary-soft:hover {
  background: color-mix(in srgb, var(--color-primary-soft) 70%, #fff);
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.12);
}

/* Ghost-Varianten für dunkle Banner (z. B. cta-banner--online) */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.btn-ghost-light:active {
  transform: none;
}
.btn-light--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}
.btn-light--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

/* ---------- Preis-Card: zweistufiges CTA-Pattern ---------- */
.price-card__actions {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.price-card__actions .btn { width: 100%; justify-content: center; margin: 0; }
.price-card__secondary-link {
  display: block;
  text-align: center;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 6px 4px;
  line-height: 1.4;
  border-radius: var(--radius-sm);
}
.price-card__note {
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  padding: 6px 4px;
}
.price-card__secondary-link strong {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(var(--color-primary-rgb), 0.35);
}
.price-card__secondary-link:hover { color: var(--color-text); }
.price-card__secondary-link:hover strong { text-decoration-color: var(--color-primary); }

/* ---------- Online-Banner (preise.php Hero) ---------- */
.online-banner {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, #fff 70%, var(--color-accent-soft) 100%);
  border: 1px solid rgba(var(--color-primary-rgb), 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.08);
  position: relative;
  overflow: hidden;
}
.online-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.online-banner__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  position: relative;
  z-index: 1;
}
.online-banner__icon svg { width: 26px; height: 26px; animation: online-banner-pulse 2.4s var(--ease) infinite; }
@keyframes online-banner-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.online-banner__text {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}
.online-banner__text strong { color: var(--color-primary-dark); display: block; margin-bottom: 2px; font-weight: 700; }
.online-banner__hint { display: inline-block; margin-top: 6px; font-size: 0.92rem; color: var(--color-text-muted); }

@media (max-width: 700px) {
  .online-banner { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
  .online-banner__text { font-size: 0.94rem; }
}
@media (prefers-reduced-motion: reduce) {
  .online-banner__icon svg { animation: none; }
}

/* ---------- Hero (index.php) — Action-Reihe + Kontakt-Chips ---------- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.hero-channels {
  margin: 0 0 4px;
  width: 100%; /* volle Breite der linken Spalte = Textblock / CTAs darüber */
}
.hero-channels__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-channels__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.hero-channels__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg-elevated);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  isolation: isolate;
  box-shadow: none;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  box-sizing: border-box;
}
.hero-channels__chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-channels__chip:hover {
  border-color: var(--color-secondary);
  background: var(--color-secondary-soft);
  color: var(--color-secondary-strong);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--color-vital-rgb), 0.12);
}
.hero-channels__chip:active {
  transform: none;
  box-shadow: none;
}
.hero-channels__chip--wa {
  border-color: rgba(var(--color-primary-rgb), 0.28);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  box-shadow: none;
}
.hero-channels__chip--wa:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.22);
}
.hero-channels__chip--wa:active {
  box-shadow: none;
}
@media (max-width: 480px) {
  .hero-channels__row {
    grid-template-columns: 1fr;
  }
}
.hero-actions__pulse {
  flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(var(--color-vital-rgb), 0.5);
  animation: hero-pulse 2s var(--ease) infinite;
}
@keyframes hero-pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--color-vital-rgb), 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(var(--color-vital-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--color-vital-rgb), 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-actions__pulse { animation: none; }
  .hero-channels__chip:hover,
  .hero-channels__chip:active {
    transform: none;
  }
}

/* ---------- Hero-Onboarding-Card: Highlight-Row + Divider ---------- */
.hero-card-row--highlight {
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, #fff 80%);
  border: 1px solid rgba(var(--color-primary-rgb), 0.22);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 4px 0 6px;
}
.hero-card-row--highlight .icon {
  background: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 700;
}
.hero-card-row--highlight strong { color: var(--color-primary-dark); }
.hero-card-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 4px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-subtle);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-card-divider::before,
.hero-card-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ---------- Header: Self-Service-Link + zweiter Online-CTA ---------- */
.nav-self { margin-left: 6px; }
.nav-self__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-self__icon { width: 16px; height: 16px; }
.nav-self__link:hover {
  background: #fff;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.nav-cta--online { margin-left: 4px; }
.btn-small { padding: 6px 12px; font-size: 0.85rem; }
@media (max-width: 980px) {
  .nav-self { margin: 6px 0; }
  .nav-self__link { width: 100%; justify-content: center; padding: 12px 16px; font-size: 0.95rem; }
  .nav-cta--online { margin: 6px 0; }
  .nav-cta--online .btn { width: 100%; justify-content: center; }
}

/* ---------- App-Downloads + Browser-Login (Leistungen-Karte) ---------- */
.app-links {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-text-subtle);
  letter-spacing: 0.01em;
}
.app-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-border-strong);
}
.app-links a:hover {
  color: var(--color-text-muted);
  text-decoration-color: var(--color-text-subtle);
}
.app-links__sep {
  color: var(--color-border-strong);
}

/* ---------- Footer Online-Strip ----------
   Sitzt im jetzt grünen Footer (30 %-Rolle). Der Strip selbst ist
   eine helle, leicht abgesetzte Schicht — der rote CTA-Button INNEN
   ist die 10 %-Akzent-Ankerung. */
.footer-online-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: -8px 0 32px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(var(--color-vital-rgb), 0.22) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.92);
}
.footer-online-strip__text {
  flex: 1 1 320px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-online-strip__text strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
  font-size: 1.02rem;
  font-weight: 700;
}
.footer-online-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-online-strip .btn-ghost-light:hover { color: #fff; }
@media (max-width: 600px) {
  .footer-online-strip { padding: 16px 18px; }
  .footer-online-strip__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Index Bottom: Dual-CTA (Probetraining + Online) ---------- */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .dual-cta { grid-template-columns: 1fr; } }

/* In .dual-cta sitzen zwei cta-banner nebeneinander → kompakter stacken,
   damit die "actions" nicht im engen rechten Cell-Slot auflaufen. */
.dual-cta .cta-banner {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(28px, 3.5vw, 44px);
}
.dual-cta .cta-banner .actions {
  justify-content: flex-start;
}
.cta-banner--split { margin-bottom: 0; }

/* Großflächiger Online-Teaser trägt die 30 %-Rolle (Vital-Grün-dominant).
   Der CTA-Button INNEN bleibt rot (10 %-Akzent). */
.cta-banner--online {
  background: linear-gradient(135deg, var(--color-ink-deep) 0%, var(--color-ink-mid) 55%, var(--color-secondary-strong) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-vital);
}
.cta-banner--online::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 55%),
    radial-gradient(circle at bottom left, rgba(var(--color-vital-rgb), 0.30) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner--online .cta-banner__brand,
.cta-banner--online .actions { position: relative; z-index: 1; }
.cta-banner--online h2 { color: #fff; margin: 0 0 8px; font-size: 1.6rem; line-height: 1.2; }
.cta-banner--online p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.cta-banner--online p strong { color: var(--color-accent); }
.cta-banner--online .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-banner__online-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-xl);
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(var(--color-vital-rgb), 0.35);
}
.cta-banner__online-icon svg { width: 30px; height: 30px; }

@media (max-width: 600px) {
  .cta-banner--online { padding: 26px 22px; }
  .cta-banner--online .actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Mobile-CTA-Bar mit drei Buttons ---------- */
.mobile-cta-bar--triple .mobile-cta-bar__btn { font-size: 0.85rem; padding: 10px 8px; }
.mobile-cta-bar__btn--online {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary-dark);
}
.mobile-cta-bar__btn--online:hover { color: #fff; background: var(--color-primary-dark); }
.mobile-cta-bar__btn--online svg { color: #fff; }
@media (max-width: 360px) {
  .mobile-cta-bar--triple .mobile-cta-bar__btn span { font-size: 0.78rem; }
}

/* =============================================================
   HERO-META — Adresse + Öffnungszeiten + Telefon-Bar im Hero
   60 %-Hintergrund (Surface-Layer), grüne Icon-Akzente (30 %).
   Pattern: kompakter Trust-Strip am Hero-Boden — Local-SEO-Signal,
   Sofort-Orientierung, „echte Adresse statt Stockfoto".
   ============================================================= */
.hero-meta {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  padding: 14px clamp(12px, 1.5vw, 18px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.hero-meta__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 4px 14px;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s var(--ease);
  box-sizing: border-box;
}
.hero-meta__item:not(:first-child) {
  border-left: 1px solid var(--color-border-strong);
}
a.hero-meta__item:hover { color: var(--color-secondary-dark); }
.hero-meta__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--color-secondary-dark);
}
.hero-meta__divider { display: none; }
@media (max-width: 900px) {
  .hero-meta {
    font-size: 0.88rem;
  }
  .hero-meta__item { padding: 4px 8px; gap: 8px; }
}
@media (max-width: 720px) {
  /* Auf Mobile wird die Hero-Meta-Bar ausgeblendet: Adresse + Telefon sind
     bereits über die Mobile-CTA-Bar (unten) und die Footer-Sektion erreichbar,
     Öffnungszeiten stehen im Hero-Lead. Vermeidet visuelles Rauschen direkt
     unter dem Header. */
  .hero-meta { display: none; }
}

/* =============================================================
   CARD-TAGLINE — Drei-Wort-Verdichtung über Service-Card-Text
   30 %-Rolle (Vital-Grün), Caps + Tracking für Premium-Optik.
   ============================================================= */
.card__tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary-dark);
  margin: -4px 0 8px;
}

/* =============================================================
   SPLIT-REVERSE — Bild links, Text rechts (Variation)
   `order` statt `direction: rtl`, damit Listen/Text korrekt ausgerichtet
   bleiben. Mobile fällt es zurück auf single-column dank .split-Default.
   ============================================================= */
@media (min-width: 881px) {
  .split--reverse > :first-child { order: 2; }
  .split--reverse > :last-child  { order: 1; }
}

/* =============================================================
   SUBNAV — sticky Sektions-Navigation für Unterseiten
   (Pattern: Manhattan / Premium-Studios — sekundäre Orientierung
   unter dem Page-Hero, scrollt mit, hebt aktive Bereiche hervor).
   Horizontaler Scroll auf Mobile statt Wrap (saubere Linie).
   ============================================================= */
.subnav {
  position: sticky;
  top: 64px; /* unter Sticky-Header */
  z-index: 30;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
}
.subnav__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0;
  /* Sanftes Touch-Snap auf Mobile, ohne Desktop-Layout zu stören */
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__item {
  flex: 0 0 auto;
  padding: 10px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  scroll-snap-align: start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.subnav__item:hover {
  color: var(--color-secondary-dark);
  background: var(--color-secondary-soft);
}
.subnav__item--cta {
  margin-left: auto;
  color: var(--color-primary);
}
.subnav__item--cta:hover {
  color: #fff;
  background: var(--color-primary);
}
@media (max-width: 720px) {
  .subnav { top: 56px; }
  .subnav__item--cta { margin-left: 0; }
}

/* Scroll-Anker-Versatz für Sub-Nav + sticky Header (kompensiert
   überlappende Höhe). Wichtig für Smooth-Scroll-Links wie #seca-tru-ultra. */
html { scroll-behavior: smooth; }
:target { scroll-margin-top: 100px; }
section[id] { scroll-margin-top: 100px; }
#mysports-app { scroll-margin-top: 100px; }

/* =============================================================
   PREFOOTER — großer Trust-Banner mit Doppel-CTA vor dem Footer
   30 %-Rolle: Sage-Gradient — niemals Rot großflächig.
   Innen-Buttons folgen Intent: btn-light (Trust) + btn-primary (Conv.).
   ============================================================= */
.prefooter {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(255,255,255,0.06) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-ink-mid) 0%, var(--color-secondary-strong) 55%, var(--color-secondary-dark) 100%);
  overflow: hidden;
}
.prefooter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.4;
  pointer-events: none;
}
.prefooter__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.prefooter__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-secondary-soft);
  margin-bottom: 14px;
}
.prefooter__copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}
.prefooter__copy p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: rgba(255,255,255,0.86);
  max-width: 52ch;
  margin: 0;
}
.prefooter__copy p strong { color: #fff; }
.prefooter__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.prefooter__btn {
  justify-content: center;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  padding: 16px 22px;
}
@media (max-width: 880px) {
  .prefooter__inner { grid-template-columns: 1fr; }
  .prefooter__actions { flex-direction: column; }
}
@media (max-width: 600px) {
  /* Mobile: kompakteres Padding, leichtere Grid-Overlay-Performance */
  .prefooter { padding: clamp(40px, 8vw, 56px) 0; }
  .prefooter::before { background-size: 40px 40px; opacity: 0.3; }
  .prefooter__btn { padding: 14px 18px; min-height: 48px; }
}

/* =============================================================
   TRUST-COUNTER — Zahlenleiste unter Hero-Meta
   60 %-Hintergrund (transparent über Hero), grüne Akzentwerte (30 %).
   ============================================================= */
.trust-counter {
  margin-top: clamp(20px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: clamp(16px, 2vw, 22px) 0;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.trust-counter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 4px clamp(10px, 1.5vw, 18px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease);
  box-sizing: border-box;
}
.trust-counter__item:not(:first-child) {
  border-left: 1px solid var(--color-border);
}
.trust-counter__item--link { cursor: pointer; }
@media (hover: hover) and (pointer: fine) {
  .trust-counter__item--link:hover { transform: translateY(-2px); }
}
.trust-counter__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--color-secondary-dark);
  line-height: 1;
}
.trust-counter__item--link:first-child .trust-counter__value {
  color: var(--color-accent-dark);
}
.trust-counter__label {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}
@media (max-width: 720px) {
  .trust-counter {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-md);
    padding: 8px 0;
    gap: 0;
  }
  .trust-counter__item {
    min-height: 44px;
    padding: 12px 10px;
  }
  .trust-counter__item:nth-child(2) { border-left: 1px solid var(--color-border); }
  .trust-counter__item:nth-child(3) {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
  .trust-counter__item:nth-child(4) {
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
  }
}
@media (max-width: 380px) {
  .trust-counter { grid-template-columns: 1fr; }
  .trust-counter__item:not(:first-child) {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

/* =============================================================
   REVIEWS-SEKTION — Social-Proof-Cards mit Google-Sternen
   Pattern: 2/3-spaltiges Card-Grid mit Highlight-Cards (volle Breite
   auf Desktop für die wichtigsten Stimmen).
   ============================================================= */
.reviews__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.reviews__aggregate-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.reviews__aggregate {
  display: inline-flex;
  align-items: center;
  gap: 10px 14px;
  padding: 10px 18px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .reviews__aggregate:hover {
    transform: translateY(-2px);
    border-color: var(--color-secondary);
  }
}
.reviews__aggregate--primary {
  background: var(--color-secondary-soft);
  border-color: var(--color-secondary);
}
.reviews__aggregate--secondary {
  background: var(--color-bg-elevated);
}
.reviews__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent);
}
.reviews__stars svg { width: 18px; height: 18px; }
.reviews__aggregate-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  color: var(--color-text);
}
.reviews__aggregate-text strong { color: var(--color-text); }
.reviews__aggregate-text small {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.reviews__note {
  margin: 14px auto 0;
  max-width: 60ch;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-style: italic;
}
@media (max-width: 640px) {
  .reviews__aggregate-row { flex-direction: column; gap: 10px; }
  .reviews__aggregate {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    min-height: 44px;
  }
  .reviews__note { font-size: 0.85rem; padding: 0 8px; }
}

/* Widget-Streifen — Logo + Sterne links, Anzahl + Button rechts, über dem Karussell */
.reviews-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  gap: 22px;
  width: min(1180px, 92vw);
  margin-inline: auto;
  min-width: 0;
}
.reviews-widget__brand {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px 36px;
  min-width: 0;
  overflow: visible;
}
.reviews-widget__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.reviews-widget__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
}
.reviews-widget__mark {
  width: 52px;
  height: auto;
  margin: 0 auto 2px;
}
.reviews-widget__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}
.reviews-widget__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
}
.reviews-widget__score .reviews__stars svg {
  width: 16px;
  height: 16px;
}
.reviews-widget__count {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.reviews-widget__powered {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.reviews-widget__brand .btn {
  margin-top: 2px;
}

.reviews-carousel {
  --reviews-gap: 14px;
  --reviews-visible: 4;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "viewport"
    "dots";
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  padding-inline: 22px;
}
.reviews-carousel__viewport {
  grid-area: viewport;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}
.reviews-carousel__track {
  display: flex;
  gap: var(--reviews-gap);
  will-change: transform;
  transition: transform 0.55s var(--ease);
}
.reviews-carousel__nav {
  position: absolute;
  top: 0;
  bottom: 28px;
  margin-block: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  color: var(--color-secondary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.reviews-carousel__nav--prev { left: 0; }
.reviews-carousel__nav--next { right: 0; }
.reviews-carousel__nav svg { width: 18px; height: 18px; }
.reviews-carousel__nav:hover {
  background: var(--color-secondary-soft);
  border-color: var(--color-secondary);
}
.reviews-carousel__nav:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.reviews-carousel__dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 0 0;
}
.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-border);
  cursor: pointer;
}
.reviews-carousel__dot.is-active {
  background: var(--color-secondary);
  width: 18px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 16px 18px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 0 0 var(--review-card-w, 280px);
  width: var(--review-card-w, 280px);
  max-width: var(--review-card-w, 280px);
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}
.review-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent);
}
.review-card__stars svg { width: 14px; height: 14px; }
.review-card__quote {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.42;
  color: var(--color-text);
  quotes: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  min-height: calc(1.42em * 4);
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-secondary-soft);
}
.review-card__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-secondary-dark);
  letter-spacing: 0.04em;
}
.review-card__author-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.75rem;
  line-height: 1.25;
  min-width: 0;
}
.review-card__author-meta strong {
  color: var(--color-secondary-dark);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__author-meta span {
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__badge {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  text-align: right;
  max-width: 9.5ch;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .reviews-carousel { --reviews-visible: 3; }
}
@media (max-width: 880px) {
  .reviews-carousel { --reviews-visible: 2; }
}
@media (max-width: 640px) {
  .reviews-carousel { --reviews-visible: 1; }
  .reviews-carousel__nav { width: 44px; height: 44px; }
  .review-card__quote {
    -webkit-line-clamp: 8;
    line-clamp: 8;
  }
  .reviews-widget__brand {
    gap: 10px 20px;
  }
  .reviews-widget__meta {
    align-items: center;
    text-align: center;
  }
}

/* =============================================================
   GLOBAL MOBILE & ACCESSIBILITY
   -------------------------------------------------------------
   Letzter Block, gewinnt durch Cascade. Adressiert:
   - Tap-Highlight (iOS/Android Grau-Flash bei Tap)
   - Image-Performance (decoding-Hint)
   - Reduced-Motion-Schutz für neue Komponenten
   - iOS-Tap-Delay-Verhinderung
   ============================================================= */

/* Tap-Flash auf Mobile entschärfen — wir steuern Feedback bewusst via :active/:focus */
a, button, .btn, .trust-counter__item, .hero-meta__item, .reviews__aggregate, .review-card, .subnav__item {
  -webkit-tap-highlight-color: rgba(var(--color-vital-rgb), 0.15);
}

/* Below-the-fold Sektionen erst rendern, wenn sie in den Viewport kommen.
   Spart Render-Zeit & Battery auf Mobile (Chromium/Edge/Safari 18+).
   `contain-intrinsic-size` reserviert Platz, um Layout-Shifts (CLS) zu vermeiden. */
.prefooter {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

/* Reduced-Motion: alle neuen Animationen/Transitions deaktivieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reviews-carousel__track,
  .reviews-carousel__nav,
  .trust-counter__item,
  .prefooter,
  .hero-meta__item {
    transition: none !important;
    animation: none !important;
  }
}

/* Sehr kleine Screens: Sub-Nav-Padding noch enger, damit alle Items sichtbar bleiben */
@media (max-width: 380px) {
  .subnav__item { padding: 10px 12px; font-size: 0.88rem; }
}

/* =============================================================
   MOBILE POLISH (max-width only — Desktop ≥981px unverändert)
   Touch-Targets, Safe-Area, Overflow, CTA-Bar, kleine Breakpoints
   ============================================================= */

.mobile-cta-bar {
  transition: transform 0.28s var(--ease), visibility 0.28s var(--ease);
  will-change: transform;
}
.mobile-cta-bar.is-hidden {
  transform: translateY(110%);
  visibility: hidden;
  pointer-events: none;
}
.mobile-cta-bar.is-ready:not(.is-hidden) {
  transform: translateY(0);
}

@media (max-width: 880px) {
  html,
  body {
    overflow-x: clip;
  }

  .mobile-cta-bar__btn {
    min-height: 44px;
  }

  .studio-hero__sound {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    font-size: 0.9rem;
    bottom: 12px;
  }

  .hero-channels__chip {
    min-height: 44px;
    padding: 12px 14px;
  }

  .price-card,
  .price-card li,
  .price-card__addon,
  .price-card__tagline {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-actions,
  .prefooter__actions {
    width: 100%;
  }

  .hero-actions .btn,
  .prefooter__btn {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  /* CTA-Band an gängige Mobile-Layouts angleichen; Safe-Area bereits in body-padding */
  .mobile-cta-bar {
    display: grid;
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .hero-channels__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero__brands {
    flex-wrap: wrap;
    --brands-logo-h: 40px;
    row-gap: 8px;
  }

  .page-hero__brands img.page-hero__mark,
  .page-hero__brands img.page-hero__pt-logo {
    max-width: min(140px, 42vw);
  }

  .page-hero__brands-amp {
    font-size: 1.25rem;
  }
}

@media (max-width: 560px) {
  .gallery-lightbox__close {
    width: 44px;
    height: 44px;
    top: 4px;
    right: 4px;
  }

  .gallery-lightbox__nav {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 400px) {
  .btn,
  .btn-ghost,
  .btn-ghost-light,
  .btn-light,
  .prefooter__btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.25;
    padding-left: 14px;
    padding-right: 14px;
  }

  .btn-arrow::after {
    margin-left: 0.35em;
  }

  .mobile-cta-bar__btn {
    font-size: 0.78rem;
    padding: 8px 4px;
  }

  .mobile-cta-bar__btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  /* iOS verhindert Zoom bei Fokus, sobald Inputs ≥16px sind */
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
