/* =========================================================
   PRO ACADEMIE X — Stylesheet
   Aesthetic: refined sport-luxury (Apple stillness × Nike energy)
   Conforms to taste-skill rules:
     - Single accent (desaturated cyan), no purple
     - Asymmetric hero (DESIGN_VARIANCE 8)
     - Bento grid instead of 3 equal cards
     - Liquid Glass refraction (1px inner border + inset highlight)
     - Tactile :active feedback, spring-easing transitions
     - Animations only on transform/opacity
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy:        #0a1932;
  --navy-2:      #102544;
  --navy-3:      #1a3160;
  --off-white:   #fafbfc;
  --cream:       #f6f7f9;
  --white:       #ffffff;
  --text:        #0a1932;
  --text-muted:  #5b6878;
  --border:      rgba(10, 25, 50, 0.08);
  --border-strong: rgba(10, 25, 50, 0.18);

  /* Primary accent — desaturated electric cyan */
  --accent:      #00b8d9;
  --accent-2:    #008fb0;
  --accent-soft: rgba(0, 184, 217, 0.14);
  --grad-text:   linear-gradient(120deg, #00b8d9 0%, #008fb0 100%);

  /* ---- Subtle violet — used only as a quiet accent on the Camps section.
     Everything else stays on the navy/cyan core. */
  --violet:      #8a5cf0;
  --violet-2:    #6b3fd0;
  --violet-soft: rgba(138, 92, 240, 0.16);

  --display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", Arial, sans-serif;
  --body:    "SF Pro Text",    -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Helvetica", Arial, sans-serif;

  --r-soft:  20px;
  --r-tile:  28px;
  --r-pill:  999px;

  /* Premium spring-feel easings (taste-skill) */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quick:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  220ms var(--ease-quick);
  --t-mid:   480ms var(--ease-spring);
  --t-slow:  720ms var(--ease-spring);

  /* Tinted (not neon) shadows */
  --shadow-sm: 0 2px 6px rgba(10, 25, 50, 0.05);
  --shadow-md: 0 12px 28px -8px rgba(10, 25, 50, 0.10);
  --shadow-lg: 0 30px 60px -20px rgba(10, 25, 50, 0.18);
  --shadow-tinted: 0 18px 40px -18px rgba(0, 143, 176, 0.28);

  --max:     1240px;
  --pad-x:   clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Film grain on a fixed pseudo (no scroll repaint cost) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 0.95;
  color: var(--navy);
}

h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.08; letter-spacing: -0.04em; padding-bottom: 0.06em; }
h3 { font-size: 1.4rem; letter-spacing: -0.02em; line-height: 1.18; }

p { margin: 0 0 1em; }

.accent {
  display: inline-block;          /* allows padding to actually clip-extend */
  font-style: italic;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  padding-top: 0.12em;            /* Oberlängen-Raum, damit Versalien (A) oben nicht geclippt werden */
  padding-right: 0.12em;          /* breathing room so italic glyphs (?, X) aren't clipped */
  padding-bottom: 0.16em;          /* descender breathing room (g, j, p, y) */
  line-height: 1.18;
}

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.eyebrow-dark  { color: var(--navy);  border-color: var(--border-strong); }
.eyebrow-light { color: var(--accent); border-color: rgba(0, 184, 217, 0.45); }

/* ---- Camps: the one section with a subtle violet accent ----
   Only the accent variables shift to violet; everything else
   stays on the navy/cyan core. */
#camps {
  --accent: var(--violet);
  --accent-2: var(--violet-2);
  --accent-soft: var(--violet-soft);
  --grad-text: linear-gradient(120deg, #b69bff 0%, var(--violet) 100%);
}

/* Flat-ground alternation so adjacent light sections stay distinct */
#training { background: var(--cream); }

/* ---------- Hero category eyebrow (clear topic signal) ---------- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
  padding: 6px 0;
  position: relative;
  max-width: 100%;
  text-align: center;
}
.hero-eyebrow::before,
.hero-eyebrow::after { display: none; }
.hero-eyebrow .dot-sep {
  letter-spacing: 0;
  color: var(--accent);
  font-size: 1.4em;
  line-height: 0;
}
@media (max-width: 480px) {
  .hero-eyebrow { letter-spacing: 0.2em; gap: 8px; }
}

/* Status chip — moved beneath the CTAs, smaller live indicator */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 8px 14px 8px 12px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid rgba(0, 184, 217, 0.30);
  box-shadow: 0 4px 14px -6px rgba(10, 25, 50, 0.12);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  max-width: 100%;
  text-align: center;
}
/* When the chip sits at the very top (replacing the eyebrow), drop the top
   margin and add bottom spacing instead. */
