/* ==========================================================================
   TC Söhrewald e.V. — Stylesheet
   --------------------------------------------------------------------------
   Farbwelt und Motive stammen von der Anlage selbst: das dunkle Grün der
   Fichten am Söhrerand, das Ziegelmehl der drei Sandplätze, die Kreidelinien
   darauf. Das Tennisplatz-Liniennetz ist das durchgehende Gestaltungsmotiv.

   Schriften bewusst als System-Font-Stack: keine Einbindung von Google Fonts
   o. ä. per CDN, damit beim Seitenaufruf keine IP-Adressen an Dritte gehen
   (DSGVO, vgl. LG München I, Urteil vom 20.01.2022 – 3 O 17493/20).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Söhre – das Grün der Fichten hinter der Anlage */
  --pine-900: #0e2417;
  --pine-800: #143020;
  --pine-700: #1c4530;
  --pine-600: #2a5c42;
  --pine-500: #3d7355;

  /* Ziegelmehl – die Sandplätze */
  --ziegel:      #c24e2c;
  --ziegel-dark: #a23f22;
  --ziegel-lite: #e07a54;

  /* Kreide & Sand – Linien und heller Lesegrund */
  --kreide:   #fbfaf6;
  --sand:     #edf0ea;
  --sand-200: #e2e7dd;
  --sand-300: #d3dacd;

  /* Tinte – Text auf hellem Grund */
  --tinte:      #14201a;
  --tinte-mute: #4a5a50;

  /* Filzgelb – der Ball. Sparsamst eingesetzt. */
  --ball: #d8e44a;

  /* Schrift */
  --f-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
            "Helvetica Neue", Arial, sans-serif;
  --f-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;

  /* Maße */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --sec-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;

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

/* --------------------------------------------------------------------------
   2. Grundlagen
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--tinte);
  font-family: var(--f-sans);
  font-size: clamp(1.02rem, 0.97rem + 0.25vw, 1.13rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--ziegel-dark); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--tinte); }

:focus-visible {
  outline: 3px solid var(--ball);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--pine-800);
  color: var(--kreide);
  padding: 0.85rem 1.4rem;
  font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   3. Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 1.3rem + 5.2vw, 5.1rem); letter-spacing: -0.042em; line-height: 0.98; }
h2 { font-size: clamp(1.9rem, 1.15rem + 3.3vw, 3.3rem); letter-spacing: -0.036em; }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem); letter-spacing: -0.022em; }
h4 { font-size: 1.02rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* Auszeichnung: Vereinsstimme, erzählend */
.prose-serif {
  font-family: var(--f-serif);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.72;
}

.lead {
  font-size: clamp(1.12rem, 1rem + 0.62vw, 1.42rem);
  line-height: 1.52;
  color: var(--tinte-mute);
  max-width: 46ch;
  text-wrap: pretty;
}

/* Kleines Strukturlabel – die Beschriftung am Rand des Platzes */
.eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
  font-size: 0.735rem;
  font-weight: 700;
  letter-spacing: 0.185em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--ziegel-dark);
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  margin-top: 0.7em;
  background: currentColor;
  flex: none;
}

.u-mark { color: var(--ziegel); }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--sec-y); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Dunkle Bahn – Fichtengrün */
.band-dark {
  background: var(--pine-800);
  color: var(--kreide);
}
.band-dark h1,
.band-dark h2,
.band-dark h3,
.band-dark h4 { color: var(--kreide); }
.band-dark .lead { color: #c3d3c7; }
.band-dark .eyebrow { color: var(--ziegel-lite); }
.band-dark a { color: var(--kreide); }

.band-deep { background: var(--pine-900); color: var(--kreide); }

/* Grundlinie – Trenner als Spielfeldlinie mit Mittelmarkierung */
.baseline {
  position: relative;
  height: 2px;
  background: var(--sand-300);
  border: 0;
  margin: 0;
}
.baseline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 2px;
  height: 14px;
  background: var(--sand-300);
}
.band-dark .baseline,
.band-dark .baseline::after { background: var(--pine-600); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.6rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(16.5rem, 100%), 1fr)); }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

