/* ============================================================
   EYA FOOTBALL ACADEMY · v2
   Dunkle Flutlicht-Markenwelt · Editorial · Kampagne
   ============================================================ */

/* ---------- Fonts (self-hosted via Fontshare/Google im HTML) ---------- */

:root {
  color-scheme: dark;
  /* Farbwelt (Standard: dunkle Flutlicht-Nacht) */
  --bg: #0d0c0a;
  --bg-2: #14110e;
  --bg-3: #1a1612;
  --ink: #f0ede6;
  --muted: #9d978c;
  --line: rgba(240, 237, 230, 0.14);
  --line-soft: rgba(240, 237, 230, 0.08);
  --accent: #b23a26;
  --accent-ink: #f2efe8;
  /* Text auf abgedunkelten Medien (Hero/CTA) bleibt IMMER hell, in beiden Themes */
  --on-media: #f2efe8;
  --on-media-dim: rgba(242, 239, 232, 0.72);
  /* Themenabhängige Werte, die automatisch flippen (kein Reihenfolge-Problem) */
  --hairline: rgba(240, 237, 230, 0.5);   /* Outline-Kontur (coach__name) */
  --grain-op: 0.055;
  --grain-blend: normal;

  /* Typo */
  --font-display: "Clash Display", "Archivo", sans-serif;
  --font-text: "Satoshi", "Inter", sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* Fluid scale */
  --step--1: clamp(0.78rem, 0.72rem + 0.2vw, 0.9rem);
  --step-0: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  --step-1: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem);
  --step-3: clamp(2.2rem, 1.6rem + 3vw, 4rem);
  --step-4: clamp(3rem, 1.8rem + 6vw, 7rem);
  --step-5: clamp(3.6rem, 2rem + 9vw, 10.5rem);

  /* Raum */
  --sp-1: clamp(1rem, 2vw, 1.5rem);
  --sp-2: clamp(1.5rem, 3vw, 2.5rem);
  --sp-3: clamp(2.5rem, 5vw, 4.5rem);
  --sp-4: clamp(4rem, 8vw, 7.5rem);
  --sp-5: clamp(6rem, 12vw, 11rem);
  --gutter: clamp(1.25rem, 5vw, 6rem);

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

/* ===== Light-Mode: passt sich automatisch der System-Einstellung an ===== */
@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #f2efe8;
    --bg-2: #eae5db;
    --bg-3: #e2dccf;
    --ink: #17140f;
    --muted: #6f685d;
    --line: rgba(23, 20, 15, 0.18);
    --line-soft: rgba(23, 20, 15, 0.1);
    --hairline: rgba(23, 20, 15, 0.5);
    --grain-op: 0.04;
    --grain-blend: multiply;
  }
}

/* Medien-Sektionen (Hero/CTA) liegen über abgedunkeltem Video/Foto:
   Text bleibt in BEIDEN Themes hell, damit immer lesbar. */
.hero h1, .hero .accent, .cta h2, .cta .accent { color: var(--on-media); -webkit-text-stroke: 0; }
.hero__foot p, .hero__scroll, .cta .eyebrow, .cta p { color: var(--on-media-dim); }
.hero__foot { border-color: rgba(242, 239, 232, 0.16); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
/* Bilder nicht anklickbar: kein iOS-Longpress-Menü, kein Drag, keine Auswahl */
img { pointer-events: none; -webkit-user-drag: none; user-select: none; -webkit-touch-callout: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Filmkorn über allem */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: var(--grain-op);
  mix-blend-mode: var(--grain-blend);
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 3000;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.7rem 1.2rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Typo-Helfer ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.h-hero { font-size: var(--step-5); }
.h-xl { font-size: var(--step-4); }
.h-lg { font-size: var(--step-3); }
.h-md { font-size: var(--step-2); }
.mono {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Highlights in Headlines: Weiss + Kursiv, besondere Stellen als Outline */
.accent { color: var(--ink); }
.method__head .accent, .quote .accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.muted { color: var(--muted); }
.lead { font-size: var(--step-1); line-height: 1.45; font-weight: 400; }

/* Eyebrow: Mono-Zeile mit Punkt */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 0.5em; height: 0.5em;
  background: var(--accent);
  border-radius: 50%;
  flex: none;
}

/* Zeilen-Reveal (Maske) */
.line { display: block; overflow: hidden; }
.line > span { display: inline-block; will-change: transform; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), 1440px); margin-inline: auto; }
.section { padding-block: var(--sp-5); position: relative; }
.section--tight { padding-block: var(--sp-4); position: relative; }

