/* Das Aussehen der oeffentlichen Seite.
 *
 * Alle Werte stammen aus dem Entwurf in `entwurf/Kevin Hermann Homepage.dc.html`.
 * Dort standen sie als Inline-Styles an jedem einzelnen Element — das laesst
 * sich zeichnen, aber nicht pflegen: eine Farbe zu aendern hiesse, sie an
 * vierzig Stellen zu suchen. Hier steht jede genau einmal.
 *
 * Was gegenueber dem Entwurf **dazugekommen** ist und warum:
 *   · ein Menue fuer schmale Schirme — der Entwurf hat keines, und unter 700 px
 *     stehen die Navigationslinks sonst uebereinander im Weg
 *   · `prefers-reduced-motion` — wer Bewegung abgeschaltet hat, bekommt keine
 *   · sichtbare Fokusrahmen — ohne sie ist die Seite mit der Tastatur nicht
 *     bedienbar, und das faellt nur denen auf, die darauf angewiesen sind
 */

:root {
  --grund: #07090a;
  --karte: #0e1316;
  --feld: #10161a;
  --dunkel: #0a0d0f;

  --rand: #1c2429;
  --rand-leise: #141a1e;
  --rand-fein: #10161a;
  --rand-hell: #232c31;
  --rand-knopf: #2a353b;

  --text: #e8eeec;
  --text-hell: #f2f7f4;
  --text-weich: #c3d2c9;
  --gedaempft: #9fb3a8;
  --leise: #74857c;
  --leiser: #6f8079;
  --still: #5c6b64;
  --zusatz: #8fa596;

  --gruen: #b7ec5e;
  --gruen-hell: #d3f78f;
  --gruen-tief: #0c1207;
  --gruen-flaeche: #131b0e;

  --verlauf-hell: oklch(0.82 0.19 128);
  --verlauf-tief: oklch(0.42 0.09 155);

  --mitte: 1180px;
  --kopf-hoehe: 66px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--grund);
  color: var(--text);
  font-family: Archivo, system-ui, -apple-system, sans-serif;
  /* Verhindert, dass ein zu breites Element die ganze Seite seitlich
   * verschiebbar macht — auf dem Handy der haeufigste sichtbare Fehler. */
  overflow-x: hidden;
}

a { color: var(--gruen); text-decoration: none; }
a:hover { color: var(--gruen-hell); }

img { max-width: 100%; }

::selection { background: rgba(183, 236, 94, .25); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--rand); border-radius: 5px; }

/* Der Fokusrahmen. Bewusst kraeftig: er soll auf dunklem Grund sofort zu sehen
 * sein. `:focus-visible` statt `:focus`, damit er bei Mausklicks nicht stoert. */
:focus-visible {
  outline: 2px solid var(--gruen);
  outline-offset: 3px;
  border-radius: 4px;
}

.ueberspringen {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--gruen);
  color: var(--gruen-tief);
  font-weight: 700;
}
.ueberspringen:focus { left: 8px; top: 8px; }

.mitte { width: 100%; max-width: var(--mitte); margin: 0 auto; padding: 0 28px; }
.mitte.schmal { max-width: 760px; }

/* ---- Bausteine ---------------------------------------------------------- */

.karte {
  border-radius: 16px;
  border: 1px solid var(--rand);
  background: var(--karte);
}
.karte.hervor {
  border-color: rgba(183, 236, 94, .3);
  background: linear-gradient(160deg, #101812, var(--karte));
}
.karte.leer {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: var(--still);
}

.etikett {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--leise);
}

.kicker {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--leiser);
}
.kicker.gruen { color: var(--gruen); }

.zusatz { font-size: .62em; color: var(--zusatz); }

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.knopf-haupt { background: var(--gruen); color: var(--gruen-tief); }
.knopf-haupt:hover { background: var(--gruen-hell); color: var(--gruen-tief); }
.knopf-neben {
  background: transparent;
  border-color: var(--rand-knopf);
  color: var(--text);
  font-weight: 600;
}
.knopf-neben:hover { border-color: var(--gruen); color: var(--gruen-hell); }
.knopf.breit { width: 100%; padding: 13px; font-size: 14.5px; }
.knopf.schmal { padding: 10px 16px; font-size: 13px; }
.knopf .symbol { display: inline-flex; width: 18px; height: 18px; }
.knopf .symbol svg { width: 100%; height: 100%; }

