/* =========================================================
   Fanclub Wagenfeld e.V. — Stylesheet
   Farben: Weiss + #2F6E43 (Vereinsfarben), Loewen-Orange als Signalfarbe
   ========================================================= */

:root {
  --gruen: #2F6E43;
  --gruen-tief: #1B4429;
  --gruen-hell: #E3EEE7;
  --gruen-linie: #C7DCCF;
  --orange: #DD6B20;      /* aus dem Loewen im Vereinslogo */
  --orange-hell: #FDF0E5;
  --weiss: #FFFFFF;
  --papier: #F6F8F6;
  --text: #16241C;
  --text-leise: #5B6B60;
  --rot: #B3261E;

  --radius: 14px;
  --radius-s: 8px;
  --schatten: 0 1px 2px rgba(22,36,28,.06), 0 8px 24px rgba(22,36,28,.06);
  --schatten-hoch: 0 2px 6px rgba(22,36,28,.08), 0 18px 44px rgba(22,36,28,.14);
  --breite: 1180px;
  --header-h: 74px;

  --display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { max-width: 100%; }
body.menue-offen { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(47,110,67,.15);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gruen); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gruen-tief); }

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.08;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gruen); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 8px;
  transition: top .18s;
}
.skip-link:focus { top: 0; }

/* ---------- Eyebrow / Kicker ---------- */
.kicker {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gruen);
  margin: 0 0 .6rem;
}
.kicker--hell { color: rgba(255,255,255,.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em;
  font-size: 1.05rem; font-weight: 600; line-height: 1.15;
  text-align: center; text-wrap: balance;
  padding: .72em 1.35em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .12s ease, background .18s, color .18s, border-color .18s;
}
.btn:active { transform: translateY(1px); }
.btn--primaer { background: var(--gruen); color: #fff; }
.btn--primaer:hover { background: var(--gruen-tief); color: #fff; }
.btn--signal { background: var(--orange); color: #fff; }
.btn--signal:hover { background: #C25A12; color: #fff; }
.btn--linie { border-color: var(--gruen); color: var(--gruen); background: transparent; }
.btn--linie:hover { background: var(--gruen); color: #fff; }
.btn--hell { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn--hell:hover { background: #fff; color: var(--gruen-tief); }
.btn--klein { font-size: .92rem; padding: .5em 1em; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gruen-linie);
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 18px;
  max-width: var(--breite); margin: 0 auto; padding: 0 20px;
}
.marke { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; flex: 0 0 auto; }
.marke img { height: 46px; width: auto; }
.marke__text { display: flex; flex-direction: column; line-height: 1.05; }
.marke__name { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.18rem; color: var(--gruen-tief); }
.marke__zusatz { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-leise); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3em;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  padding: .5em .7em; border-radius: var(--radius-s); text-decoration: none;
}
.nav__link:hover { background: var(--gruen-hell); color: var(--gruen-tief); }
.nav__link[aria-current="page"] { color: var(--gruen); box-shadow: inset 0 -3px 0 var(--gruen); border-radius: 0; }
.nav__pfeil { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); }

.untermenue {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--gruen-linie); border-radius: var(--radius);
  box-shadow: var(--schatten-hoch); padding: 8px; display: none; list-style: none; margin: 0;
}
.nav__item:hover .untermenue,
.nav__item:focus-within .untermenue { display: block; }
.untermenue a {
  display: block; padding: .5em .7em; border-radius: var(--radius-s);
  text-decoration: none; color: var(--text); font-size: .96rem;
}
.untermenue a:hover { background: var(--gruen-hell); color: var(--gruen-tief); }

.header__cta { margin-left: 10px; }
.burger {
  display: none; margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer;
}
.burger span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1200px 500px at 82% -10%, #3C8754 0%, transparent 60%),
    linear-gradient(160deg, var(--gruen) 0%, var(--gruen-tief) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 60px, transparent 60px 120px);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--breite); margin: 0 auto; padding: 68px 20px 76px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__claim { font-size: 1.12rem; color: rgba(255,255,255,.86); max-width: 46ch; }
.hero__aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__marke { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.hero__marke img.logo-gross { width: 190px; }
.offiziell {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius); padding: 10px 14px; max-width: 330px;
}
.offiziell img { width: 46px; background: #fff; border-radius: 8px; padding: 3px; }
.offiziell span { font-size: .8rem; line-height: 1.35; color: rgba(255,255,255,.9); }
.offiziell strong { display: block; font-family: var(--display); text-transform: uppercase; font-size: 1rem; letter-spacing: .04em; color: #fff; }

/* ---------- Anzeigetafel (Matchcenter im Hero) ---------- */
.tafel {
  background: rgba(9,26,16,.55); border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px; padding: 20px; box-shadow: var(--schatten-hoch);
}
.tafel__kopf { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.tafel__label { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: rgba(255,255,255,.7); }
.tafel__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
.tafel__team { text-align: center; font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; line-height: 1.15; }
.tafel__vs { font-family: var(--display); font-size: 2.2rem; font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.tafel__meta { text-align: center; margin-top: 12px; font-size: .88rem; color: rgba(255,255,255,.72); }
.countdown { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.countdown div {
  background: rgba(255,255,255,.1); border-radius: 10px; padding: 8px 10px; min-width: 62px; text-align: center;
}
.countdown b {
  display: block; font-family: var(--display); font-size: 1.7rem; font-variant-numeric: tabular-nums; line-height: 1;
}
.countdown small { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.live-punkt {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #FF4D4F; margin-right: 6px;
  animation: pulsieren 1.4s infinite;
}
@keyframes pulsieren { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

/* ---------- Abschnitte ---------- */
.abschnitt { padding: 76px 0; }
.abschnitt--papier { background: var(--papier); }
.abschnitt--gruen { background: var(--gruen-tief); color: #fff; }
.abschnitt--gruen h2, .abschnitt--gruen h3 { color: #fff; }
.abschnitt__kopf { max-width: 62ch; margin-bottom: 34px; }
.abschnitt__kopf p { color: var(--text-leise); }
.abschnitt--gruen .abschnitt__kopf p { color: rgba(255,255,255,.78); }

.raster { display: grid; gap: 20px; }
.raster--2 { grid-template-columns: repeat(2, 1fr); }
.raster--3 { grid-template-columns: repeat(3, 1fr); }
.raster--4 { grid-template-columns: repeat(4, 1fr); }

.karte {
  background: #fff; border: 1px solid var(--gruen-linie); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--schatten);
}
.karte--flach { box-shadow: none; }
.karte h3 { margin-bottom: .35em; }
.karte p:last-child { margin-bottom: 0; }
.karte__icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--gruen-hell); color: var(--gruen);
  display: grid; place-items: center; margin-bottom: 14px;
}
.karte__icon svg { width: 22px; height: 22px; }

.marker {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .07em;
  font-size: .78rem; font-weight: 600; padding: .28em .7em; border-radius: 999px;
}
.marker--frei { background: var(--orange-hell); color: #A24E0B; border: 1px solid #F3C89F; }
.marker--voll { background: #F1F3F1; color: var(--text-leise); border: 1px solid #DEE3DF; }
.marker--heim { background: var(--gruen-hell); color: var(--gruen-tief); }
.marker--aus { background: #EEF1F5; color: #46566B; }
.marker--spass { background: #FFF6DA; color: #8A6A00; }

/* ---------- Matchcenter (Unterseite / Sektion) ---------- */
.reiter { display: flex; gap: 6px; background: var(--gruen-hell); padding: 5px; border-radius: 999px; width: fit-content; margin-bottom: 24px; }
.reiter button {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: 1rem;
  border: 0; background: transparent; color: var(--gruen-tief); padding: .5em 1.2em; border-radius: 999px;
  cursor: pointer; text-align: center; line-height: 1.15;
}
.reiter button[aria-selected="true"] { background: var(--gruen); color: #fff; }

.spiel {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center;
  padding: 16px 18px; border: 1px solid var(--gruen-linie); border-radius: var(--radius); background: #fff;
}
.spiel + .spiel { margin-top: 12px; }
.spiel__datum { font-family: var(--display); text-transform: uppercase; line-height: 1.1; color: var(--gruen); }
.spiel__datum b { display: block; font-size: 1.7rem; }
.spiel__paarung { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; line-height: 1.2; }
.spiel__ort { font-size: .86rem; color: var(--text-leise); }
.spiel__ergebnis {
  font-family: var(--display); font-size: 1.9rem; font-variant-numeric: tabular-nums; color: var(--gruen-tief);
  background: var(--gruen-hell); border-radius: 10px; padding: .1em .5em;
}

.tabelle-wrap { overflow-x: auto; border: 1px solid var(--gruen-linie); border-radius: var(--radius); background: #fff; }
table.tabelle { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 620px; }
table.tabelle th, table.tabelle td { padding: 10px 12px; text-align: right; border-bottom: 1px solid #EDF1EE; }
table.tabelle th:nth-child(2), table.tabelle td:nth-child(2) { text-align: left; }
table.tabelle thead th {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem;
  color: var(--text-leise); background: var(--papier);
}
table.tabelle tbody tr.ist-werder { background: var(--gruen-hell); font-weight: 600; }
table.tabelle td.verein { display: flex; align-items: center; gap: 8px; }
table.tabelle td.verein img { width: 20px; height: 20px; object-fit: contain; }

.hinweis {
  font-size: .84rem; color: var(--text-leise); margin-top: 12px;
}

/* ---------- Neuigkeiten ---------- */
.news { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.news__karte {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--gruen-linie);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten);
}
.news__bild { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--gruen-hell); }
.news__inhalt { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news__datum { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-leise); }
.news__text { color: var(--text-leise); font-size: .96rem; }

/* ---------- Termine ---------- */
.termin {
  display: grid; grid-template-columns: 82px 1fr auto; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--gruen-linie); border-radius: var(--radius); padding: 18px;
}
.termin + .termin { margin-top: 12px; }
.termin__datum {
  background: var(--gruen); color: #fff; border-radius: 10px; text-align: center; padding: 10px 6px;
  font-family: var(--display); text-transform: uppercase; line-height: 1.05;
}
.termin__datum b { display: block; font-size: 1.9rem; }
.termin__datum small { font-size: .72rem; letter-spacing: .1em; }
.termin__titel { font-family: var(--display); text-transform: uppercase; font-size: 1.28rem; margin: 0 0 4px; }
.termin__meta { font-size: .88rem; color: var(--text-leise); }
.termin__rechts { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.filterleiste { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filterleiste button {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: .95rem;
  border: 1px solid var(--gruen-linie); background: #fff; color: var(--text); padding: .45em 1em;
  border-radius: 999px; cursor: pointer; text-align: center; line-height: 1.15;
}
.filterleiste button[aria-pressed="true"] { background: var(--gruen); border-color: var(--gruen); color: #fff; }

/* ---------- Stadion / Dauerkarten ---------- */
.stadion { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
#stadion-svg { width: 100%; height: auto; }
.stadion-block { transition: fill .3s, stroke .3s; cursor: default; }
.stadion-block--unser { cursor: pointer; }
.stadion-block--unser.puls { animation: blockpuls 2.6s ease-in-out infinite; }
@keyframes blockpuls {
  0%, 100% { fill: var(--orange); filter: none; }
  50% { fill: #F79B54; }
}
.stadion-legende { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.stadion-legende div { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.stadion-legende i { width: 16px; height: 16px; border-radius: 4px; display: inline-block; }
.block-karte {
  border-left: 4px solid var(--orange); background: var(--orange-hell);
  border-radius: var(--radius-s); padding: 14px 16px;
}
.block-karte h4 { margin-bottom: 2px; color: #8A4108; }
.block-karte p { margin: 0; font-size: .92rem; color: #7A4A22; }

/* ---------- Beitritts-Band ---------- */
.band {
  background: linear-gradient(120deg, var(--gruen) 0%, var(--gruen-tief) 100%);
  color: #fff; border-radius: 20px; padding: 40px; display: grid;
  grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.band h2 { color: #fff; margin-bottom: .3em; }
.band p { color: rgba(255,255,255,.85); margin: 0; max-width: 55ch; }

/* ---------- Vorstand ---------- */
.person {
  background: #fff; border: 1px solid var(--gruen-linie); border-radius: var(--radius); padding: 20px; text-align: center;
}
.person__rolle { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); font-weight: 600; }
.person__name { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; margin: 6px 0 4px; }
.person__daten { font-size: .88rem; color: var(--text-leise); }
.person__daten a { display: inline-block; margin-top: 4px; }

/* ---------- Beitraege / Preise ---------- */
.preis {
  background: #fff; border: 1px solid var(--gruen-linie); border-radius: var(--radius); padding: 24px;
}
.preis--hervor { border-color: var(--gruen); box-shadow: var(--schatten-hoch); }
.preis__wert { font-family: var(--display); font-size: 2.6rem; color: var(--gruen); line-height: 1; }
.preis__wert small { font-size: 1rem; color: var(--text-leise); }
.liste-check { list-style: none; padding: 0; margin: 0; }
.liste-check li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.liste-check li::before {
  content: ""; position: absolute; left: 4px; top: .55em;
  width: 10px; height: 6px; border-left: 2px solid var(--gruen); border-bottom: 2px solid var(--gruen);
  transform: rotate(-45deg);
}

/* ---------- Akkordeon (Satzung, FAQ) ---------- */
.akkordeon { border: 1px solid var(--gruen-linie); border-radius: var(--radius); overflow: hidden; background: #fff; }
.akkordeon details + details { border-top: 1px solid var(--gruen-linie); }
.akkordeon summary {
  cursor: pointer; padding: 15px 18px; font-family: var(--display); text-transform: uppercase;
  font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.akkordeon summary::-webkit-details-marker { display: none; }
.akkordeon summary::after { content: "+"; font-size: 1.5rem; color: var(--gruen); line-height: 1; }
.akkordeon details[open] summary::after { content: "–"; }
.akkordeon .inhalt { padding: 0 18px 18px; color: var(--text-leise); }

/* ---------- Footer ---------- */
.footer { background: var(--gruen-tief); color: rgba(255,255,255,.8); padding: 56px 0 26px; margin-top: 0; }
.footer a { color: #fff; }
.footer__raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { color: #fff; font-size: 1.05rem; letter-spacing: .08em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 7px; font-size: .95rem; }
.footer__unten {
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .85rem;
}
.footer__marken { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer__marken img { height: 54px; background: #fff; border-radius: 8px; padding: 4px; }

/* ---------- Mobile Aktionsleiste ---------- */
.mobil-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--gruen-linie); padding: 10px 14px;
  gap: 10px; box-shadow: 0 -6px 20px rgba(22,36,28,.08);
}
.mobil-cta .btn { flex: 1; justify-content: center; padding-left: .8em; padding-right: .8em; }

/* ---------- Seiten-Kopf (Unterseiten) ---------- */
.seitenkopf {
  background: linear-gradient(150deg, var(--gruen) 0%, var(--gruen-tief) 100%);
  color: #fff; padding: 52px 0 46px;
}
.seitenkopf h1 { color: #fff; margin-bottom: .2em; }
.seitenkopf p { color: rgba(255,255,255,.82); max-width: 60ch; margin: 0; }
.brotkrumen { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.brotkrumen a { color: rgba(255,255,255,.85); }

/* ---------- Prose ---------- */
.prosa { max-width: 72ch; }
.prosa h2 { margin-top: 1.4em; }
.prosa ul { padding-left: 1.1em; }

.platzhalter {
  border: 1px dashed var(--gruen-linie); background: var(--papier);
  border-radius: var(--radius); padding: 18px; color: var(--text-leise); font-size: .92rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; padding-top: 46px; }
  .stadion { grid-template-columns: 1fr; }
  .raster--4 { grid-template-columns: repeat(2, 1fr); }
  .news { grid-template-columns: repeat(2, 1fr); }
  .footer__raster { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .burger { display: block; }
  .header__cta { display: none; }
  .marke img { height: 40px; }
  .marke__name { font-size: 1.02rem; }
  .marke__zusatz { font-size: .6rem; }
  .nav__pfeil { display: none; }

  /* Vollflaechiges Menue. dvh faengt die ein- und ausfahrende
     Adressleiste auf Mobilgeraeten ab. */
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: #fff;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px calc(96px + env(safe-area-inset-bottom));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: none;
  }
  .nav.offen { display: flex; }
  .nav__item { border-bottom: 1px solid var(--gruen-linie); }
  .nav__link { padding: 15px 4px; font-size: 1.15rem; min-height: 48px; }
  .untermenue {
    position: static; display: block; border: 0; box-shadow: none;
    padding: 0 0 12px 14px; min-width: 0; background: transparent;
  }
  .untermenue a { padding: 11px 4px; font-size: 1rem; min-height: 44px; display: flex; align-items: center; }

  .mobil-cta {
    display: flex;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

  .abschnitt { padding: 46px 0; }
  .hero__inner { padding: 34px 20px 44px; }
  .hero__marke img.logo-gross { width: 150px; }
  .band { grid-template-columns: 1fr; padding: 26px; }

  .spiel { grid-template-columns: 62px 1fr; gap: 12px; padding: 14px; }
  .spiel__datum b { font-size: 1.45rem; }
  .spiel__paarung { font-size: 1.15rem; }
  .spiel__ergebnis { grid-column: 2; justify-self: start; font-size: 1.5rem; }

  .termin { grid-template-columns: 60px 1fr; gap: 14px; padding: 14px; }
  .termin__datum b { font-size: 1.5rem; }
  .termin__rechts { grid-column: 1 / -1; flex-direction: row; align-items: center;
                    justify-content: flex-start; flex-wrap: wrap; }

  .tafel { padding: 16px; }
  .tafel__team { font-size: .98rem; }
  .tafel__vs { font-size: 1.7rem; }
  .countdown { gap: 6px; }
  .countdown div { min-width: 0; flex: 1; padding: 7px 4px; }
  .countdown b { font-size: 1.35rem; }
  .countdown small { font-size: .55rem; letter-spacing: .06em; }

  .reiter { width: 100%; }
  .reiter button { flex: 1; padding: .55em .6em; }
  .filterleiste button { min-height: 42px; }
  .karte, .preis, .person { padding: 18px; }
  .offiziell { max-width: none; }
}

@media (max-width: 620px) {
  .raster--2, .raster--3, .raster--4, .news { grid-template-columns: 1fr; }
  .footer__raster { grid-template-columns: 1fr; }
  .hero__marke { flex-direction: column; align-items: flex-start; }
  body { font-size: 16px; }
  h1 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .seitenkopf { padding: 34px 0 30px; }
  .wrap { padding: 0 16px; }
  .header__inner { padding: 0 16px; gap: 10px; }
  .marke__zusatz { display: none; }
  .btn { font-size: 1rem; padding: .68em 1.1em; }
  .hero__aktionen .btn { flex: 1; justify-content: center; }
  .stadion-legende { gap: 10px; }
  .block-karte { padding: 12px 14px; }
  table.tabelle { font-size: .88rem; }
  table.tabelle th, table.tabelle td { padding: 8px 9px; }
}

/* Grosse Zeigegeraete-freie Bedienung: kein Hover-Untermenue auf Touch */
@media (hover: none) {
  .nav__item:hover .untermenue { display: none; }
  .nav.offen .nav__item .untermenue { display: block; }
}

/* Desktop: weicher Header erst dort, wo kein fixiertes Menue noetig ist */
@media (min-width: 861px) {
  .header {
    background: rgba(255,255,255,.94);
    backdrop-filter: saturate(160%) blur(10px);
  }
}

/* ---------- Admin ---------- */
.admin-grid { display: grid; grid-template-columns: 320px 1fr; gap: 26px; align-items: start; }
.feld { margin-bottom: 14px; }
.feld label { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-leise); margin-bottom: 5px; }
.feld input, .feld textarea, .feld select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gruen-linie); border-radius: var(--radius-s);
  font: inherit; font-size: .95rem; background: #fff; color: var(--text);
}
.feld textarea { min-height: 110px; resize: vertical; }
.feld--reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.eintrag {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
  padding: 12px; border: 1px solid var(--gruen-linie); border-radius: var(--radius-s); margin-bottom: 10px; background: #fff;
}
.eintrag__aktionen { display: flex; gap: 6px; flex-shrink: 0; }
.mini {
  font-family: var(--display); text-transform: uppercase; font-size: .82rem; letter-spacing: .05em;
  border: 1px solid var(--gruen-linie); background: #fff; border-radius: 6px; padding: .3em .7em; cursor: pointer;
}
.mini--loeschen { color: var(--rot); border-color: #E8C4C1; }
@media (max-width: 860px) { .admin-grid { grid-template-columns: 1fr; } }


/* ---------- Cookie-Hinweis ---------- */
.cookie-hinweis {
  position: fixed; z-index: 120;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 760px; margin: 0 auto;
  background: #fff; color: var(--text);
  border: 1px solid var(--gruen-linie); border-radius: var(--radius);
  box-shadow: var(--schatten-hoch);
  padding: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.cookie-hinweis[hidden] { display: none; }
.cookie-hinweis strong {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.1rem; display: block; margin-bottom: 6px;
}
.cookie-hinweis p { font-size: .88rem; color: var(--text-leise); margin: 0 0 6px; }
.cookie-hinweis p:last-child { margin-bottom: 0; }
.cookie-hinweis__aktionen { display: flex; flex-direction: column; gap: 8px; }
.cookie-hinweis__aktionen .btn { justify-content: center; white-space: nowrap; }

@media (max-width: 860px) {
  .cookie-hinweis {
    left: 8px; right: 8px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr; gap: 14px; padding: 16px;
    max-height: 70dvh; overflow-y: auto;
  }
  .cookie-hinweis__aktionen { flex-direction: row; }
  .cookie-hinweis__aktionen .btn { flex: 1; }
}
