/* =========================================================
   Landingpages — Sports Gym Witten
   Eigenständiges Stylesheet. Lädt bewusst NICHT styles.css
   (66 KB SPA-Regeln, Preloader, Cursor-Effekte). Die Design-
   Tokens sind aus styles.css :root übernommen — bei Änderungen
   an den Markenfarben dort UND hier nachziehen.
   ========================================================= */

:root {
  --red: #e11d2e;
  --red-bright: #ff2a3c;
  --red-deep: #a8121f;
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --surface: #1a1a1a;
  --surface-2: #232323;
  --ink: #f5f4f0;
  --ink-mute: #a0a0a0;
  --ink-faint: #6a6a6a;
  --rule: rgba(255,255,255,0.08);
  --rule-strong: rgba(255,255,255,0.18);
  --f-display: "Bebas Neue", "Anton", "Archivo Black", system-ui, sans-serif;
  --f-headline: "Archivo", "Inter", system-ui, sans-serif;
  --f-body: "Space Grotesk", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --container: 1320px;
  --narrow: 780px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-bright); }
a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; }

.wrap { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.wrap--narrow { width: min(var(--narrow), 100% - 2.5rem); margin-inline: auto; }

/* ---------- Buttons (identisch zu styles.css) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--f-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 13px; padding: 1.1rem 1.6rem;
  border: 0; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: all 160ms cubic-bezier(.4,0,.2,1); position: relative;
}
.btn--primary {
  background: var(--red); color: #fff;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.btn--primary:hover { background: var(--red-bright); color: #fff; transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0) scale(0.98); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule-strong); }
.btn--ghost:hover { border-color: var(--red); color: var(--red-bright); }
.btn .arrow { display: inline-block; transition: transform 160ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.eyebrow {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 12px; font-weight: 600; color: var(--red-bright);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--red-bright); }

/* ---------- Header (bewusst reduziert: Logo · Telefon · CTA) ---------- */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.lp-nav__logo img { height: 40px; width: auto; }
.lp-nav__right { display: flex; align-items: center; gap: 1.25rem; }
.lp-nav__tel { font-family: var(--f-mono); font-size: 13px; color: var(--ink-mute); text-decoration: none; letter-spacing: 0.04em; }
.lp-nav__tel:hover { color: var(--ink); }
/* Lange Button-Beschriftungen duerfen am Handy umbrechen, statt die Seite
   breiter zu machen als den Bildschirm. */
@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; }

  .lp-nav__tel { display: none; }
  .lp-nav .btn { padding: 0.85rem 1.1rem; font-size: 12px; }
}

/* ---------- Hero ---------- */
.lp-hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem); }
.lp-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
/* Grid-Items haben per Default min-width:auto und wachsen deshalb auf die Breite
   ihres breitesten Kindes — der CTA-Button mit white-space:nowrap sprengte so am
   Handy den Viewport (449px bei 375px Screen). */
.lp-hero__grid > * { min-width: 0; }
@media (min-width: 900px) { .lp-hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.lp-hero h1 {
  font-family: var(--f-display); font-weight: 400; line-height: 0.95; margin: 1rem 0 1.25rem;
  font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.01em; text-transform: uppercase;
}
.lp-hero h1 em { font-style: normal; color: var(--red-bright); }
.lp-hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-mute); max-width: 40rem; margin: 0 0 2rem; }
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.lp-hero__fine { font-family: var(--f-mono); font-size: 12px; color: var(--ink-faint); margin-top: 1rem; }
.lp-hero__img { position: relative; }
.lp-hero__img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center top;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}
.lp-hero__img::after {
  content: ""; position: absolute; inset: auto -12px -12px auto; width: 40%; height: 40%;
  border-right: 3px solid var(--red); border-bottom: 3px solid var(--red); pointer-events: none;
}

/* ---------- Sections ---------- */
.lp-section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.lp-section--soft { background: var(--bg-soft); }
.lp-section h2 {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em;
  font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1; margin: 0.75rem 0 1.5rem;
}