.status-chip--top { margin-top: 0; margin-bottom: 18px; }
@media (max-width: 380px) {
  .status-chip { font-size: 11px; padding: 7px 12px 7px 10px; }
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  box-shadow: 0 0 0 0 rgba(0, 184, 217, 0.6);
  animation: status-pulse 2s var(--ease-spring) infinite;
  will-change: transform, box-shadow;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 184, 217, 0.55); transform: scale(1); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 184, 217, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(0, 184, 217, 0); transform: scale(1); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform 320ms var(--ease-spring),
              box-shadow var(--t-fast),
              background var(--t-fast),
              color var(--t-fast),
              border-color var(--t-fast);
  white-space: nowrap;
  position: relative;
  will-change: transform;
  border: 1.5px solid transparent;   /* default so primary/secondary share height */
}
/* Tactile feedback (taste-skill Rule 5) */
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),     /* liquid glass top edge */
    0 10px 24px -10px rgba(10, 25, 50, 0.40);     /* tinted, tight diffusion */
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px -12px rgba(0, 143, 176, 0.40);
}
/* Akzent-Button (Cyan) — für dunkle Sektionen, damit er sich vom Navy-Grund abhebt */
.btn-accent {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 26px -10px rgba(0, 184, 217, 0.5);
}
.btn-accent:hover {
  background: #1ccfee;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(0, 184, 217, 0.6);
}
/* Outline-Button (Telefon) — auf dunklem Grund, heller Rahmen */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(0, 184, 217, 0.10);
}
.btn-large { padding: 20px 36px; font-size: 1.05rem; }
.btn-small { padding: 10px 18px; font-size: 0.85rem; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-row.center { justify-content: center; }
.cta-row--big { margin: 8px 0 36px; }

/* Icon buttons (phone / mail / instagram) */
.btn-icon {
  gap: 10px;
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.btn-icon svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.btn-icon:hover svg { opacity: 1; transform: scale(1.06); }

.cta-direct {
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.contact-alt-label {
  margin: 36px 0 0;
  text-align: center;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 1.6vw, 14px) var(--pad-x);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 12px);
}

/* Logo always sits on a clean white pad — consistent on any background */
.logo-mark {
  display: grid;
  place-items: center;
  width: clamp(34px, 7vw, 44px);
  height: clamp(34px, 7vw, 44px);
  border-radius: clamp(9px, 1.8vw, 12px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-sm);
}
.logo-mark img {
  width: clamp(24px, 5vw, 32px);
  height: clamp(24px, 5vw, 32px);
  object-fit: contain;
  display: block;
}
.footer-logo .logo-mark {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}
.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  letter-spacing: clamp(0.10em, 0.18em, 0.18em);
  color: var(--navy);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
}
.nav a {
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
  position: relative;
  transition: color var(--t-fast);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--t-mid);
}
.nav a:hover { color: var(--accent-2); }
.nav a:hover::after { width: 100%; }

.nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: clamp(7px, 1.2vw, 10px) clamp(12px, 2.2vw, 18px);
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: background var(--t-fast);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--accent-2); color: var(--white); }