/* ---------- Bilder: Duotone / Kampagnen-Grading ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.ph img, .ph video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.9);
  will-change: transform;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 10, 0.05) 40%, rgba(11, 13, 10, 0.5) 100%);
  pointer-events: none;
}
.ph--plain img, .ph--plain video { filter: none; }
.ph__label {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 237, 230, 0.85);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.6rem) var(--gutter);
  transition: transform 0.5s var(--ease-out);
  color: var(--ink);
}
.site-header.is-hidden { transform: translateY(-110%); }
/* Header steht über dunklem Medium (Hero/CTA) → helle Schrift; JS toggelt */
.site-header.header-light { color: #f2efe8; }
body.menu-open .site-header { color: var(--ink); }
.brand {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: inherit;
}
.brand sup { font-size: 0.5em; font-family: var(--font-mono); }
.header-right { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.btn-nav {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.3rem;
  color: inherit;
  border: 1px solid color-mix(in srgb, currentColor 40%, transparent);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-nav:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.menu-btn {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
}
.menu-btn__icon { display: grid; gap: 5px; width: 24px; }
.menu-btn__icon span {
  height: 1.5px; background: currentColor; display: block;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.menu-open .menu-btn__icon span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-open .menu-btn__icon span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------- Menü-Overlay ---------- */
.menu {
  position: fixed; inset: 0; z-index: 800;
  min-height: 100vh;
  min-height: 100dvh; /* füllt auf Mobile auch bei ein-/ausfahrender Browserleiste */
  background: var(--bg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}
.menu__links {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  gap: 0.2em;
}
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.04;
  display: flex; align-items: baseline; gap: 1rem;
  color: var(--ink);
  transition: color 0.3s;
  width: fit-content;
}
.menu__links a sup {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.menu__links a:hover { color: var(--muted); }
.menu__side {
  border-left: 1px solid var(--line-soft);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-3) var(--gutter);
  gap: 2rem;
}
.menu__side .ph { aspect-ratio: 4 / 3; }
.menu__meta { display: grid; gap: 0.4rem; }
.menu__meta a:hover { color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg video, .hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75) contrast(1.1) brightness(0.52);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 10, 0.55) 0%, rgba(11, 13, 10, 0.15) 35%, rgba(11, 13, 10, 0.88) 100%);
}
.hero__content { padding: 0 var(--gutter) clamp(2rem, 5vh, 4rem); }
.hero__topline {
  position: absolute;
  top: clamp(5rem, 12vh, 7rem);
  left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; gap: 1rem;
  color: rgba(239, 237, 230, 0.75);
}
.hero h1 {
  font-size: clamp(3.2rem, 12.5vw, 13rem);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.hero h1 .italic { font-style: italic; font-weight: 500; }
.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
}
.hero__foot p { max-width: 44ch; color: rgba(239, 237, 230, 0.85); }
.hero__scroll {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.8rem;
  white-space: nowrap;
}
.hero__scroll::after {
  content: "";
  width: 3rem; height: 1px;
  background: var(--accent);
  animation: scrollpulse 2s var(--ease-out) infinite;
  transform-origin: left;
}
@keyframes scrollpulse {
  0% { transform: scaleX(0); opacity: 0; }
  40% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1) translateX(1rem); opacity: 0; }
}