.platzhalter {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 84px;
  border: 1.5px dashed var(--rand-knopf);
  border-radius: 12px;
  background: rgba(255, 255, 255, .015);
  color: var(--still);
  font-size: 12px;
  text-align: center;
  padding: 12px;
}
.platzhalter span { max-width: 90%; }

.pille {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--rand-knopf);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gedaempft);
}
.pille.gruen { border-color: rgba(183, 236, 94, .35); color: var(--gruen); }

/* ---- Navigation --------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(7, 9, 10, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rand-leise);
}

.nav-marke { display: flex; align-items: center; gap: 12px; color: var(--text); }
.nav-marke:hover { color: var(--text); }

.zeichen {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(150deg, #2b4a2c, #8ed23f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--gruen-tief);
  letter-spacing: .02em;
}

.nav-name {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-menue {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-menue > a { color: var(--gedaempft); }
.nav-menue > a:hover { color: var(--gruen-hell); }
.nav-abo { padding: 10px 18px; border-radius: 10px; font-size: 13.5px; }

/* Der Schalter fuer schmale Schirme. Auf breiten ist er nicht da — nicht
 * versteckt, sondern `display: none`, damit ihn auch kein Screenreader findet. */
.nav-schalter {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 0 9px;
  border: 1px solid var(--rand-knopf);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}
.nav-schalter span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-schalter[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-schalter[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-schalter[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.kopfleiste { border-bottom: 1px solid var(--rand-leise); }

/* ---- Hero --------------------------------------------------------------- */

.hero {
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0) 0%, rgba(7, 9, 10, 0) 46%, var(--grund) 82%),
    radial-gradient(rgba(142, 210, 63, .13) 1.3px, transparent 1.4px),
    radial-gradient(1100px 620px at 78% 4%, rgba(142, 210, 63, .11), transparent 62%);
  background-size: auto, 26px 26px, auto;
}

.hero-innen {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
  padding-top: 24px;
}

.hero-text {
  flex: 1.15;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 90px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gruen);
}
.hero-kicker .strich { width: 34px; height: 3px; border-radius: 2px; background: var(--gruen); }

.hero h1 {
  margin: 0 0 20px;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 8.5vw, 104px);
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--text-hell);
}

.hero-unter {
  margin: 0 0 34px;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gedaempft);
  text-wrap: pretty;
}

.hero-knoepfe { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-bild {
  flex: 1;
  min-width: 300px;
  position: relative;
  align-self: flex-end;
  height: min(680px, 80vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-flaeche {
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 0;
  height: 72%;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(140deg, var(--verlauf-tief), var(--verlauf-hell));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 30px 80px rgba(0, 0, 0, .5);
}

.hero-bild picture { position: relative; display: block; height: 100%; }
.hero-bild picture img,
.hero-bild .platzhalter {
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .45));
}
.hero-bild .platzhalter { width: min(340px, 70vw); }

.schweber {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 18px;
  border-radius: 12px;
  background: rgba(11, 15, 17, .94);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}
.schweber-links { left: 0; bottom: 96px; }
.schweber-rechts { right: 14px; top: 22%; }
.schweber .wert {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 1;
  color: var(--gruen);
}
.schweber .wert.hell { color: var(--text-hell); }
.schweber .zusatz { font-size: 18px; color: var(--text); }

/* ---- Abschnitte --------------------------------------------------------- */

.abschnitt { padding: 72px 0; border-top: 1px solid var(--rand-fein); scroll-margin-top: var(--kopf-hoehe); }
.abschnitt.letzter { padding-bottom: 88px; }

.kopf { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.kopf-balken {
  width: 6px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--verlauf-hell), var(--verlauf-tief));
}
.kopf h2 {
  margin: 4px 0 0;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-hell);
}