/* Instagram icon link in nav */
.nav-ig {
  display: inline-grid;
  place-items: center;
  width: clamp(34px, 4.6vw, 38px);
  height: clamp(34px, 4.6vw, 38px);
  border-radius: 50%;
  color: var(--navy);
  border: 1px solid var(--border-strong);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.nav-ig::after { display: none; }
.nav-ig:hover {
  color: var(--accent-2);
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ---------- Hamburger-Button (mobil) ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  /* z-index in der Media-Query gesetzt (muss ÜBER dem offenen Menü liegen) */
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, background .2s ease;
}
/* Offenes Menü (dunkel): X-Striche weiß, damit sichtbar */
.nav-burger.is-open span { background: var(--white); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Off-Canvas Mobile-Menü ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s .35s;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 4vh, 30px);
  text-align: center;
}
.mobile-nav__links a {
  font-family: var(--display);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: color .2s ease;
}
.mobile-nav.is-open .mobile-nav__links a {
  animation: mnavIn .5s cubic-bezier(.16,1,.3,1) forwards;
}
.mobile-nav.is-open .mobile-nav__links a:nth-child(1) { animation-delay: .06s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(2) { animation-delay: .11s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(3) { animation-delay: .16s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(4) { animation-delay: .21s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(5) { animation-delay: .26s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(6) { animation-delay: .31s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(7) { animation-delay: .36s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(8) { animation-delay: .41s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(9) { animation-delay: .46s; }
.mobile-nav__links a:hover { color: var(--accent); }
.mobile-nav__cta {
  margin-top: 8px;
  padding: 12px 32px;
  background: var(--accent);
  color: var(--navy) !important;
  border-radius: var(--r-pill);
  font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
}
.mobile-nav__ig {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.6) !important;
  letter-spacing: 0.04em;
}
@keyframes mnavIn { to { opacity: 1; transform: translateY(0); } }
body.nav-locked { overflow: hidden; }

@media (max-width: 980px) {
  .nav a:not(.nav-cta):not(.nav-ig) { display: none; }
  /* Burger fixiert oben rechts als eigener Top-Layer — liegt so AUCH über dem
     offenen Vollbild-Menü (z-index 55) und bleibt zum Schließen klickbar. */
  .nav-burger {
    display: flex;
    position: fixed;
    top: clamp(8px, 1.6vw, 14px);
    right: var(--pad-x);
    z-index: 60;
  }
  /* Desktop-Nav-Reste (CTA + IG) im Header ausblenden, alles steckt im Off-Canvas */
  .nav { display: none; }
}
@media (max-width: 540px) {
  .nav-ig { display: none; }
}

/* ---------- HERO — asymmetric split (DESIGN_VARIANCE 8) ---------- */
.hero {
  position: relative;
  min-height: 100dvh;                              /* viewport stability */
  padding: 140px var(--pad-x) 80px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--navy);
}

/* Football pitch markings — embedded watermark, sport context cue.
   Skaliert auf allen Größen identisch zum Desktop, nur proportional kleiner. */
.hero-pitch {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: min(96vw, 1200px);
  height: auto;
  z-index: -1;
  pointer-events: none;
}
/* Lines group: faded watermark + outward intensifying mask */
.pitch-lines {
  color: var(--navy);
  opacity: 0.14;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,1) 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, rgba(0,0,0,0.30) 0%, rgba(0,0,0,1) 75%);
}
/* Mobile: harter Center-Fade auf der GESAMTEN Pitch-SVG — Linien UND Tactical-Layer
   (Pfeile, Punkte, X-Marks) werden im Center komplett ausgeblendet, nur an den
   Rändern (Strafräume) bleibt das Spielfeld als Decor sichtbar. So überlagert
   nichts mehr den Hero-Text. */
@media (max-width: 720px) {
  .hero-pitch {
    mask-image: radial-gradient(
      ellipse 80% 78% at 50% 50%,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,0)  30%,    /* sauberer Tunnel bis 30 % Radius */
      rgba(0,0,0,1)  70%     /* ab 70 % volle Sichtbarkeit an den Rändern */
    );
    -webkit-mask-image: radial-gradient(
      ellipse 80% 78% at 50% 50%,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,0)  30%,
      rgba(0,0,0,1)  70%
    );
  }
  /* Inner mask jetzt überflüssig, da der Outer-Mask alles abdeckt */
  .pitch-lines {
    opacity: 0.22;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
/* Initial state for stroke-draw-in (GSAP animates strokeDashoffset → 0) */
.pitch-stroke {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
/* Tactical layer — drawn at low opacity so it reads as background */
.pitch-arrows,
.play-marks,
.play-positions { pointer-events: none; }

.tactic-arrow {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;                       /* GSAP fades to ~0.45 */
  filter: drop-shadow(0 0 4px rgba(0, 184, 217, 0.25));
}
/* The shot — same draw-in mechanism, slightly stronger presence */
.tactic-shot {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;                       /* GSAP fades to ~0.70 */
  filter: drop-shadow(0 0 6px rgba(0, 184, 217, 0.45));
}
.tactic-dash {
  stroke-dasharray: 7 5;
  opacity: 0;                       /* GSAP fades to ~0.30 */
  filter: drop-shadow(0 0 3px rgba(0, 184, 217, 0.20));
}
.tactic-x {
  opacity: 0;                       /* GSAP fades to ~0.55 with pop-in */
  filter: drop-shadow(0 0 3px rgba(0, 184, 217, 0.30));
}
/* Player position dots — coach's formation markers */
.player-dot {
  opacity: 0;                       /* GSAP fades to ~0.55 with scale-up */
  filter: drop-shadow(0 0 3px rgba(0, 184, 217, 0.35));
  transform-box: fill-box;
  transform-origin: center;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-title {
  font-size: clamp(2.8rem, 8.4vw, 6.4rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
  color: var(--navy);
  max-width: 14ch;
}
.hero-title .accent {
  display: inline-block;
  letter-spacing: -0.02em;
  padding-right: 0.12em;
  margin-left: 0.05em;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent-2);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.hero-tagline em { font-style: italic; }

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto 22px;
  line-height: 1.45;
}

.hero .cta-row { justify-content: center; }

/* ---------- Hero full-bleed video background ----------
   Video covers the whole hero; a navy scrim keeps the (white) copy readable.
   The pitch SVG sits above the video but below the copy as a faint texture. */
.hero--video { color: var(--white); }

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 9:16 clip cropped to fill the wide hero */
  object-position: center 38%;
  display: block;
}
/* Layered scrim: darker at the edges, readable behind centred copy */
.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 46%, rgba(10, 25, 50, 0.46), rgba(10, 25, 50, 0.72) 78%),
    linear-gradient(180deg, rgba(10, 25, 50, 0.55) 0%, rgba(10, 25, 50, 0.30) 38%, rgba(10, 25, 50, 0.78) 100%);
}

/* Copy goes light for contrast against the video */
.hero--video .hero-title { color: var(--white); }
.hero--video .hero-tagline { color: #6fe3f5; }
.hero--video .hero-sub { color: rgba(255, 255, 255, 0.86); }
.hero--video .status-chip {
  background: rgba(10, 25, 50, 0.55);
  border-color: rgba(0, 184, 217, 0.55);
  color: #8fe9f8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Secondary CTA on the dark video: white outline instead of navy */
.hero--video .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero--video .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

@media (max-width: 720px) {
  .hero-video-media { object-position: center 32%; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  position: relative;
}
/* Anchor jumps clear the fixed header */
.section[id],
#anfrage { scroll-margin-top: 90px; }
.anchor-offset { display: block; }
.section-light { background: var(--white); }

/* Trainer section — soft cyan-tinted ground for clear separation from white Training above */
.section-trainer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Large watermark logo behind the trainer content */
.section-trainer .section-inner {
  position: relative;
  z-index: 1;
}
.trainer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(360px, 55vw, 760px);
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Werdegang — vertical alternating timeline ---------- */
.section-cv {
  background: var(--white);
  border-top: 1px solid var(--border);
  position: relative;
}
.section-cv::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) scaleX(var(--line-scale, 1));
  width: clamp(120px, 18vw, 240px);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}
/* Werdegang — durchgehende, einspaltige Liste (Desktop = Mobil, keine Cross-Spalten) */
.cv-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  position: relative;
}
/* durchgehende Linie links */
.cv-list::before {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px;
  left: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 184, 217, 0.25) 100%);
}
.cv-entry {
  position: relative;
  padding: 0 0 clamp(28px, 4vw, 40px) clamp(34px, 5vw, 48px);
}
.cv-entry:last-child { padding-bottom: 0; }
/* Punkt auf der Linie */
.cv-entry::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--accent);
  box-shadow: 0 0 0 5px var(--cv-bg, var(--cream));
  z-index: 1;
}
.cv-entry--origin::before { background: var(--accent); }
.cv-year {
  display: block;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.cv-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-soft);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.cv-body h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 8px;
}
.cv-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Spieler- & Vereinsvermittlung ---------- */
.section-mediation {
  border-top: 1px solid var(--border);
  position: relative;
}
.mediation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.mediation-text h2 { margin: 0 0 4px; }
.mediation-note {
  margin: 20px 0 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
/* Vermittlung: nummerierte Schritte mit markanten Überschriften */
.mediation-points {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
  counter-reset: medstep;
}
.mediation-point {
  position: relative;
  counter-increment: medstep;
  padding-left: clamp(52px, 6vw, 68px);
}
/* große Schritt-Nummer in Akzentfarbe */
.mediation-point::before {
  content: counter(medstep, decimal-leading-zero);
  position: absolute;
  top: -2px;
  left: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
.mediation-point h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.15;
}
.mediation-point p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .mediation-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Camps auf Anfrage ---------- */
.camps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.camp-tile {
  padding: 30px 26px;
  border-radius: var(--r-tile);
  background: rgba(16, 37, 68, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  transition: transform var(--t-mid), border-color var(--t-mid), background var(--t-mid);
}
.camp-tile:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 40px -18px rgba(138, 92, 240, 0.5);
}
.camp-tile h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 10px;
}
.camp-tile p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
}
.camps-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 64px);
  text-align: center;
}
.camps-ages {
  margin: 0;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 980px) {
  .camps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .camps-grid { grid-template-columns: 1fr; }
}