/* Rasterfelder dürfen schrumpfen – sonst sprengt breiter Inhalt
   (Tabellen, lange Wörter) die Seite auf schmalen Bildschirmen. */
.split > *,
.grid > * { min-width: 0; }
@media (min-width: 62rem) {
  .split { grid-template-columns: 1.05fr 1fr; }
  .split-wide-right { grid-template-columns: 1fr 1.25fr; }
}

.split-top { align-items: start; }

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   5. Kopfzeile
   -------------------------------------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pine-900);
  color: var(--kreide);
  border-bottom: 1px solid var(--pine-700);
}

.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.6rem;
  padding-block: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--kreide);
  text-decoration: none;
  margin-right: auto;
  flex: none;
}
.brand img { width: 2.8rem; height: auto; }
.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine-500);
  margin-top: 0.16rem;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  color: #cddbd1;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.5rem 0.72rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav a:hover { color: var(--kreide); background: var(--pine-700); }
.nav a[aria-current="page"] {
  color: var(--kreide);
  box-shadow: inset 0 -2px 0 var(--ziegel);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid var(--pine-600);
  color: var(--kreide);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle svg { width: 1.05rem; height: 1.05rem; }

/* Nur in der waagerechten Kopfzeile fehlt zwischendrin der Platz.
   Im aufgeklappten Menue darunter bleibt der Knopf sichtbar. */
@media (min-width: 60.01rem) and (max-width: 68rem) {
  .masthead .btn-head { display: none; }
}
@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--pine-900);
    border-bottom: 3px solid var(--ziegel);
    padding: 0.75rem var(--gutter) 1.5rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.95rem 0.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--pine-700);
    border-radius: 0;
  }
  .nav a:hover { background: none; color: var(--ziegel-lite); }
  .nav .btn {
    margin-top: 1.1rem;
    border-bottom: 0;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ziegel); color: var(--kreide); border-color: var(--ziegel); }
.btn-primary:hover { background: var(--ziegel-dark); border-color: var(--ziegel-dark); color: var(--kreide); }

.btn-ghost { background: transparent; color: var(--tinte); border-color: var(--sand-300); }
.btn-ghost:hover { border-color: var(--tinte); color: var(--tinte); }

.band-dark .btn-ghost,
.band-deep .btn-ghost,
.hero .btn-ghost,
.pagehead .btn-ghost,
.masthead .btn-ghost { color: var(--kreide); border-color: rgba(251, 250, 246, 0.42); }
.band-dark .btn-ghost:hover,
.band-deep .btn-ghost:hover,
.hero .btn-ghost:hover,
.pagehead .btn-ghost:hover,
.masthead .btn-ghost:hover { border-color: var(--kreide); color: var(--kreide); background: rgba(251, 250, 246, 0.08); }

.btn-head { padding: 0.7rem 1.15rem; font-size: 0.9rem; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ziegel-dark);
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.15rem;
}
.link-arrow::after { content: "→"; transition: transform 0.18s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.band-dark .link-arrow { color: var(--ziegel-lite); }
.band-dark .link-arrow:hover { color: var(--kreide); }

/* --------------------------------------------------------------------------
   7. Hero — frisch gezogene Linien
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--pine-800);
  color: var(--kreide);
  overflow: hidden;
  isolation: isolate;
}

.hero-court {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-court .line {
  fill: none;
  stroke: var(--kreide);
  stroke-width: 2.25;
  opacity: 0.92;
  vector-effect: non-scaling-stroke;
}
.hero-court .net-post { stroke-width: 4; opacity: 1; }
.hero-court .clay { fill: var(--ziegel); opacity: 0.9; }

.hero::after {
  /* hält die Schrift auch über den Linien lesbar */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(101deg,
              rgba(20, 48, 32, 0.96) 0%,
              rgba(20, 48, 32, 0.90) 36%,
              rgba(20, 48, 32, 0.62) 56%,
              rgba(20, 48, 32, 0.16) 80%,
              rgba(20, 48, 32, 0.06) 100%);
}

.hero-inner {
  padding-block: clamp(3.5rem, 8.5vw, 7.5rem);
  max-width: 46rem;
}