/* ---- Der Golfer --------------------------------------------------------- */

.golfer-reihe { display: flex; flex-wrap: wrap; gap: 28px; align-items: stretch; margin-bottom: 22px; }

.golfer-bild {
  width: 250px;
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rand);
  background: linear-gradient(160deg, oklch(0.30 0.06 155), var(--karte));
  min-height: 300px;
}
.golfer-bild picture, .golfer-bild picture img { display: block; width: 100%; height: 100%; }
.golfer-bild .deckend { object-fit: cover; object-position: top center; }
.golfer-bild .platzhalter { border: none; min-height: 300px; }
.golfer-marke {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 9px;
  background: rgba(11, 15, 17, .9);
  border: 1px solid rgba(255, 255, 255, .12);
  font-family: Oswald, sans-serif;
  font-size: 13.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gruen);
}

.golfer-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 30px 34px;
}
.golfer-text p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-weich);
  text-wrap: pretty;
}

.fakten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px 28px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #1a2125;
}
.fakt { display: flex; align-items: stretch; gap: 12px; }
.fakt-strich {
  width: 3px;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gruen), var(--verlauf-tief));
}
.fakt-wert { display: block; margin-top: 3px; font-size: 15px; color: var(--text); }

.stats { display: flex; flex-wrap: wrap; gap: 14px; }
.stat {
  flex: 1 1 190px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--rand);
  background: var(--karte);
}
.stat-wert {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--text-hell);
  /* Ein Wert ohne Leerzeichen — eine lange Zahl, ein Vereinsname am Stueck —
   * darf die Kachel nicht seitlich aufreissen. */
  overflow-wrap: anywhere;
}
.stat-wert.gruen { color: var(--gruen); }

/* Die Stufen setzt seite.js nach der Laenge des Textes. Bewusst **nicht** per
 * `clamp()` an die Fensterbreite gekoppelt: die Breite des Fensters sagt nichts
 * darueber, ob in der Kachel „2,0" oder ein ganzer Titel steht. */
.stat-wert.mittel { font-size: 27px; line-height: 1.15; }
.stat-wert.lang { font-size: 18px; font-weight: 500; line-height: 1.35; }

/* ---- YouTube ------------------------------------------------------------ */

.yt-reihe { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }

.video-gross {
  flex: 1.6;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--text);
}
.video-gross:hover { color: var(--text); border-color: rgba(183, 236, 94, .4); }

.video-bild { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--feld); }
.video-bild picture, .video-bild img { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-bild .platzhalter { border: none; height: 100%; }

.abspielen {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 15, 17, .82);
  border: 1px solid rgba(183, 236, 94, .5);
  transition: background .15s ease, transform .15s ease;
}
.abspielen svg { width: 26px; height: 26px; color: var(--gruen); }
.abspielen.klein { width: 44px; height: 44px; }
.abspielen.klein svg { width: 18px; height: 18px; }
a:hover > .video-bild > .abspielen,
a:hover .abspielen { background: var(--gruen); }
a:hover .abspielen svg { color: var(--gruen-tief); }

.video-fuss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}
.video-titel {
  display: block;
  margin-top: 4px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--text-hell);
}
.video-pfeil { flex-shrink: 0; font-weight: 600; font-size: 14px; color: var(--gruen); }

.yt-spalte { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 20px; }

.kanal { padding: 26px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.kanal.flach {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
}
.kanal-kopf { display: flex; align-items: center; gap: 14px; }
.kanal-zeichen {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(150deg, #2b4a2c, #8ed23f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
}
.kanal-zeichen svg { width: 20px; height: 20px; color: var(--gruen-tief); }
.kanal-name {
  display: block;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-hell);
}
.kanal-name.klein { font-size: 17px; font-weight: 500; }
.kanal-rolle {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7f9188;
}
.kanal-text { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--gedaempft); }