/* (Cyan-Akzentlinie über der Trainer-Sektion entfernt) */
.section-dark {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.section-dark h2,
.section-dark h3 { color: var(--white); }

/* Camps — flat navy, one quiet violet hairline accent at the top edge */
#camps.section-dark {
  background: var(--navy);
  position: relative;
}
#camps.section-dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--violet);
  opacity: 0.6;
  transform: scaleX(var(--line-scale, 1));
  transform-origin: center;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.section-inner.narrow { max-width: 820px; text-align: center; }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head h2 { max-width: 18ch; }
.section-lead {
  margin: 20px 0 0;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.lead-large {
  margin: 28px auto 0;
  max-width: 60ch;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* ---------- Three equal feature cards ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bento-tile {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--r-tile);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),         /* liquid-glass refraction */
    var(--shadow-sm);
  transition: transform var(--t-mid),
              border-color var(--t-mid),
              box-shadow var(--t-mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 217, 0.40);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--shadow-md);
}
.bento-tile h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.bento-tile p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

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

/* ---------- Training film — looping clip + caption ---------- */
.training-film {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 88px);
}

/* 9:16 portrait clip with the project's diagonal frame-border treatment */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  justify-self: center;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1.5px solid rgba(0, 184, 217, 0.40);
  border-radius: var(--r-tile);
  pointer-events: none;
  z-index: -1;
}
.training-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--r-tile);
  background: var(--navy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    var(--shadow-lg);
}