/* ---------- Manifest ---------- */
.manifest { min-height: 92svh; display: grid; align-items: center; }
.manifest .wrap { max-width: 1200px; }
.manifest__lines .w { display: inline-block; }
.manifest__lines {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.1vw, 4.1rem);
  font-weight: 500;
  line-height: 1.14;
  text-transform: none;
  letter-spacing: -0.01em;
}
.manifest__lines .m-line { text-wrap: balance; }
.manifest__lines .dim { color: var(--muted); }
.manifest__lines .acc { color: var(--accent); font-style: italic; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  padding-block: 1.1rem;
  display: flex;
  user-select: none;
}
.marquee__track {
  display: flex;
  flex: none;
  gap: 3.5rem;
  padding-right: 3.5rem;
  align-items: center;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex; align-items: center; gap: 3.5rem;
}
.marquee span::after { content: "·"; color: var(--accent); }

/* ---------- Methode (Kapitel-Liste mit Hover-Bild) ---------- */
.method__head { margin-bottom: var(--sp-3); display: flex; flex-direction: column; gap: 1.2rem; }
.method__list { border-top: 1px solid var(--line-soft); position: relative; }
.method__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3.5vw, 2.8rem) 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  cursor: default;
}
.method__num {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--muted);
  letter-spacing: 0.1em;
}
.method__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5.2rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.35s, transform 0.5s var(--ease-out);
}
.method__item:hover .method__title {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  transform: translateX(1.2rem);
}
.method__desc {
  max-width: 34ch;
  color: var(--muted);
  font-size: var(--step--1);
  justify-self: end;
  text-align: left;
}
/* schwebendes Bild folgt dem Cursor (JS) */
.method__float {
  position: fixed;
  z-index: 500;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 4 / 5;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  overflow: hidden;
}
.method__float img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s;
  filter: saturate(0.82) contrast(1.08) brightness(0.9);
}
.method__float img.is-active { opacity: 1; }

/* ---------- Coach ---------- */
.coach { background: var(--bg-2); overflow: clip; }
.coach__name {
  font-size: clamp(3rem, 13vw, 14rem);
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px var(--hairline);
  margin-bottom: var(--sp-3);
  line-height: 1;
}
.coach__name .fill { color: var(--ink); -webkit-text-stroke: 0; }
.coach__grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.coach__portrait { aspect-ratio: 3 / 4; }
.coach__body { display: flex; flex-direction: column; gap: 2rem; padding-top: clamp(0rem, 4vw, 3rem); }
.coach__body h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  line-height: 1.15;
  text-transform: none;
}
.coach__clubs { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.coach__clubs li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  margin-top: var(--sp-3);
}
.stat {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.8rem, 2vw, 2rem) 0 clamp(1rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--line-soft);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
}
.stat__num sup { font-size: 0.4em; color: var(--accent); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* ---------- Zitat ---------- */
.quote { text-align: center; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  font-style: italic;
  text-transform: uppercase;
  margin-inline: auto;
}
.quote cite { display: block; margin-top: 2.2rem; font-style: normal; }

/* ---------- Angebote (Zeilen) ---------- */
.offers__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: var(--sp-3); }
.offer-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(0.5rem, 1.5vw, 1.5rem);
  border-top: 1px solid var(--line-soft);
  position: relative;
  isolation: isolate;
  transition: color 0.3s;
}
.offer-row:last-of-type { border-bottom: 1px solid var(--line-soft); }
.offer-row::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
}
.offer-row:hover::before { transform: scaleY(1); }
.offer-row:hover { color: var(--bg); }
.offer-row:hover .muted, .offer-row:hover .mono { color: var(--bg); }
.offer-row__num { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); }
.offer-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
.offer-row__meta { color: var(--muted); font-size: var(--step--1); max-width: 26ch; }
.offer-row__price { font-family: var(--font-mono); font-size: clamp(1rem, 2vw, 1.5rem); white-space: nowrap; }

