/* =========================================================
   WOMEN.LEAD. – Stylesheet
   Farben zentral hier ändern:
   ========================================================= */
:root {
  --gruen: #566A61;        /* Haupt-Hintergrund */
  --gruen-dunkel: #4B5E56; /* Kopf- und Fußzeile */
  --orange: #F4935A;       /* Akzent */
  --orange-dunkel: #B85A24;/* Orange-Text auf Beige */
  --creme: #F4EFE7;        /* Text auf Grün */
  --beige: #E6DAC7;        /* Zusatz-Bereich */
  --beige-hell: #F2EADD;   /* Karten auf Beige */
  --text-dunkel: #3F5049;  /* Text auf Beige */
  --button-text: #2E3A35;
  --max: 1312px;
  --rand: 64px;
}

/* ---------- Schrift (lokal, ohne Google-Server) ---------- */
@font-face { font-family: "Jost"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/jost-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/jost-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/jost-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/jost-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/jost-latin-800-normal.woff2") format("woff2"); }

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Jost", "Futura", "Century Gothic", "Avenir Next", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background: var(--gruen);
  color: var(--creme);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul { margin: 0; }
a { color: var(--orange); }
a:hover { color: #FFB88C; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: calc(var(--max) + 2 * var(--rand)); margin: 0 auto; padding-left: var(--rand); padding-right: var(--rand); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--creme); color: var(--button-text); padding: 10px 16px; }

/* ---------- Listen ---------- */
.liste { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.liste li::marker { color: var(--orange); }
.liste--dunkel li::marker { color: var(--orange-dunkel); }
.liste--2spaltig { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; row-gap: 10px; }
.liste--plain { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  font-weight: 700; font-size: 17px; text-decoration: none;
  background: var(--orange); color: var(--button-text);
  border: 1.5px solid var(--orange);
}
.btn:hover { background: #FFB88C; border-color: #FFB88C; color: var(--button-text); }
.btn--outline { background: transparent; color: var(--creme); }
.btn--outline:hover { background: rgba(244,147,90,.15); color: var(--creme); border-color: var(--orange); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Kopfzeile ---------- */
.kopf { position: sticky; top: 0; z-index: 20; background: var(--gruen-dunkel); }
.kopf__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 12px; padding-bottom: 12px; }
.logo { color: var(--orange); font-weight: 800; font-size: 22px; letter-spacing: .02em; text-decoration: none; }
.nav { display: flex; gap: 28px; font-weight: 500; font-size: 16px; }
.nav a { color: var(--creme); text-decoration: none; }
.nav a:hover { color: var(--orange); }
.kopf .btn { min-height: 44px; font-size: 16px; padding: 0 20px; }

/* ---------- Hero ---------- */
.hero { padding-top: 88px; padding-bottom: 40px; }
.hero h1 { font-size: clamp(52px, 8.5vw, 108px); line-height: .95; font-weight: 800; color: var(--orange); letter-spacing: .01em; }
/* Konturschrift: Füllung in Hintergrundfarbe verdeckt innere Überschneidungen */
.outline {
  margin-top: 20px; max-width: 900px;
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.08; font-weight: 800;
  color: var(--gruen); -webkit-text-fill-color: var(--gruen);
  -webkit-text-stroke: 3.2px var(--orange); paint-order: stroke fill;
}

/* ---------- Kästen im grünen Bereich ---------- */
.box { border: 1.5px solid var(--orange); border-radius: 10px; padding: 32px 36px; }
.box h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.raster-2 { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 32px; }
.wann { display: flex; flex-direction: column; gap: 14px; align-self: start; }
.wann h2 { font-weight: 800; letter-spacing: .04em; margin-bottom: 0; }
.wann .btn { margin-top: 8px; align-self: flex-start; }
.sektion-wann { padding-top: 24px; padding-bottom: 32px; }
.sektion-richtig { padding-top: 8px; padding-bottom: 88px; }
.sektion-richtig h2 { font-size: 30px; margin-bottom: 10px; }
.sektion-richtig p { font-size: 19px; max-width: 860px; margin-bottom: 20px; }

/* ---------- Beiger Bereich ---------- */
.beige { background: var(--beige); color: var(--text-dunkel); }
.beige h2, .beige h3 { color: var(--text-dunkel); }
.intro { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 64px; align-items: center; padding-top: 96px; padding-bottom: 56px; }
.intro__text { display: flex; flex-direction: column; gap: 18px; }
.intro h2 { font-size: clamp(32px, 3.6vw, 44px); line-height: 1.1; font-weight: 800; }
.intro p { font-size: 19px; line-height: 1.55; }
.intro p.lead { font-size: 20px; }
.intro img { width: 100%; max-width: 480px; justify-self: center; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; }

.programm { padding-top: 24px; padding-bottom: 96px; }
.programm > h2 { font-size: 36px; font-weight: 800; margin-bottom: 32px; }
.raster-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.tag { background: var(--beige-hell); border-radius: 12px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.tag__datum { font-size: 16px; font-weight: 700; color: var(--orange-dunkel); }
.tag h3 { font-size: 24px; line-height: 1.2; font-weight: 700; }
.tag .liste { font-size: 17px; line-height: 1.45; }

.fakten { padding-bottom: 104px; }
.fakten__raster { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: start; }
.fakten__spalte { display: flex; flex-direction: column; gap: 36px; }
.fakt h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.fakt p { font-size: 19px; line-height: 1.5; }
.fakt p + p { margin-top: 6px; }
.coaching { border: 2px solid #D9783F; border-radius: 14px; padding: 28px 32px; background: #EDE3D3; }
.coaching h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.coaching p { font-size: 19px; }
.fakten img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 35%; border-radius: 12px; }

/* ---------- Anmeldung ---------- */
.anmeldung { padding-top: 96px; padding-bottom: 72px; }
.anmeldung > h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.2; font-weight: 800; color: var(--orange); max-width: 980px; margin-bottom: 32px; }
.anmeldung__raster { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.anmeldung h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.anmeldung p { font-size: 19px; }
.anmeldung p + p { margin-top: 8px; }
.mail { display: block; font-size: 19px; font-weight: 700; color: var(--creme); }
.mail + .mail { margin-top: 8px; }
.aktionen { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.aktionen .btn { min-height: 52px; font-size: 18px; padding: 0 26px; }

/* ---------- Trainerinnen ---------- */
.team { padding-top: 40px; padding-bottom: 96px; }
.team__raster { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 48px; align-items: center; }
.person { display: flex; flex-direction: column; gap: 16px; }
.person--links { align-items: flex-end; text-align: right; }
.person h3 { font-size: 30px; font-weight: 800; color: var(--orange); padding-bottom: 8px; border-bottom: 2px solid var(--orange); }
.person ul { font-size: 17px; line-height: 1.5; }
.kreis { width: 440px; height: 440px; border-radius: 50%; object-fit: cover; object-position: 55% center; }

/* ---------- Fußzeile ---------- */
.fuss { background: var(--gruen-dunkel); }
.fuss__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; padding-top: 56px; padding-bottom: 56px; }
.fuss__claim p { font-size: 22px; font-weight: 800; color: var(--orange); }
.fuss__claim p + p { margin-top: 6px; }
.fuss__meta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; font-size: 15px; color: #D9D3C8; }
.fuss__links { display: flex; gap: 20px; }
.fuss__links a { color: var(--creme); font-size: 16px; font-weight: 500; }

/* ---------- Rechtstexte (Impressum, Datenschutz) ---------- */
.recht { background: var(--beige); color: var(--text-dunkel); padding-top: 72px; padding-bottom: 96px; }
.recht__inner { max-width: 760px; }
.recht h1 { font-size: clamp(34px, 4vw, 48px); font-weight: 800; margin-bottom: 32px; color: var(--text-dunkel); }
.recht h2 { font-size: 24px; font-weight: 700; margin: 40px 0 12px; }
.recht h3 { font-size: 19px; font-weight: 700; margin: 24px 0 8px; }
.recht p, .recht li { font-size: 17px; line-height: 1.6; }
.recht p + p { margin-top: 10px; }
.recht ul { padding-left: 20px; margin: 8px 0; }
.recht a { color: var(--orange-dunkel); }
.recht .hinweis { background: #FFF3C4; border: 2px dashed #B85A24; border-radius: 8px; padding: 14px 18px; margin-bottom: 32px; }
.platzhalter { background: #FFE08A; padding: 0 4px; border-radius: 3px; }

/* ---------- Mobil ---------- */
@media (max-width: 900px) {
  :root { --rand: 24px; }
  .nav { display: none; }
  .hero { padding-top: 56px; }
  .outline { -webkit-text-stroke-width: 2.4px; }
  .raster-2, .raster-3, .intro, .fakten__raster, .anmeldung__raster, .team__raster, .liste--2spaltig { grid-template-columns: minmax(0, 1fr); }
  .box { padding: 26px 24px; }
  .intro { padding-top: 64px; gap: 40px; }
  .person--links { align-items: flex-start; text-align: left; }
  .kreis { width: 300px; height: 300px; justify-self: center; }
  .team__raster > .kreis { order: -1; }
  .fuss__meta { align-items: flex-start; }
}

/* ---------- Anmeldeformular ---------- */
.formular { margin-top: 48px; border: 1.5px solid var(--orange); border-radius: 10px; padding: 36px 40px; max-width: 880px; scroll-margin-top: 90px; }
.formular h3 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.formular__intro { margin-bottom: 28px; }
.felder { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; margin-bottom: 28px; }
.feld { display: flex; flex-direction: column; gap: 6px; }
.feld label { font-weight: 600; font-size: 17px; }
.optional { font-weight: 400; color: #D9D3C8; }
.feld input {
  font: inherit; font-size: 17px; min-height: 48px; padding: 10px 14px;
  border-radius: 8px; border: 1.5px solid transparent; background: var(--creme); color: var(--button-text);
}
.feld input:focus-visible { outline: 3px solid var(--orange); outline-offset: 1px; }
.feld input[aria-invalid="true"] { border-color: #FFB88C; box-shadow: 0 0 0 2px #FFB88C; }
.auswahl { border: 0; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.auswahl legend { font-weight: 600; font-size: 17px; margin-bottom: 10px; padding: 0; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.45; cursor: pointer; }
.check input { width: 22px; height: 22px; margin: 1px 0 0; flex: none; accent-color: var(--orange); cursor: pointer; }
.check input[aria-invalid="true"] { outline: 2px solid #FFB88C; outline-offset: 2px; }
.check--klein { font-size: 16px; margin-bottom: 20px; }
.check a { color: var(--creme); }
.fehler { color: #FFD0B0; font-weight: 600; margin: 4px 0 16px; }
.pflicht { font-size: 14px; color: #D9D3C8; margin-top: 12px; }
.formular button.btn { font-family: inherit; cursor: pointer; min-height: 52px; font-size: 18px; padding: 0 28px; }
.versteckt { position: absolute; left: -9999px; }
@media (max-width: 900px) {
  .formular { padding: 26px 22px; }
  .felder { grid-template-columns: minmax(0, 1fr); }
}