.training-film-text { max-width: 46ch; }
.training-film-text h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 14px 0 16px;
}
.training-film-text p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .training-film {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .training-film-text { max-width: 52ch; margin: 0 auto; }
  .video-frame { max-width: 300px; }
  .video-frame::before { inset: 12px -12px -12px 12px; }
}

/* ---------- Process Steps (5-step path) ----------
   Flat cream ground, distinct from the white Training section above.
*/
.section-process {
  background: var(--cream);
  border-top: 1px solid var(--border);
  position: relative;
}
.section-process::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) scaleX(var(--line-scale, 1));
  width: clamp(120px, 18vw, 240px);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}
/* Step cards on the cool grey ground — slightly stronger shadow so they lift */
.section-process .step {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 4px 18px -10px rgba(10, 25, 50, 0.10);
}
.section-process .step-num {
  /* punch-out matches the cream ground so the journey line still reads */
  box-shadow: 0 0 0 6px var(--cream);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
/* Continuous journey line connecting the step numbers */
.steps::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 14%,
    var(--accent) 86%,
    transparent 100%
  );
  opacity: 0.45;
  pointer-events: none;
}

.step {
  position: relative;
  padding: 28px 22px 26px;
  border-radius: var(--r-soft);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-sm);
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
}
.step:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-md);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--accent);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px var(--white); /* punch-out so it sits cleanly on the journey line */
}
.step h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 8px;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.step--final {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 38%, transparent);
}
.step--final .step-num {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Trainer ---------- */
.trainer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.trainer-photo { position: relative; }
.photo-frame {
  position: relative;
  width: 100%;
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 0;                        /* killt evtl. inline-Lücke unter dem Bild */
}
.photo-img {
  display: block;
  width: 100%;
  height: auto;                        /* keine feste Höhe -> Frame = exakt Bildhöhe, kein weißer Streifen */
}
/* "Head Coach" unten direkt im Bild (Overlay, kein heller Abstand) */
.trainer-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 20px 16px;
  text-align: center;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 25, 50, 0.75), transparent);
  z-index: 3;
}

.trainer-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 28px;
}
.trainer-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 60ch;
}
.trainer-signoff {
  font-style: italic;
  color: var(--navy) !important;
  font-weight: 500;
  margin-top: 24px !important;
}