/* Fließtext aus Markdown */
.lp-prose h2 {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.75rem); line-height: 1; margin: 3rem 0 1rem; scroll-margin-top: 90px;
}
.lp-prose h3 {
  font-family: var(--f-headline); font-weight: 700; font-size: 1.25rem; margin: 2rem 0 0.75rem; scroll-margin-top: 90px;
}
.lp-prose p, .lp-prose li { color: #d9d8d3; }
.lp-prose p { margin: 0 0 1.25rem; }
.lp-prose ul, .lp-prose ol { padding-left: 1.4rem; margin: 0 0 1.25rem; }
.lp-prose li { margin: 0.35rem 0; }
.lp-prose li::marker { color: var(--red-bright); }
.lp-prose strong { color: var(--ink); }
.lp-prose blockquote {
  margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 3px solid var(--red);
  background: var(--surface); color: var(--ink);
}
.lp-prose blockquote p:last-child { margin: 0; }
.lp-prose img { margin: 2rem 0; }
.lp-prose figure { margin: 2rem 0; }
.lp-prose figcaption { font-family: var(--f-mono); font-size: 12px; color: var(--ink-faint); margin-top: 0.5rem; }
.lp-prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.lp-prose th, .lp-prose td { text-align: left; padding: 0.75rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.lp-prose th { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); }
.lp-prose hr { border: 0; border-top: 1px solid var(--rule); margin: 3rem 0; }

/* ---------- Benefits ---------- */
.lp-benefits { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .lp-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .lp-benefits { grid-template-columns: repeat(3, 1fr); } }
.lp-benefit { background: var(--surface); border: 1px solid var(--rule); padding: 1.75rem; position: relative; }
.lp-benefit::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 40px; background: var(--red); }
.lp-benefit__idx { font-family: var(--f-mono); font-size: 12px; color: var(--red-bright); letter-spacing: 0.1em; }
.lp-benefit h3 { font-family: var(--f-headline); font-weight: 700; font-size: 1.15rem; margin: 0.5rem 0 0.5rem; }
.lp-benefit p { margin: 0; color: var(--ink-mute); font-size: 0.97rem; }

/* ---------- Steps ---------- */
/* Hero-Faktenzeile: Altersgruppen und Trainingstage auf einen Blick */
.lp-hero__meta {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-mute); margin-top: 0.5rem;
}

/* Altersgruppen — zwei grosse Karten nebeneinander */
.lp-groups { display: grid; gap: 1.25rem; }
@media (min-width: 800px) { .lp-groups { grid-template-columns: repeat(2, 1fr); } }
.lp-group {
  background: var(--surface); border: 1px solid var(--rule);
  border-top: 3px solid var(--red); padding: 1.9rem;
}
.lp-group h3 { font-family: var(--f-headline); font-weight: 700; font-size: 1.35rem; margin: 0 0 0.35rem; }
.lp-group__age { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-bright); margin: 0 0 0.15rem; }
.lp-group__time { font-family: var(--f-mono); font-size: 13px; color: var(--ink); margin: 0 0 0.9rem; }
.lp-group p:last-child { margin: 0; color: var(--ink-mute); font-size: 0.97rem; }
.lp-groups__note { margin: 1.5rem 0 0; color: var(--ink-mute); font-size: 0.95rem; }

/* Sicherheitsblock — bewusst vom Rest abgesetzt: das ist fuer Eltern das
   entscheidende Vertrauensargument und darf nicht wie Fliesstext wirken. */
.lp-callout {
  background: var(--surface-2);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.lp-callout h2 {
  font-family: var(--f-headline); font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.15; margin: 0.6rem 0 1.4rem;
}
.lp-callout__text p { color: var(--ink-mute); margin: 0 0 1rem; line-height: 1.7; }
.lp-callout__text strong { color: var(--ink); }
.lp-callout__rules {
  list-style: none; padding: 1.4rem 0 0.4rem; margin: 1.4rem 0;
  border-top: 1px solid var(--rule); display: grid; gap: 0.7rem;
}
.lp-callout__rules li {
  position: relative; padding-left: 1.6rem;
  font-family: var(--f-headline); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.lp-callout__rules li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; background: var(--red);
}
.lp-callout__figure { margin: 1.8rem 0 0; }
.lp-callout__figure img {
  display: block; width: 100%; height: auto;
  border-top: 3px solid var(--red);
}

.lp-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 800px) { .lp-steps { grid-template-columns: repeat(3, 1fr); } }
.lp-step { counter-increment: step; background: var(--surface); padding: 1.75rem; border-top: 3px solid var(--red); }
.lp-step::before {
  content: "0" counter(step); display: block; font-family: var(--f-display); font-size: 3rem; line-height: 1;
  color: var(--red-bright); margin-bottom: 0.5rem;
}
.lp-step h3 { font-family: var(--f-headline); font-size: 1.1rem; margin: 0 0 0.5rem; }
.lp-step p { margin: 0; color: var(--ink-mute); font-size: 0.97rem; }