/* Auf schmalen Bildschirmen liegt der Platz nicht hinter dem Text,
   sondern darunter – als angeschnittene Sandfläche. */
@media (max-width: 48rem) {
  .hero-court { top: 40%; height: 60%; }
  .hero::after {
    background: linear-gradient(178deg,
                rgba(20, 48, 32, 0.97) 0%,
                rgba(20, 48, 32, 0.95) 40%,
                rgba(20, 48, 32, 0.58) 64%,
                rgba(20, 48, 32, 0.3) 100%);
  }
}
.hero h1 { margin-bottom: 0.42em; }
.hero .lead { color: #c8d7cc; max-width: 42ch; }
.hero .eyebrow { color: var(--ziegel-lite); }
.hero .btn-row { margin-top: 2.3rem; }

.hero-foot {
  border-top: 1px solid var(--pine-600);
  padding-block: 1.1rem 1.25rem;
}
.hero-foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #94ab9c;
}
.hero-foot-inner span { display: inline-flex; align-items: center; gap: 0.55rem; }
.hero-foot-inner span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--ziegel);
  flex: none;
}

/* Seitenkopf der Unterseiten */
.pagehead { background: var(--pine-800); color: var(--kreide); }
.pagehead-inner { padding-block: clamp(3.2rem, 7vw, 5.5rem); max-width: 46rem; }
.pagehead h1 {
  font-size: clamp(2.1rem, 1.25rem + 3.9vw, 3.9rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.4em;
}
.pagehead .lead { color: #c3d3c7; max-width: 48ch; }
.pagehead .eyebrow { color: var(--ziegel-lite); }

/* --------------------------------------------------------------------------
   8. Karten
   -------------------------------------------------------------------------- */
.card {
  background: var(--kreide);
  border: 1px solid var(--sand-200);
  border-top: 3px solid var(--ziegel);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: var(--radius);
  height: 100%;
}
.card h3 { margin-bottom: 0.45em; }
.card p { color: var(--tinte-mute); font-size: 0.97rem; }
.card p:last-child { margin-bottom: 0; }

.band-dark .card {
  background: var(--pine-700);
  border-color: var(--pine-600);
  border-top-color: var(--ziegel);
}
.band-dark .card p { color: #b9cbbf; }

/* Kennzahl */
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num {
  font-size: clamp(2.5rem, 1.6rem + 3vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ziegel);
}
.band-dark .stat-num { color: var(--ziegel-lite); }
.stat-label {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tinte-mute);
}
.band-dark .stat-label { color: #9db3a5; }

/* Nummerierte Schritte – hier trägt die Reihenfolge wirklich Information */
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 3.6rem;
  padding-bottom: 2.1rem;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.12rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ziegel);
  color: var(--ziegel-dark);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
}
.steps > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 2.6rem;
  bottom: 0.4rem;
  width: 2px;
  background: var(--sand-300);
}
.steps > li:last-child { padding-bottom: 0; }
.steps h3 { margin-bottom: 0.35em; }
.steps p { color: var(--tinte-mute); margin-bottom: 0; }
.band-dark .steps > li::before { border-color: var(--ziegel-lite); color: var(--ziegel-lite); }
.band-dark .steps > li:not(:last-child)::after { background: var(--pine-600); }
.band-dark .steps p { color: #b9cbbf; }

/* --------------------------------------------------------------------------
   9. Lageplan der Anlage
   -------------------------------------------------------------------------- */
.lageplan svg { width: 100%; height: auto; display: block; }
.lageplan .clay { fill: var(--ziegel); }
.lageplan .line {
  fill: none;
  stroke: var(--kreide);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.lageplan .net {
  stroke: var(--kreide);
  stroke-width: 2;
  opacity: 0.5;
  stroke-dasharray: 6 6;
  vector-effect: non-scaling-stroke;
}

/* --------------------------------------------------------------------------
   10. Tabellen
   -------------------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  min-width: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  min-width: 22rem;
}
.table caption {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tinte-mute);
  padding-bottom: 0.9rem;
}
.table th,
.table td {
  text-align: left;
  padding: 0.95rem 1rem 0.95rem 0;
  border-bottom: 1px solid var(--sand-300);
  vertical-align: top;
}
.table thead th {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tinte-mute);
  border-bottom-width: 2px;
  border-bottom-color: var(--tinte);
  padding-bottom: 0.7rem;
}
.table tbody th { font-weight: 700; padding-right: 1.5rem; }
.table .num {
  text-align: right;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding-right: 0;
}
.table .note {
  display: block;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--tinte-mute);
  margin-top: 0.25rem;
  letter-spacing: 0;
}
.table tr:last-child th,
.table tr:last-child td { border-bottom: 0; }

.table-dark th,
.table-dark td { border-bottom-color: var(--pine-600); }
.table-dark caption { color: #9db3a5; }
.table-dark thead th { color: #9db3a5; border-bottom-color: var(--pine-500); }
.table-dark .note { color: #a8bcae; }

/* Hervorgehobene Beitragszeile */
.row-highlight th,
.row-highlight td { background: rgba(194, 78, 44, 0.07); }

/* --------------------------------------------------------------------------
   11. Chronik
   -------------------------------------------------------------------------- */
.chronik { list-style: none; margin: 0; padding: 0; }
.chronik > li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0 1.75rem;
  padding-bottom: 2.4rem;
  position: relative;
}
.chronik > li::after {
  content: "";
  position: absolute;
  left: 5.5rem;
  top: 0.7rem;
  bottom: -0.4rem;
  width: 2px;
  background: var(--sand-300);
  transform: translateX(-0.875rem);
}
.chronik > li:last-child { padding-bottom: 0; }
.chronik > li:last-child::after { display: none; }
.chronik-year {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ziegel);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.chronik-year::after {
  content: "";
  position: absolute;
  right: -0.94rem;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  background: var(--ziegel);
  border-radius: 50%;
}
.chronik h3 { font-size: 1.1rem; margin-bottom: 0.3em; }
.chronik p { color: var(--tinte-mute); font-size: 0.99rem; margin-bottom: 0; }

@media (max-width: 34rem) {
  .chronik > li { grid-template-columns: 1fr; gap: 0.35rem; }
  .chronik > li::after { display: none; }
  .chronik-year::after { display: none; }
}

/* --------------------------------------------------------------------------
   12. Personen / Kontakt
   -------------------------------------------------------------------------- */
.person {
  border-top: 2px solid var(--sand-300);
  padding-top: 1.15rem;
}
.person-role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ziegel-dark);
  margin-bottom: 0.45rem;
}
.person-name {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.person-contact {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--tinte-mute);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  overflow-wrap: anywhere;
}
.band-dark .person { border-top-color: var(--pine-600); }
.band-dark .person-role { color: var(--ziegel-lite); }
.band-dark .person-contact { color: #b9cbbf; }

.factlist { list-style: none; margin: 0; padding: 0; }
.factlist > li,
.factlist > div {
  display: grid;
  grid-template-columns: minmax(8.5rem, auto) 1fr;
  gap: 0.4rem 2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--sand-300);
}
.factlist > li:first-child,
.factlist > div:first-child { padding-top: 0; }
@media (max-width: 34rem) {
  .factlist > li,
  .factlist > div { grid-template-columns: 1fr; gap: 0.25rem; }
}
.factlist dt, .factlist .k {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tinte-mute);
  padding-top: 0.25rem;
}
.factlist dd, .factlist .v { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.band-dark .factlist > li,
.band-dark .factlist > div { border-bottom-color: var(--pine-600); }
.band-dark .factlist dt, .band-dark .factlist .k { color: #9db3a5; }

/* --------------------------------------------------------------------------
   13. Figuren & Hinweise
   -------------------------------------------------------------------------- */
.figure { margin: 0; }
.figure img { border-radius: var(--radius); width: 100%; }
.figure figcaption {
  font-size: 0.83rem;
  color: var(--tinte-mute);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.band-dark .figure figcaption { color: #9db3a5; }

.figure-doc img {
  border: 1px solid var(--sand-300);
  background: var(--kreide);
  max-width: 20rem;
}

.callout {
  background: var(--kreide);
  border-left: 4px solid var(--ziegel);
  padding: 1.35rem 1.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p { font-size: 0.99rem; color: var(--tinte-mute); }
.callout strong { color: var(--tinte); }
.band-dark .callout { background: var(--pine-700); }
.band-dark .callout p { color: #c3d3c7; }
.band-dark .callout strong { color: var(--kreide); }

.pullquote {
  font-family: var(--f-serif);
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.85rem);
  line-height: 1.42;
  font-style: italic;
  border-left: 3px solid var(--ziegel);
  padding-left: clamp(1.25rem, 3vw, 2.2rem);
  margin: 0;
  text-wrap: pretty;
}
.pullquote footer {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tinte-mute);
  margin-top: 1.1rem;
}
.band-dark .pullquote footer { color: #9db3a5; }

/* --------------------------------------------------------------------------
   14. Handlungsaufforderung
   -------------------------------------------------------------------------- */
.cta-band { background: var(--ziegel); color: var(--kreide); }
.cta-band h2 { color: var(--kreide); }
.cta-band .lead { color: #fdf0eb; max-width: 46ch; }
.cta-band .eyebrow { color: var(--kreide); }
.cta-band .btn-primary {
  background: var(--kreide);
  color: var(--ziegel-dark);
  border-color: var(--kreide);
}
.cta-band .btn-primary:hover { background: var(--pine-900); border-color: var(--pine-900); color: var(--kreide); }
.cta-band .btn-ghost { color: var(--kreide); border-color: rgba(251, 250, 246, 0.45); }
.cta-band .btn-ghost:hover { border-color: var(--kreide); }

/* --------------------------------------------------------------------------
   15. Stützpunktverein „Integration durch Sport“
   Steht auf jeder Seite unmittelbar über der Fußzeile.
   -------------------------------------------------------------------------- */
.ids {
  background: var(--kreide);
  color: var(--tinte);
  border-top: 1px solid var(--sand-200);
}
.ids h2 { color: var(--tinte); }
.ids a { color: var(--ziegel-dark); }
.ids-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
@media (min-width: 44rem) {
  .ids-inner { grid-template-columns: auto minmax(0, 1fr); }
}
.ids-badge {
  width: clamp(9.5rem, 18vw, 12.5rem);
  height: auto;
  flex: none;
}
.ids h2 {
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.85rem);
  margin-bottom: 0.5em;
}
.ids p { color: var(--tinte-mute); max-width: 58ch; }
.ids-fine {
  font-size: 0.83rem;
  line-height: 1.55;
  margin-top: 1.1rem;
}

/* --------------------------------------------------------------------------
   16. Fußzeile
   -------------------------------------------------------------------------- */
.footer { background: var(--pine-900); color: #a8bcae; font-size: 0.94rem; }
.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
@media (min-width: 48rem) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer h4 {
  color: var(--kreide);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer a { color: #c3d3c7; text-decoration: none; }
.footer a:hover { color: var(--kreide); text-decoration: underline; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li + li { margin-top: 0.55rem; }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 3.6rem; flex: none; }
.footer-brand .brand-name { color: var(--kreide); font-size: 1.15rem; }
.footer-bottom {
  border-top: 1px solid var(--pine-700);
  padding-block: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   17. Bewegung — Linien werden gezogen
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-court .line {
    stroke-dasharray: var(--len, 2600);
    stroke-dashoffset: var(--len, 2600);
    animation: draw 1.5s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
  }
  @keyframes draw { to { stroke-dashoffset: 0; } }

  .hero-court .clay {
    opacity: 0;
    animation: clayin 1.3s var(--ease) 0.55s forwards;
  }
  @keyframes clayin { to { opacity: 0.9; } }

  .hero-inner > * {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.85s var(--ease) forwards;
  }
  .hero-inner > *:nth-child(1) { animation-delay: 0.30s; }
  .hero-inner > *:nth-child(2) { animation-delay: 0.40s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.50s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.60s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* --------------------------------------------------------------------------
   18. Hilfsklassen
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.mt-0 { margin-top: 0; }
.center { text-align: center; margin-inline: auto; }
.measure { max-width: 62ch; }

@media print {
  .masthead, .nav-toggle, .cta-band, .hero-court { display: none; }
  body { background: #fff; color: #000; }
}