@media (max-width: 820px) {
  .trainer-grid { grid-template-columns: 1fr; }
  .photo-frame { max-width: 380px; }
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: clamp(100px, 14vw, 180px) var(--pad-x);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.6;
  transform: scaleX(var(--line-scale, 1));
  transform-origin: center;
}
.cta-inner {
  text-align: center;
  max-width: 900px;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 18px auto 24px;
  max-width: 16ch;
}
.cta-inner > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 0 auto 40px;
}
.cta-inner h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 18px auto 24px;
  max-width: 16ch;
}

/* Standalone contact page — leave room for fixed header */
.page-contact { background: var(--navy); }
.contact-page {
  min-height: 100dvh;
  padding-top: clamp(120px, 16vw, 180px);
  display: flex;
  align-items: center;
}

/* ---------- Contact form (in CTA section) ---------- */
/* Danke-Seite: Häkchen-Kreis */
.danke-check {
  width: 84px; height: 84px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 14px 34px -10px rgba(0, 184, 217, 0.55);
}

/* Honeypot: für Menschen unsichtbar, Bots füllen es aus */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
/* DSGVO-Checkbox-Zeile */
.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.field-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.field-consent a { color: var(--accent); text-decoration: underline; }
/* Fehlermeldung */
.form-error {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r-soft);
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #ffd7d7;
  font-size: 0.9rem;
}

.contact-form {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-tile);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 60px -20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.field-opt {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.40);
  margin-left: 4px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(10, 25, 50, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.45;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(10, 25, 50, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.18);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form .field--error input {
  border-color: rgba(244, 80, 80, 0.7);
}

.form-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}
.form-note {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  max-width: 38ch;
}
.form-foot .btn { white-space: nowrap; }
@media (max-width: 600px) {
  .form-foot { grid-template-columns: 1fr; }
  .form-foot .btn { width: 100%; }
}

.form-success {
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0, 184, 217, 0.12);
  border: 1px solid rgba(0, 184, 217, 0.35);
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
}
.form-success strong { color: var(--accent); margin-right: 6px; }