.video-klein { display: flex; flex-direction: column; gap: 12px; color: var(--text); }
.video-klein:hover { color: var(--gruen-hell); }
.video-klein .video-bild { border-radius: 12px; border: 1px solid var(--rand); }
.video-klein .video-titel { font-size: 16px; padding: 0 4px; color: inherit; }

.video-gitter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ---- Partner ------------------------------------------------------------ */

.hauptsponsor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 30px 34px;
  margin-bottom: 20px;
  border-color: rgba(183, 236, 94, .35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.hauptsponsor-logo { width: 240px; height: 120px; flex-shrink: 0; display: grid; }
.hauptsponsor-logo picture, .hauptsponsor-logo img {
  width: 100%; height: 100%; object-fit: contain;
}
.hauptsponsor-text { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 8px; }
.hauptsponsor-name {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--text-hell);
}
.hauptsponsor-text p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--gedaempft); }
.hauptsponsor-text a { margin-top: 4px; font-weight: 600; font-size: 14px; }

.partner-gitter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.partner {
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
}
.partner:hover { color: var(--text); border-color: rgba(183, 236, 94, .4); }
.partner-logo { width: 100%; height: 84px; display: grid; }
.partner-logo picture, .partner-logo img { width: 100%; height: 100%; object-fit: contain; }
.partner-name {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.codes { display: flex; flex-direction: column; gap: 14px; }
.code-zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  border-radius: 14px;
}
.code-marke {
  display: block;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--text-hell);
}
.code-aktion { display: block; margin-top: 3px; font-size: 14px; color: var(--gedaempft); }
.code-rechts { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.code {
  padding: 11px 18px;
  border-radius: 10px;
  border: 1.5px dashed rgba(183, 236, 94, .45);
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .1em;
  color: var(--gruen);
}

/* ---- Socials ------------------------------------------------------------ */

.social-gitter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 14px;
  color: var(--text);
}
.social:hover { color: var(--text); border-color: rgba(183, 236, 94, .5); }
.social-symbol { flex-shrink: 0; width: 26px; height: 26px; color: var(--gruen); }
.social-symbol svg { width: 100%; height: 100%; }
.social-handle {
  display: block;
  margin-top: 2px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 17px;
}

/* ---- Kontakt ------------------------------------------------------------ */

.kontakt-reihe { display: flex; flex-wrap: wrap; gap: 28px; align-items: stretch; }

.kontakt-info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 34px;
}
.kontakt-info p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--text-weich); text-wrap: pretty; }
.kontakt-mail {
  display: block;
  margin-top: 6px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 22px;
  word-break: break-word;
}
.marken { display: flex; flex-wrap: wrap; gap: 8px; }

.kontakt-form {
  flex: 1.4;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 34px;
}
.form-reihe { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.feld { display: flex; flex-direction: column; gap: 6px; }
.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form select,
.kontakt-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--rand-hell);
  background: var(--feld);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.kontakt-form textarea { line-height: 1.6; resize: vertical; }
.kontakt-form select { cursor: pointer; }
.kontakt-form select option { background: var(--feld); }
.kontakt-form input:focus, .kontakt-form select:focus, .kontakt-form textarea:focus {
  border-color: rgba(183, 236, 94, .6);
}
.kontakt-form ::placeholder { color: var(--still); }

/* Der Honigtopf. **Nicht** `display: none` — manche Programme fuellen genau die
 * Felder nicht aus, die unsichtbar geschaltet sind. So steht er im Dokument,
 * liegt aber ausserhalb des Bildes und ist nicht mit der Tastatur erreichbar. */