/* ---------- Buttons (Hover: Text-Roll) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.05rem 1.8rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: border-color 0.35s;
  width: fit-content;
}
.btn--solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn .arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(0.35rem); }

/* Text-Roll: Label liegt doppelt übereinander und rollt beim Hover durch */
.roll { display: inline-grid; overflow: hidden; line-height: 1.4; }
.roll > span {
  grid-area: 1 / 1;
  display: block;
  transition: transform 0.5s var(--ease-out);
  white-space: nowrap;
}
.roll > span:last-child { transform: translateY(110%); }
.btn:hover .roll > span:first-child,
.btn-nav:hover .roll > span:first-child { transform: translateY(-110%); }
.btn:hover .roll > span:last-child,
.btn-nav:hover .roll > span:last-child { transform: translateY(0); }

/* ---------- CTA (Video) ---------- */
.cta {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block: var(--sp-4);
  text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__bg video, .cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.75) contrast(1.1) brightness(0.38);
}
.cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(11, 13, 10, 0.55); }
.cta h2 { font-size: clamp(2.6rem, 8vw, 8.5rem); margin-block: 1.4rem 2rem; }
.cta h2 .italic { font-style: italic; font-weight: 500; }
.cta .eyebrow { justify-content: center; }
.cta p { max-width: 46ch; margin: 0 auto 2.6rem; color: rgba(239, 237, 230, 0.85); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: var(--sp-4) 0 var(--sp-2);
  background: var(--bg);
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: var(--sp-4);
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.footer-grid ul { display: grid; gap: 0.55rem; }
.footer-grid a:hover { color: var(--muted); }
/* Wortmarke: läuft exakt von Rand zu Rand (Feinjustierung via JS), Masken-Reveal */
.footer-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 6.5vw; /* Fallback, JS passt exakt an */
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  user-select: none;
  transition: color 0.5s;
}
.footer-mark sup { font-size: 0.3em; font-family: var(--font-mono); font-weight: 400; }
.footer-mark:hover { color: var(--accent); }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
  margin-top: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-base a:hover { color: var(--muted); }
.footer-base .links { display: flex; gap: 1.6rem; }

/* ---------- Unterseiten ---------- */
.page-hero { padding: calc(var(--sp-5) + 3rem) 0 var(--sp-3); }
.page-hero h1 { margin-top: 1.2rem; }
.page-hero .lead { max-width: 58ch; margin-top: 2rem; color: var(--muted); }