.contact-alt {
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}
.contact-alt a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.contact-alt a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact-alt .dot-sep {
  margin: 0 10px;
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px var(--pad-x) 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-logo { margin-bottom: 0; }
.footer-logo .logo-text { color: var(--white); }
.footer-tag {
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin: 0;
  white-space: nowrap;
}
.footer-tag em { font-style: italic; }
.footer-tag-small {
  font-size: 0.85rem;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 520px) {
  .footer-tag-small { border-left: 0; padding-left: 0; }
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-end;
  align-items: center;
}
.footer-links a {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

@media (max-width: 720px) {
  .footer-grid { justify-content: flex-start; }
  .footer-links { justify-content: flex-start; }
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  max-width: 560px;
  width: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 60;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.4;
}
.cookie-banner[hidden] { display: none; }

@media (max-width: 520px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Social Proof Section (dark) ---------- */
.section-proof {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.section-proof .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-proof h2 { color: var(--white); }
.lead-on-dark { color: rgba(255, 255, 255, 0.7); }

/* Stats grid */
.stats {
  list-style: none;
  margin: 0 0 72px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  position: relative;
  padding: 36px 24px;
  border-radius: var(--r-tile);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 60px -30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color var(--t-mid), transform var(--t-mid);
}
.stat:hover {
  border-color: rgba(0, 184, 217, 0.45);
  transform: translateY(-3px);
}
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: baseline;
}
.stat-plus {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 0.05em;
  -webkit-background-clip: text;
          background-clip: text;
}
.stat-label {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28ch;
}
@media (max-width: 820px) {
  .stats { grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px; }
  .stat { padding: 28px 22px; }
}

/* Testimonials */
/* Erfahrungsberichte als Karussell (Auto-Scroll + Drag, wie YARS) */
.rev-viewport {
  overflow: hidden;
  cursor: grab;
  padding: 8px clamp(16px, 4vw, 40px) 4px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  touch-action: pan-y;
}
.rev-viewport.is-dragging { cursor: grabbing; }
.rev-track {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 22px);
  width: max-content;
  will-change: transform;
}
.rev-card {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 380px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px 26px;
  border-radius: var(--r-tile);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 50px -24px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}
.rev-quote {
  width: 28px; height: 22px;
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}
.rev-card p {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}
.rev-card footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rev-card footer span:first-child {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.rev-card footer span:last-child {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.rev-hint {
  text-align: center;
  margin-top: 22px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Training: highlighted third tile ---------- */
.bento-tile--accent {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
.bento-tile--accent h3 { color: var(--accent-2); }

/* ---------- Ablauf: 3-step layout ---------- */
.steps--three {
  grid-template-columns: repeat(3, 1fr);
}
.steps--three::before {
  /* re-anchor the journey line for 3 wider columns */
  left: 8%;
  right: 8%;
}
@media (max-width: 820px) {
  .steps--three { grid-template-columns: 1fr; }
  .steps--three::before { display: none; }
}

/* ---------- Floating Instagram FAB ---------- */
/* FAB-Gruppe: Telefon + Instagram gestapelt unten rechts */
.fab-group {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-fab {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  line-height: 0;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px -10px rgba(10, 25, 50, 0.28);
  transition: transform var(--t-mid), color var(--t-fast),
              border-color var(--t-fast), background var(--t-fast),
              box-shadow var(--t-fast);
}
.social-fab:hover {
  color: var(--accent-2);
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 36px -12px rgba(0, 143, 176, 0.40);
}
.social-fab:active { transform: translateY(0) scale(0.96); }
/* Telefon-FAB: in Akzentfarbe gefüllt, damit er als primäre Aktion auffällt */
.social-fab--phone {
  background: var(--accent);
  color: var(--navy);
  border-color: transparent;
}
.social-fab--phone:hover {
  background: #1ccfee;
  color: var(--navy);
  border-color: transparent;
}
/* SVG im FAB exakt zentriert (Grid-Item, kein inline-Baseline-Versatz) */
.social-fab svg { display: block; grid-area: 1 / 1; }
@media (max-width: 520px) {
  .fab-group { right: 14px; bottom: 14px; gap: 10px; }
  .social-fab { width: 46px; height: 46px; }
  .social-fab svg { width: 19px; height: 19px; }
}

/* ---------- FAQ ---------- */
.section-faq {
  background: var(--white);
  border-top: 1px solid var(--border);
  position: relative;
}
.section-faq::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 18vw, 240px);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
}
.faq-item {
  border-radius: var(--r-soft);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-sm);
  transition: border-color var(--t-mid), box-shadow var(--t-mid),
              transform var(--t-mid);
  overflow: hidden;
}
.faq-item:hover {
  border-color: rgba(0, 184, 217, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), var(--shadow-md);
}
.faq-item details { width: 100%; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-grid;
  place-items: center;
  transition: transform var(--t-mid), background var(--t-fast);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent-2);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.6px; }
.faq-icon::after  { width: 1.6px; height: 10px; transition: transform var(--t-mid); }
.faq-item details[open] summary { color: var(--accent-2); }
.faq-item details[open] .faq-icon { background: rgba(0, 184, 217, 0.22); transform: rotate(180deg); }
.faq-item details[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-body {
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 70ch;
}
.faq-body p { margin: 0; }

/* Smooth open animation (no JS, pure CSS) */
.faq-item details[open] .faq-body { animation: faq-fade 320ms var(--ease-spring); }
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Section mit Hintergrundbild (via <img>, kann nicht kacheln) ---------- */
.section-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Mobil-Foto in der Trainingsmethodik: standardmäßig (Desktop) versteckt */
.train-photo-mobile { display: none; }

/* Bei Bild-Sektionen: seitliches Padding vom Section-Element auf den Inner verlagern,
   damit das Hintergrundbild bündig bis an die Kanten reicht (kein Rand, kein Überstand). */
.section-bg { padding-left: 0; padding-right: 0; }
.section-bg > .section-inner { padding-left: var(--pad-x); padding-right: var(--pad-x); }
/* Bild füllt exakt die Section (inset:0, jetzt ohne seitliches Padding = bündig). */
.section-bg .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}
/* Training (Bälle/Platz-Bild) auf Desktop: unteren Bildbereich zeigen */
#training .section-bg-img { object-position: center 78%; }
/* Overlay-Ebene über dem Bild */
.section-bg::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
}
/* hell (dunkler Text, z.B. Training) */
.section-bg--light::before {
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.86) 0%, rgba(247, 248, 250, 0.62) 100%);
}
/* dunkel (heller Text, z.B. Camps) */
.section-bg--dark::before {
  background: linear-gradient(180deg, rgba(10, 25, 50, 0.84), rgba(10, 25, 50, 0.92));
}
/* Bento-Kacheln brauchen auf dem Bild etwas mehr Halt */
.section-bg .bento-tile {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
}
/* Mobil: Bild zentriert, Motiv mittig halten */
@media (max-width: 760px) {
  .section-bg .section-bg-img { object-position: center center; }

  /* Training mobil: Bild NICHT als Hintergrund, sondern als Foto oben in der Section.
     Darunter (im section-inner) Überschrift + Kacheln auf Creme-Grund. */
  /* Training mobil: Hintergrundbild aus, stattdessen Foto zwischen Titel und Kacheln */
  #training.section-bg { background: var(--cream); }
  #training.section-bg::before { display: none; }            /* kein Overlay mobil */
  #training .section-bg-img { display: none; }               /* Desktop-Hintergrundbild mobil aus */
  /* kleiner Abstand Titel -> Foto */
  #training .section-head { margin-bottom: clamp(18px, 4vw, 24px); }
  /* das Mobil-Foto erscheint (Desktop: versteckt, siehe unten) */
  .train-photo-mobile {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 45%;
    border-radius: var(--r-tile);
    margin: 0 0 clamp(24px, 5vw, 32px);
  }
}
/* Camps: solid-navy-Background muss weg (würde das <img> verdecken),
   und das dunkle Overlay liegt auf ::after, weil ::before die violette Hairline ist. */