.honig {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-fuss { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-hinweis { font-size: 12.5px; color: var(--still); }
.form-hinweis.gut { color: var(--gruen); }
.form-hinweis.schlecht { color: #ec6e5e; }
.form-recht { margin: 0; font-size: 11.5px; line-height: 1.5; color: var(--still); }
.form-recht a { color: var(--gedaempft); text-decoration: underline; }

/* ---- Textseiten --------------------------------------------------------- */

.textseite { padding: 56px 0 80px; }
.textseite h1 {
  margin: 0 0 28px;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 40px);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-hell);
}
.textseite h2 {
  margin: 34px 0 10px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--text-hell);
}
.textseite p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.75; color: var(--text-weich); }
.textseite .vorspann { font-size: 17px; color: var(--gedaempft); }
.textseite a { text-decoration: underline; }
.hinweis-kasten {
  margin: 0 0 24px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(236, 176, 94, .4);
  background: rgba(236, 176, 94, .07);
  font-size: 14.5px;
  line-height: 1.6;
  color: #f0d3ae;
}
.fehlt { color: #ec6e5e; font-size: 14px; }

/* ---- Fuss --------------------------------------------------------------- */

.fuss { padding: 30px 0; border-top: 1px solid var(--rand-leise); }
.fuss-innen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: var(--leiser);
}
.fuss-links { display: flex; flex-wrap: wrap; gap: 20px; }
.fuss-links a { color: var(--gedaempft); }
.fuss-links a:hover { color: var(--gruen-hell); }

/* ---- Einblenden beim Scrollen ------------------------------------------- */

/* Bewusst andersherum gedacht: sichtbar ist der Normalfall, unsichtbar die
 * Ausnahme. Die Klasse `js` setzt ein winziges Skript im <head>, bevor das
 * erste Pixel gezeichnet wird.
 *
 * Waere es umgekehrt — Standard unsichtbar, Skript blendet ein —, dann bliebe
 * bei einem Skriptfehler oder abgeschaltetem JavaScript die halbe Seite leer.
 * Das ist der teuerste denkbare Fehler fuer eine Seite, die gefunden werden
 * soll, und er faellt beim Entwickeln nie auf. */
.js [data-zeige] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, .61, .36, 1);
}
.js [data-zeige].da { opacity: 1; transform: none; }

@keyframes heroAuf {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-kicker { animation: heroAuf .7s cubic-bezier(.22, .61, .36, 1) both; }
.hero h1 { animation: heroAuf .7s cubic-bezier(.22, .61, .36, 1) .08s both; }
.hero-unter { animation: heroAuf .7s cubic-bezier(.22, .61, .36, 1) .16s both; }
.hero-knoepfe { animation: heroAuf .7s cubic-bezier(.22, .61, .36, 1) .24s both; }

/* ---- Schmale Schirme ---------------------------------------------------- */

@media (max-width: 860px) {
  .nav { padding: 12px 20px; }
  .nav-schalter { display: flex; }
  .nav-menue {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 20px;
    background: rgba(7, 9, 10, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rand-leise);
    /* `visibility` mit dazu: sonst bleiben die Links fuer die Tastatur
     * erreichbar, obwohl das Menue zu ist — man tabbt ins Nichts. */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav-menue.offen { opacity: 1; visibility: visible; transform: none; }
  .nav-menue > a { padding: 12px 4px; border-bottom: 1px solid var(--rand-fein); }
  .nav-abo { margin-top: 10px; text-align: center; border-bottom: none; }

  .mitte { padding: 0 20px; }
  .abschnitt { padding: 56px 0; }
  .kopf h2 { font-size: 28px; }

  .hero { min-height: auto; }
  .hero-text { padding: 30px 0 40px; min-width: 100%; }
  .hero-bild { height: min(520px, 66vh); width: 100%; }
  .schweber-links { bottom: 40px; }
  .schweber .wert { font-size: 22px; }

  .golfer-bild { width: 100%; min-height: 260px; }
  .golfer-text { padding: 24px 22px; }
  .hauptsponsor { padding: 24px 22px; }
  .hauptsponsor-logo { width: 100%; }
  .kontakt-info, .kontakt-form { padding: 24px 22px; }
  .code-zeile { padding: 18px 20px; }
  .code-rechts { width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .nav-name { font-size: 15px; }
  .hero h1 { font-size: clamp(40px, 13vw, 64px); }
  .video-fuss { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Wer Bewegung abgeschaltet hat, bekommt keine. Das ist keine Feinheit: fuer
 * manche Menschen loesen bewegte Flaechen Uebelkeit aus. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-zeige] { opacity: 1; transform: none; }
}