/* ---------- Price ---------- */
.lp-price { display: grid; gap: 2rem; align-items: center; background: var(--surface); border: 1px solid var(--rule); padding: 2rem; }
@media (min-width: 800px) { .lp-price { grid-template-columns: auto 1fr auto; padding: 2.5rem; } }
.lp-price__num { font-family: var(--f-display); font-size: clamp(3.5rem, 7vw, 5rem); line-height: 1; color: var(--ink); }
.lp-price__num small { font-size: 0.35em; color: var(--ink-mute); font-family: var(--f-body); text-transform: uppercase; letter-spacing: 0.1em; margin-left: 0.4rem; }
.lp-price__text h3 { font-family: var(--f-headline); margin: 0 0 0.4rem; }
.lp-price__text p { margin: 0; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.lp-faq { border-top: 1px solid var(--rule); }
.lp-faq details { border-bottom: 1px solid var(--rule); }
.lp-faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--f-headline); font-weight: 600; font-size: 1.05rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--f-display); font-size: 1.75rem; color: var(--red-bright); transition: transform 160ms;
}
.lp-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq .lp-faq__a { padding: 0 0 1.5rem; color: #d9d8d3; max-width: 60rem; }
.lp-faq .lp-faq__a p { margin: 0 0 0.75rem; }

/* ---------- CTA-Band ---------- */
.lp-cta {
  background: var(--red); color: #fff; padding: clamp(3rem, 7vw, 5rem) 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}
.lp-cta .wrap { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 900px) { .lp-cta .wrap { grid-template-columns: 1fr auto; } }
.lp-cta h2 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 0.95; margin: 0 0 0.5rem; }
.lp-cta p { margin: 0; color: rgba(255,255,255,0.85); max-width: 40rem; }
.lp-cta .btn--primary { background: #0a0a0a; }
.lp-cta .btn--primary:hover { background: #1a1a1a; }

/* ---------- Ratgeber ---------- */
.lp-article { padding: clamp(3rem, 7vw, 5rem) 0; }
.lp-article__head { margin-bottom: 2.5rem; }
.lp-article__head h1 {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: 0.95;
  font-size: clamp(2.6rem, 6.5vw, 4.75rem); margin: 0.75rem 0 1rem;
}
.lp-article__lead { font-size: 1.2rem; color: var(--ink-mute); margin: 0 0 1.25rem; }
.lp-article__meta { font-family: var(--f-mono); font-size: 12px; color: var(--ink-faint); display: flex; gap: 1.25rem; flex-wrap: wrap; }
.lp-article__hero { margin: 2rem 0 2.5rem; }
.lp-article__hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.lp-toc { background: var(--surface); border: 1px solid var(--rule); padding: 1.5rem 1.75rem; margin: 0 0 2.5rem; }
.lp-toc__title { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-mute); margin: 0 0 0.75rem; }
.lp-toc ol { margin: 0; padding-left: 1.25rem; }
.lp-toc li { margin: 0.35rem 0; }
.lp-toc li.is-sub { margin-left: 1rem; font-size: 0.93rem; }
.lp-toc a { color: var(--ink); text-decoration: none; }
.lp-toc a:hover { color: var(--red-bright); }
.lp-article .lp-prose p:first-of-type { font-size: 1.08rem; }
.lp-softcta {
  margin: 3rem 0 0; padding: 2rem; background: var(--surface); border-left: 3px solid var(--red);
  display: grid; gap: 1rem;
}
@media (min-width: 800px) { .lp-softcta { grid-template-columns: 1fr auto; align-items: center; } }
.lp-softcta h3 { font-family: var(--f-headline); margin: 0 0 0.35rem; }
.lp-softcta p { margin: 0; color: var(--ink-mute); }

/* ---------- Footer ---------- */
.lp-footer { border-top: 1px solid var(--rule); padding: 2.5rem 0 3rem; background: var(--bg-soft); }
.lp-footer .wrap { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .lp-footer .wrap { grid-template-columns: 1fr auto; align-items: start; } }
.lp-footer__brand { font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; }
.lp-footer address { font-style: normal; color: var(--ink-mute); font-size: 0.95rem; line-height: 1.7; }
.lp-footer address a { color: var(--ink-mute); text-decoration: none; }
.lp-footer address a:hover { color: var(--ink); }
.lp-footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; font-family: var(--f-mono); font-size: 12px; }
.lp-footer__links a { color: var(--ink-faint); text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; }
.lp-footer__links a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn .arrow { transition: none; }
}