#camps.section-bg--dark { background: transparent; }
#camps.section-bg--dark::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 25, 50, 0.84), rgba(10, 25, 50, 0.92));
}

/* ---------- Section-Fotos (eingebaute Bilder) ---------- */
.section-photo {
  margin: clamp(36px, 5vw, 64px) auto 0;
  border-radius: var(--r-tile);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
}
.section-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 25, 50, 0.32) 100%);
  pointer-events: none;
}
/* breites Bild quer durch die Sektion */
.section-photo--wide {
  width: 100%;
  aspect-ratio: 16 / 9;
}
/* dezenteres Inline-Bild innerhalb einer Textspalte */
.section-photo--inline {
  margin-top: clamp(24px, 3vw, 36px);
  aspect-ratio: 4 / 3;
}

/* CTA mit Trainer-Foto: 2-spaltig */
.cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.cta-photo {
  margin: 0;
  border-radius: var(--r-tile);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-2);
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
}
.cta-photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cta-grid .cta-inner { text-align: left; margin: 0; }
.cta-grid .cta-row { justify-content: flex-start; }
@media (max-width: 860px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-photo { max-width: 380px; margin: 0 auto; }
  .cta-grid .cta-inner { text-align: center; }
  .cta-grid .cta-row { justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .status-dot { animation: none; }
}

/* ============ Legal-Seiten (Impressum / Datenschutz) ============ */
.page-legal { background: var(--cream); }
.legal-section {
  padding: clamp(110px, 14vw, 160px) var(--pad-x) clamp(60px, 8vw, 90px);
  background: var(--cream);
  min-height: 70vh;
}
.legal-section .section-inner { max-width: 860px; }
.legal-title {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 clamp(24px, 4vw, 40px);
}
/* Container, der den Kanzlei-Text ans Design anpasst (Inhalt bleibt von der Kanzlei) */
.legal-doc {
  font-size: 15.5px;
  line-height: 1.72;
  color: #2c3845;
}
.legal-doc :is(h1, h2, h3, h4) {
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 1.8em 0 0.6em;
  font-weight: 700;
}
.legal-doc h1 { font-size: clamp(22px, 3.4vw, 30px); }
.legal-doc h2 { font-size: clamp(19px, 2.6vw, 24px); }
.legal-doc h3 { font-size: 17px; }
.legal-doc h4 { font-size: 15.5px; }
.legal-doc p { margin: 0 0 1em; }
.legal-doc a { color: var(--accent-2); text-decoration: underline; word-break: break-word; }
.legal-doc a:hover { color: var(--navy); }
.legal-doc ul, .legal-doc ol { margin: 0 0 1em; padding-left: 1.4em; }
.legal-doc li { margin: 0 0 0.4em; }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 0 0 1em; }
.legal-doc td, .legal-doc th { border: 1px solid rgba(10,25,50,0.12); padding: 8px 10px; text-align: left; vertical-align: top; }