/* Angebot-Kapitel */
.offer-section {
  padding-block: var(--sp-4);
  border-top: 1px solid var(--line-soft);
}
.offer-section .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.offer-section:nth-child(even) .wrap > .ph { order: -1; }
.offer-section h2 { margin: 1rem 0 1.4rem; }
.offer-section .ph { aspect-ratio: 4 / 5; }
.checklist { display: grid; gap: 0.9rem; margin: 1.8rem 0 2.2rem; }
.checklist li {
  display: flex; gap: 1rem; align-items: baseline;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0.9rem;
  color: var(--muted);
}
.checklist li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--font-mono);
  flex: none;
}
.price {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 1.8rem;
  display: flex; align-items: baseline; gap: 0.6rem;
}
.price small { font-size: 0.45em; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* Preistabelle */
.pricetable { width: 100%; border-collapse: collapse; }
.pricetable th, .pricetable td {
  text-align: left;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.pricetable th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricetable td:last-child, .pricetable th:last-child { text-align: right; }
.pricetable td:last-child { font-family: var(--font-mono); }
.pricetable .badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-left: 0.7rem;
  white-space: nowrap;
}
.table-scroll { overflow-x: auto; }

/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.form { display: grid; gap: 1.6rem; }
.field { display: grid; gap: 0.6rem; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0;
  border-radius: 0;
  transition: border-color 0.3s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa093' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.3rem center; }
.field select option { background: var(--bg-2); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 7rem; }
.contact-direct { display: grid; gap: 2.2rem; }
.contact-direct .ph { aspect-ratio: 16 / 11; }
.contact-direct ul { display: grid; gap: 0.8rem; font-size: var(--step-1); font-weight: 500; }
.contact-direct ul a:hover { color: var(--muted); }

/* Rechtstexte */
.legal { max-width: 760px; }
.legal h1 { margin: 1rem 0 2.5rem; }
.legal h2 {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-transform: uppercase;
  margin: 2.4rem 0 0.8rem;
}
.legal p, .legal li { color: var(--muted); }
.legal ul { list-style: disc; padding-left: 1.2rem; display: grid; gap: 0.5rem; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--muted); }

/* ---------- Reveal-Zustände (JS setzt .is-inview) ---------- */
[data-reveal] { opacity: 0; transform: translateY(2.2rem); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-reveal].is-inview { opacity: 1; transform: none; }
.line > span { transform: translateY(110%); transition: transform 1s var(--ease-out); }
.is-inview .line > span, .line.is-inview > span { transform: none; }

html.no-js [data-reveal], html.no-js .line > span { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .menu { display: flex; flex-direction: column; }
  .menu__links { justify-content: flex-start; padding-top: clamp(5.5rem, 15vh, 8rem); padding-bottom: 1.5rem; flex: none; }
  .menu__side {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 1.25rem var(--gutter) calc(1.25rem + env(safe-area-inset-bottom));
    flex: 1;
    justify-content: flex-end;
    gap: 1.25rem;
  }
  .menu__side .ph { display: block; flex: 1; min-height: 0; width: 100%; }
  .coach__grid { grid-template-columns: 1fr; }
  .coach__portrait { max-width: 480px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat { border-bottom: 1px solid var(--line-soft); padding-bottom: 1.5rem; }
  .offer-section .wrap { grid-template-columns: 1fr; }
  .offer-section:nth-child(even) .wrap > .ph { order: 0; }
  .offer-section .ph { aspect-ratio: 16 / 10; }
  .contact-grid { grid-template-columns: 1fr; }
  .method__item { grid-template-columns: auto 1fr; }
  .method__desc { grid-column: 2; justify-self: start; max-width: 100%; }
  .method__float { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero__topline { flex-direction: column; gap: 0.3rem; }
  .btn-nav { display: none; }
  .offer-row { grid-template-columns: auto 1fr; row-gap: 0.5rem; }
  .offer-row__meta { display: none; }
  .offer-row__price { grid-column: 2; }
  /* Zitat: kleiner, damit die manuell gesetzten Zeilen nicht umbrechen */
  .quote blockquote { font-size: clamp(1.45rem, 6.2vw, 2rem); line-height: 1.14; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before { animation: none; }
  .marquee__track { animation-duration: 120s; }
  [data-reveal], .line > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll::after { animation: none; }
}

/* ============================================================
   COACH-SEITE · Split, Timeline (horizontal gepinnt), Stats-Tabelle
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split .ph { aspect-ratio: 3 / 4; }
.split__body { display: flex; flex-direction: column; gap: 1.4rem; }
.split__body h2 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  line-height: 1.15;
  text-transform: none;
}

/* Timeline */
.timeline { overflow: hidden; }
.timeline__intro { display: grid; gap: 1rem; margin-bottom: var(--sp-3); }
.tl-viewport { overflow: hidden; }
.tl-track {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-inline: var(--gutter);
  will-change: transform;
}
.tl-item {
  flex: 0 0 clamp(258px, 30vw, 420px);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tl-item .yr {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
}
.tl-item .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.tl-item h3 {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-transform: uppercase;
}
.tl-item p { color: var(--muted); font-size: var(--step--1); }
.tl-item--cta .yr { color: var(--accent); }
.tl-hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Leistungstabelle: mehrspaltige Zahlen */
.pricetable--stats td:not(:first-child),
.pricetable--stats th:not(:first-child) { text-align: right; }
.pricetable--stats td:not(:first-child) { font-family: var(--font-mono); }
.pricetable--stats tbody tr:last-child { font-weight: 600; }
.pricetable--stats tbody tr:last-child td { border-bottom: 0; border-top: 1px solid var(--ink); }

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .split .ph { max-width: 480px; }
  .tl-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; scroll-padding-inline: var(--gutter); }
  .tl-viewport::-webkit-scrollbar { display: none; }
  .tl-track { padding-bottom: 0.5rem; }
  .tl-item { scroll-snap-align: start; }
}
