/* ==========================================================================
   Dabringhauser TV 1878 e. V. – Stylesheet
   Design-Tokens aus der Claude-Design-Vorlage "DTV Dabringhausen"
   ========================================================================== */

:root {
  --c-primary: #31175F;
  --c-primary-dark: #241047;
  --c-primary-soft: #EFEAF7;
  --c-primary-border: #C6B6E4;
  --c-bg: #F6F8FB;
  --c-surface: #fff;
  --c-text: #45505F;
  --c-text-strong: #1F1338;
  --c-text-soft: #5A6675;
  --c-muted: #64748B; /* dunkler als Vorlage (#8290A3) für WCAG-AA-Kontrast */
  --c-border: #E9EEF4;
  --c-border-strong: #DBE3EC;
  --c-input-border: #E1E8F0;
  --c-img-bg: #E9EEF5;
  --font-display: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --radius-card: 20px;
  --shadow-card-hover: 0 22px 44px -24px rgba(15, 30, 51, .5);
  --container: 1180px;
  --pad-x: clamp(16px, 4vw, 32px);
  --section-y: clamp(56px, 9vw, 104px);
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; }
::selection { background: var(--c-primary); color: #fff; }
[hidden] { display: none !important; }
.no-js .wizard-step[hidden] { display: block !important; } /* Ausnahme: Wizard-Schritte ohne JS zeigen */

@keyframes dtvup { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }
@keyframes dtvreveal { from { opacity: 0; translate: 0 26px; } to { opacity: 1; translate: 0 0; } }
@keyframes dtvfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dtvdrawer { from { opacity: 0; translate: 64px 0; } to { opacity: 1; translate: 0 0; } }
@keyframes dtvgrow { from { scale: 0 1; } to { scale: 1 1; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* Entrance-Animation (Hero) */
.anim-up { animation: dtvup .8s cubic-bezier(.16, 1, .3, 1) both; }
.anim-up.d1 { animation-delay: .05s; }
.anim-up.d2 { animation-delay: .15s; }
.anim-up.d3 { animation-delay: .25s; }
.anim-up.d4 { animation-delay: .35s; }
.anim-page { animation: dtvup .5s cubic-bezier(.16, 1, .3, 1) both; }

/* Scroll-getriebene Reveal-Animation (fällt in älteren Browsern auf "sichtbar" zurück) */
.reveal {
  animation: dtvreveal linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--c-primary); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: 15.5px; padding: 14px 24px;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
}
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 10px 26px -6px rgba(49, 23, 95, .45); }
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; }
.btn-secondary { background: var(--c-surface); color: var(--c-primary); border: 1px solid #D8E0EA; }
.btn-secondary:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-soft { background: #F4F6F9; color: var(--c-primary); border: 1px solid var(--c-input-border); }
.btn-soft:hover { background: #EAEEF3; }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 248, 251, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 30, 51, .08);
}
.site-header .container { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; color: inherit; }
.brand:hover { color: inherit; }
.brand-logo {
  flex: none; width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  background: #fff; box-shadow: 0 4px 14px rgba(49, 23, 95, .20);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(15px, 2.4vw, 18px); color: var(--c-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-sub { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); font-weight: 600; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 9px; flex: none; }
.header-cta { padding: 11px clamp(13px, 2vw, 20px); font-size: 14.5px; box-shadow: 0 6px 18px rgba(49, 23, 95, .32); white-space: nowrap; gap: 4px; }
.menu-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--c-primary); border: 1px solid var(--c-input-border);
  border-radius: 999px; padding: 10px 15px; font-weight: 600; font-size: 14.5px; cursor: pointer;
}
.menu-btn:hover { border-color: #C4D0DE; }
.menu-btn-bars { display: flex; flex-direction: column; gap: 3.5px; width: 16px; }
.menu-btn-bars span { height: 2px; background: var(--c-primary); border-radius: 2px; }

/* Kompakter Header auf schmalen Screens: nichts abschneiden */
@media (max-width: 700px) {
  .site-header .container { gap: 8px; }
  .brand { gap: 9px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 15px; }
  .header-actions { gap: 7px; }
  .header-cta { padding: 9px 13px; font-size: 13.5px; }
  .menu-btn { padding: 9px 12px; font-size: 13.5px; }
}
@media (max-width: 460px) {
  .menu-btn-label { display: none; }
  .menu-btn { padding: 10px 11px; }
  .header-cta { font-size: 13px; padding: 9px 11px; }
  .brand-logo { width: 34px; height: 34px; }
  .brand-name { font-size: 14px; }
}
@media (max-width: 385px) {
  .site-header .container { padding-left: 12px; padding-right: 12px; gap: 6px; }
  .brand { gap: 7px; }
  .brand-name { font-size: 13px; }
  .header-actions { gap: 6px; }
  .header-cta { padding: 9px 10px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(1200px 520px at 72% -12%, #ECE6F6 0%, rgba(236, 230, 246, 0) 60%); pointer-events: none; }
.hero .container { padding-top: clamp(38px, 7vw, 82px); padding-bottom: clamp(46px, 7vw, 88px); position: relative; }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.7rem, 6.4vw, 4.7rem); line-height: 1.0; letter-spacing: -.035em;
  color: var(--c-primary); margin-bottom: 22px;
}
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #4E5A6B; max-width: 31ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 9px 22px; color: #6B7688; font-size: 14px; font-weight: 500; }
.hero-facts span { display: inline-flex; align-items: center; gap: 7px; }
.hero-facts .check { color: var(--c-primary); font-weight: 800; }
.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 4 / 5;
  background: #E7EDF4; box-shadow: 0 30px 70px -30px rgba(15, 30, 51, .5);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -14px; bottom: 24px;
  background: #fff; border: 1px solid #EAEFF5; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 18px 40px -18px rgba(15, 30, 51, .45); pointer-events: none;
}
.hero-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--c-primary); line-height: 1; }
.hero-badge-label { font-size: 12.5px; color: #5A6675; font-weight: 600; margin-top: 3px; }
.hero-quality {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 24px;
  background: #fff; border: 1px solid #EAEFF5; border-radius: 16px; padding: 10px 16px 10px 10px;
  box-shadow: 0 10px 26px -16px rgba(15, 30, 51, .35); max-width: 440px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.hero-quality:hover { border-color: var(--c-border-strong); box-shadow: 0 16px 34px -18px rgba(15, 30, 51, .45); }
.hero-quality img { width: 132px; height: auto; border-radius: 10px; flex: none; }
.hero-quality span { font-size: 13px; font-weight: 600; color: var(--c-text-soft); line-height: 1.45; }

/* --------------------------------------------------------------------------
   Zahlen-Leiste
   -------------------------------------------------------------------------- */
.stats-band { border-top: 1px solid #EAEFF5; border-bottom: 1px solid #EAEFF5; background: #fff; }
.stats-band .container {
  padding-top: clamp(28px, 4vw, 44px); padding-bottom: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--c-primary); line-height: 1; letter-spacing: -.02em; }
.stat-label { margin-top: 8px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-muted); }

/* --------------------------------------------------------------------------
   Sektionen
   -------------------------------------------------------------------------- */
.section { padding: var(--section-y) 0; scroll-margin-top: 84px; }
.section-white { background: #fff; border-top: 1px solid #EEF2F6; }
.section-head { max-width: 640px; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 620px; }
.section-head.row { max-width: none; display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.row > div { max-width: 560px; }
.eyebrow { font: 600 13px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 14px; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.06; letter-spacing: -.025em;
  color: var(--c-primary);
}
.section-lead { margin-top: 14px; font-size: 1.08rem; color: var(--c-text-soft); }
.section-link { font-weight: 600; font-size: 15px; color: var(--c-primary); white-space: nowrap; }

/* Dunkle (lila) Sektionen */
.section-dark { background: var(--c-primary); color: #C4D0DE; position: relative; overflow: hidden; }
.section-dark .eyebrow { color: #B9A9DE; }
.section-dark .section-title { color: #fff; }
.section-dark .section-lead { color: #AEBACB; }

/* --------------------------------------------------------------------------
   Karten: Sportangebot & News
   -------------------------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: clamp(16px, 2vw, 22px); }
.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-card);
  overflow: hidden; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--c-border-strong); color: inherit; }
.card-media { position: relative; aspect-ratio: 16 / 10; background: var(--c-img-bg); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255, 255, 255, .92); border-radius: 999px; padding: 5px 11px;
  font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--c-primary); pointer-events: none;
}
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; color: var(--c-primary); letter-spacing: -.01em; }
.card-text { margin-top: 7px; font-size: 14.5px; color: #5E6A78; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.card-tags span { font-size: 11.5px; font-weight: 600; color: var(--c-text-soft); background: #F1F4F8; border-radius: 999px; padding: 4px 10px; }
.card-more { margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--c-primary); }

.news-grid { grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); }
.news-meta { display: flex; gap: 10px; align-items: center; font-size: 12.5px; font-weight: 600; color: var(--c-muted); }
.news-meta .cat { color: var(--c-primary); background: var(--c-primary-soft); border-radius: 999px; padding: 3px 9px; }
.news-title { margin-top: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.28; color: var(--c-primary); }
.news-excerpt {
  margin-top: 8px; font-size: 14px; color: #5E6A78;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}

/* --------------------------------------------------------------------------
   Vereinsheim / Spendenbarometer
   -------------------------------------------------------------------------- */
.vh-glow { position: absolute; inset: 0; background: radial-gradient(900px 420px at 12% 0%, rgba(139, 104, 201, .40) 0%, rgba(12, 26, 46, 0) 55%); pointer-events: none; }
.vh-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 52px); align-items: center; position: relative; }
.vh-copy p { margin-top: 16px; font-size: 1.06rem; color: #AEBACB; max-width: 46ch; }
.vh-features { margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.vh-features div {
  display: flex; align-items: center; min-height: 58px; /* Höhe für 2 Zeilen – alle Kacheln gleich groß */
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: #DCE4EE; line-height: 1.35;
}
.vh-photo { margin-top: 26px; position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 10; background: #3A2168; }
.vh-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Vorher/Nachher-Bildvergleich (Baustelle ↔ Visualisierung) */
.ba-slider { position: relative; touch-action: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 3px;
  background: #fff; box-shadow: 0 0 12px rgba(0, 0, 0, .35); pointer-events: none; z-index: 2;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: -1px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35); white-space: nowrap;
}
.ba-label {
  position: absolute; bottom: 12px; z-index: 2; pointer-events: none;
  background: rgba(12, 26, 46, .72); color: #fff; border-radius: 999px;
  padding: 5px 12px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.ba-label.ba-left { left: 12px; }
.ba-label.ba-right { right: 12px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; z-index: 3; -webkit-appearance: none; appearance: none;
}
.ba-range:focus-visible ~ .ba-handle, .ba-slider:has(.ba-range:focus-visible) .ba-handle { outline: 2px solid #fff; outline-offset: 2px; }
.ba-hint { margin-top: 10px; font-size: 13px; color: #AEBACB; }
.vh-press { margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.vh-press-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B9A9DE; }
.vh-press a { color: #DCE4EE; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255, 255, 255, .3); }
.vh-press a:hover { color: #fff; }
.partner-band-logo:hover { background: var(--c-primary-dark); }

.donation-card {
  background: #fff; border-radius: 24px; padding: clamp(22px, 3vw, 32px);
  color: var(--c-primary); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .6);
}
.donation-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.donation-label { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.donation-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; margin-top: 8px; }
.donation-goal { font-size: 14px; color: #5A6675; margin-top: 4px; }
.donation-pct { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.donation-bar { margin-top: 18px; height: 14px; border-radius: 999px; background: #EDE7F5; overflow: hidden; }
.donation-bar-fill {
  height: 100%; border-radius: 999px; background: linear-gradient(90deg, #6A3FB0, var(--c-primary));
  transform-origin: left;
  animation: dtvgrow linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 45%;
}
.donation-remaining { margin-top: 10px; font-size: 13.5px; color: #5A6675; }
.donation-remaining strong { color: var(--c-primary); }
.donation-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.donation-iban { margin-top: 18px; padding-top: 16px; border-top: 1px solid #EEF1F5; font-size: 13px; color: #5A6675; }
.donation-iban strong { color: var(--c-primary); font-size: 14px; letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   Termine
   -------------------------------------------------------------------------- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 14px; }
.event-card {
  display: flex; gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--c-border); border-radius: 18px; padding: 16px 18px;
  transition: border-color .18s ease, box-shadow .18s ease; color: inherit;
}
.event-card:hover { border-color: var(--c-border-strong); box-shadow: 0 16px 34px -22px rgba(15, 30, 51, .4); color: inherit; }
.event-date {
  flex: none; width: 64px; height: 70px; border-radius: 14px;
  background: var(--c-primary); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
}
.event-date .wd { font-size: 11px; font-weight: 700; color: #B9A9DE; letter-spacing: .06em; }
.event-date .day { font-family: var(--font-display); font-weight: 800; font-size: 25px; margin-top: 3px; }
.event-date .mon { font-size: 11px; font-weight: 600; color: #9AA8BC; margin-top: 3px; }
.event-info { min-width: 0; }
.event-title { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--c-primary); }
.event-meta { margin-top: 5px; font-size: 13.5px; color: #6B7688; }
.event-tag { display: inline-block; margin-top: 9px; font-size: 11.5px; font-weight: 600; color: var(--c-primary); background: var(--c-primary-soft); border-radius: 999px; padding: 3px 9px; }

/* --------------------------------------------------------------------------
   Mitmachen-Karten
   -------------------------------------------------------------------------- */
.join-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 20px); }
.join-card { position: relative; border-radius: 22px; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; }
.join-card-bg { position: absolute; inset: 0; background: #E7EDF4; }
.join-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.join-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 26, 46, 0) 32%, rgba(12, 26, 46, .85) 100%); pointer-events: none; }
.join-card-content { position: relative; padding: 24px; color: #fff; }
.join-card-content h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; }
.join-card-content p { margin-top: 8px; font-size: 14.5px; color: #DCE4EE; }
.join-card-content .btn-white { display: inline-block; margin-top: 16px; background: #fff; color: var(--c-primary); border-radius: 999px; padding: 11px 18px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; }
.join-card-content .btn-white:hover { background: #EAEEF3; }

/* --------------------------------------------------------------------------
   Vorstand
   -------------------------------------------------------------------------- */
.board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 2vw, 18px); }
.board-card { background: #fff; border: 1px solid var(--c-border); border-radius: 18px; padding: 22px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--c-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.avatar-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-primary-soft); }
.board-card h3 { margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--c-primary); }
.board-role { font-size: 13.5px; font-weight: 600; color: var(--c-primary); margin-top: 2px; }
.board-mail { display: inline-block; margin-top: 12px; font-size: 13.5px; color: #5E6A78; word-break: break-all; }
.board-mail:hover { color: var(--c-primary); }

/* --------------------------------------------------------------------------
   Sponsoren
   -------------------------------------------------------------------------- */
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; max-width: 980px; margin: 0 auto; }
.sponsor-tile { display: flex; align-items: center; justify-content: center; height: 118px; background: #fff; border: 1px solid var(--c-border); border-radius: 16px; padding: 22px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
a.sponsor-tile:hover { border-color: var(--c-border-strong); box-shadow: 0 16px 34px -22px rgba(15, 30, 51, .4); transform: translateY(-2px); }
.sponsor-tile img { max-height: 60px; max-width: 100%; width: auto; object-fit: contain; }
.sponsor-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  height: 118px; background: var(--c-primary-soft); border: 1px dashed var(--c-primary-border); border-radius: 16px; padding: 20px;
}
.sponsor-cta:hover { background: #E7DCF5; }
.sponsor-cta strong { font-weight: 700; color: var(--c-primary); font-size: 15px; }
.sponsor-cta span { font-size: 12.5px; color: #7C6C9C; }
.partner-band { margin-top: 46px; padding-top: 34px; border-top: 1px solid #EEF2F6; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.partner-band-label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #A99FB6; }
.partner-band-logo { display: inline-flex; align-items: center; gap: 12px; padding: 15px 26px; border-radius: 16px; background: var(--c-primary); }
.partner-band-logo img { height: 26px; width: auto; }
.partner-band-logo span { font-family: var(--font-display); font-weight: 700; font-size: 23px; color: #fff; letter-spacing: -.01em; }
.quality-badge { margin-top: 26px; display: flex; justify-content: center; }
.quality-badge img { max-height: 110px; width: auto; border-radius: 10px; }

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 52px); position: relative; }
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B9A9DE; margin-bottom: 6px; }
.contact-value, .contact-list a { color: #DCE4EE; font-size: 15px; line-height: 1.6; }
.contact-list a:hover { color: #fff; }
.contact-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 22px; }
.social-pills { display: flex; gap: 10px; margin-top: 2px; flex-wrap: wrap; }
.social-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); color: #DCE4EE;
  border-radius: 999px; padding: 9px 17px 9px 14px; font-size: 13.5px; font-weight: 600;
}
.social-pill:hover { background: rgba(255, 255, 255, .16); color: #fff; }

.form-card { background: #fff; border-radius: 24px; padding: clamp(22px, 3vw, 30px); color: var(--c-primary); }
.form-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.form-card .form-sub { margin-top: 6px; font-size: 14px; color: #6B7688; }
.form-fields { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #5E6A78; margin-bottom: 5px; }
.input {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--c-input-border); border-radius: 12px;
  font-size: 15px; color: var(--c-primary); background: #F8FAFC; outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.input:focus { border-color: var(--c-primary); background: #fff; }
textarea.input { resize: vertical; min-height: 110px; }
.input.error { border-color: #C0392B; }
.field-error { color: #C0392B; font-size: 13px; margin-top: 4px; }
.form-note { font-size: 12.5px; color: #5A6675; }
.form-note a { text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: 14px; padding: 14px 18px; font-size: 14.5px; font-weight: 600; margin-bottom: 16px; }
.alert-success { background: #E7F6EC; color: #1E7B3C; border: 1px solid #BFE6CC; }
.alert-error { background: #FBEAE8; color: #B03A2E; border: 1px solid #F2C7C1; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--c-primary-dark); color: #9AA8BC; }
.site-footer .container { padding-top: clamp(48px, 7vw, 80px); padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; }
.footer-brand { max-width: 300px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-row .brand-logo { width: 44px; height: 44px; box-shadow: none; }
.footer-brand-row strong { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18px; }
.footer-brand p { font-size: 14px; color: #7C8A9E; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); color: #C6D0DD;
}
.footer-social a:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8494A8; margin-bottom: 14px; }
.footer-nav a { color: #9AA8BC; font-size: 14.5px; display: block; padding: 5px 0; }
.footer-nav a:hover { color: #fff; }
.footer-contact { font-size: 14.5px; color: #7C8AAC; line-height: 1.7; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 13px; color: #6B7B90;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer-bottom-links a { color: #8494A8; }
.footer-bottom-links a:hover { color: #fff; }
.powered-by { display: inline-flex; align-items: center; gap: 8px; color: #9184AA; }
.powered-by .fx { display: inline-flex; align-items: center; gap: 7px; }
.powered-by img { height: 15px; width: auto; }
.powered-by strong { color: #EDE8F5; font-family: var(--font-display); font-weight: 700; font-size: 14px; }

/* --------------------------------------------------------------------------
   Menü-Drawer
   -------------------------------------------------------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 80; background: rgba(9, 18, 32, .5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: dtvfade .25s ease both;
}
.drawer-overlay[hidden] { display: none; }
.drawer {
  position: absolute; top: 0; right: 0; height: 100%; width: min(440px, 100%);
  background: var(--c-bg); box-shadow: -30px 0 80px -30px rgba(0, 0, 0, .5);
  display: flex; flex-direction: column; overflow-y: auto;
  padding: 20px clamp(20px, 4vw, 30px) 30px;
  animation: dtvdrawer .4s cubic-bezier(.16, 1, .3, 1) both;
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.drawer-head .brand-logo { width: 42px; height: 42px; box-shadow: 0 2px 8px rgba(49, 23, 95, .15); }
.drawer-head strong { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--c-primary); }
.drawer-close {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--c-input-border);
  color: var(--c-primary); font-size: 19px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.drawer-close:hover { border-color: #C4D0DE; }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 6vw, 30px);
  color: var(--c-primary); padding: 12px 0; border-bottom: 1px solid #E7ECF2;
  transition: padding-left .15s ease;
}
.drawer-nav a:hover { padding-left: 8px; }
.drawer-sports-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin: 24px 0 12px; }
.drawer-sports { display: flex; flex-wrap: wrap; gap: 8px; }
.drawer-sports a {
  font-size: 13.5px; font-weight: 600; color: #3A4656;
  background: #fff; border: 1px solid #E5EAF1; border-radius: 999px; padding: 8px 13px;
  transition: border-color .15s ease, color .15s ease;
}
.drawer-sports a:hover { border-color: var(--c-primary); color: var(--c-primary); }
.drawer-foot { margin-top: auto; padding-top: 26px; }
.drawer-foot .btn { border-radius: 14px; padding: 16px; font-size: 16px; }
.drawer-foot-info { margin-top: 16px; font-size: 13.5px; color: #6B7688; line-height: 1.7; }

/* --------------------------------------------------------------------------
   Unterseiten: Abteilung / Mannschaft / Artikel / Kalender
   -------------------------------------------------------------------------- */
.back-link { display: inline-flex; align-items: center; gap: 7px; color: var(--c-primary); font-weight: 600; font-size: 14.5px; margin-bottom: 22px; }
.back-link:hover { opacity: .65; }

.page-hero { padding: clamp(26px, 4vw, 44px) 0 clamp(20px, 3vw, 36px); }
.page-hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 48px); align-items: center; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -.03em; color: var(--c-text-strong);
}
.page-hero-lead { margin-top: 16px; font-size: 1.1rem; color: #4C4860; line-height: 1.7; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.page-hero-media { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--c-img-bg); box-shadow: 0 30px 70px -34px rgba(49, 23, 95, .5); }
.page-hero-media.wide { aspect-ratio: 16 / 10; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.subsection { padding: clamp(40px, 6vw, 72px) 0; }
.subsection-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -.02em; color: var(--c-text-strong); margin-bottom: 26px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.team-card {
  display: flex; flex-direction: column; text-align: left;
  background: #F7F6FB; border: 1.5px solid var(--c-border); border-radius: 16px; padding: 20px;
  color: inherit; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.team-card:hover { border-color: var(--c-primary-border); transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(49, 23, 95, .45); color: inherit; }
.team-card strong { font-family: var(--font-display); font-weight: 700; color: var(--c-text-strong); font-size: 1.08rem; }
.team-card .desc { margin-top: 7px; font-size: 13.5px; color: #5E5A6E; line-height: 1.55; flex: 1; }
.team-card .train { margin-top: 12px; font-size: 13px; font-weight: 600; color: #837E92; }
.team-card .more { margin-top: 12px; font-weight: 600; font-size: 14px; color: var(--c-primary); }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); align-items: start; }
.info-card { background: #fff; border: 1px solid var(--c-border); border-radius: 20px; padding: 24px; }
.info-card.tinted { background: #F7F6FB; }
.info-card-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #837E92; margin-bottom: 16px; }
.training-rows { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.training-rows > div { display: flex; gap: 12px; }
.training-rows span { color: #837E92; min-width: 48px; }
.training-rows strong { color: var(--c-text-strong); font-weight: 600; }
.training-note { margin-top: 16px; font-size: 13px; color: #837E92; }
.contact-person { display: flex; align-items: center; gap: 14px; }
.contact-person .avatar { width: 54px; height: 54px; font-size: 17px; flex: none; }
.contact-person strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--c-text-strong); font-size: 1.1rem; }
.contact-person .role { font-size: 13.5px; color: var(--c-primary); font-weight: 600; }
.contact-person-mail { display: inline-block; margin-top: 16px; font-size: 14px; color: #4C4860; word-break: break-all; }
.contact-person-mail:hover { color: var(--c-primary); }
.team-socials { margin-top: 16px; padding-top: 16px; border-top: 1px solid #EEF1F5; }
.team-socials-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.team-socials-pills a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary-soft); border: 1px solid #E2D8F1; color: var(--c-primary);
  border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight: 600;
}
.team-socials-pills a:hover { background: #E7DCF5; }

/* Artikel */
.article-wrap { max-width: 760px; margin: 0 auto; padding: clamp(26px, 4vw, 48px) var(--pad-x) clamp(56px, 8vw, 96px); }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: #837E92; margin-bottom: 16px; }
.article-meta .cat { color: var(--c-primary); background: var(--c-primary-soft); border-radius: 999px; padding: 4px 12px; }
.article-wrap h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.12; letter-spacing: -.025em;
  color: var(--c-text-strong); margin-bottom: 16px;
}
.article-author { margin-bottom: 28px; color: #6B7688; font-size: 14.5px; }
.article-author strong { color: var(--c-primary); font-weight: 600; }
.article-media { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: var(--c-img-bg); margin-bottom: 32px; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-body p { font-size: 1.1rem; line-height: 1.8; color: #3E4658; margin-bottom: 20px; }
.article-more { margin-top: 38px; padding-top: 30px; border-top: 1px solid #E7E3F0; }
.article-more-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-text-strong); margin-bottom: 18px; }
.article-more-list { display: flex; flex-direction: column; gap: 12px; }
.article-more-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left;
  background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 15px 18px; color: inherit;
}
.article-more-list a:hover { border-color: var(--c-primary-border); }
.article-more-list .meta { display: block; font-size: 12px; font-weight: 600; color: var(--c-primary); margin-bottom: 3px; }
.article-more-list .title { font-family: var(--font-display); font-weight: 700; color: var(--c-text-strong); font-size: 1rem; }
.article-more-list .arrow { color: var(--c-primary); font-weight: 700; flex: none; }

/* Kalender */
.cal-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 32px; }
.cal-filter {
  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1.5px solid #E5EAF1; background: #fff; color: #4C4860;
}
.cal-filter:hover { border-color: var(--c-primary); color: var(--c-primary); }
.cal-filter.active { border-color: var(--c-primary); background: var(--c-primary); color: #fff; }
.cal-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 32px); align-items: start; }
.cal-card { background: #fff; border: 1px solid var(--c-border); border-radius: 20px; padding: clamp(18px, 2.5vw, 26px); }
.cal-month-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-text-strong); margin-bottom: 16px; }
.cal-week, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-week { margin-bottom: 8px; }
.cal-week div { text-align: center; font-size: 11px; font-weight: 700; color: #A99FB6; }
.cal-day {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--c-primary);
}
.cal-day.has-event { background: var(--c-primary-soft); }
.cal-day .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-primary); visibility: hidden; }
.cal-day.has-event .dot { visibility: visible; }
.cal-legend { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #837E92; }
.cal-legend .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-primary); display: inline-block; }
.cal-list { display: flex; flex-direction: column; gap: 28px; }
.cal-list-month { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--c-primary); margin-bottom: 14px; }
.cal-list .event-card { padding: 14px 16px; border-radius: 16px; }
.cal-list .event-date { width: 56px; height: 64px; border-radius: 12px; }
.cal-list .event-date .day { font-size: 22px; }
.cal-empty { background: #fff; border: 1px dashed var(--c-border-strong); border-radius: 16px; padding: 26px; text-align: center; color: #837E92; font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Mitglied werden (mehrstufiges Formular)
   -------------------------------------------------------------------------- */
.wizard { max-width: 640px; margin: 0 auto; background: #fff; border-radius: 24px; border: 1px solid var(--c-border); box-shadow: 0 30px 70px -40px rgba(15, 30, 51, .35); overflow: hidden; }
.wizard-head { padding: 26px clamp(20px, 4vw, 30px) 0; }
.wizard-title { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--c-primary); }
.wizard-sub { font-size: 13.5px; color: #5A6675; margin-top: 2px; }
.wizard-bar { margin-top: 18px; height: 6px; border-radius: 999px; background: #EEF1F5; overflow: hidden; }
.wizard-bar-fill { height: 100%; border-radius: 999px; background: var(--c-primary); width: 0; transition: width .3s ease; }
.wizard-steps-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11.5px; font-weight: 600; color: var(--c-muted); padding-bottom: 18px; }
.wizard-body { padding: 6px clamp(20px, 4vw, 30px) 0; }
.wizard-step h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--c-primary); margin-bottom: 4px; }
.wizard-step .step-sub { font-size: 13.5px; color: #5A6675; margin-bottom: 16px; }
.js .wizard-step[hidden] { display: none; }
.no-js .wizard-step { margin-bottom: 28px; }
.no-js .wizard-step[hidden] { display: block; } /* Fallback: ohne JS alle Schritte zeigen */
.no-js .wizard-bar, .no-js .wizard-steps-labels { display: none; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice-label {
  display: block; text-align: center; padding: 14px 10px; border-radius: 14px;
  font: 600 13.5px/1.25 var(--font-body); color: var(--c-primary);
  border: 1.5px solid #E5EAF1; background: #fff; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.choice input:checked + .choice-label { border-color: var(--c-primary); background: var(--c-primary-soft); }
.choice input:focus-visible + .choice-label { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.type-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.type-list .choice-label { display: flex; justify-content: space-between; align-items: center; gap: 10px; text-align: left; padding: 15px 16px; font-weight: 600; }
.type-list .fee { font-weight: 700; color: var(--c-primary); }
.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.summary-box { background: #F7F9FB; border: 1px solid var(--c-border); border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.summary-box .row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.summary-box .row span:first-child { color: #5A6675; }
.summary-box .row span:last-child { font-weight: 600; color: var(--c-primary); text-align: right; }
.summary-box .row.total { border-top: 1px solid var(--c-border); padding-top: 14px; }
.summary-box .row.total span:last-child { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: 13.5px; color: #5E6A78; cursor: pointer; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--c-primary); flex: none; }
.wizard-foot { padding: 18px clamp(20px, 4vw, 30px) 22px; margin-top: 22px; border-top: 1px solid #EEF1F5; display: flex; gap: 12px; }
.wizard-foot .btn { flex: 1; }
.wizard-foot .btn-back { flex: none; }
.wizard-success { text-align: center; padding: 40px clamp(20px, 4vw, 30px) 46px; }
.wizard-success .check-circle {
  width: 68px; height: 68px; border-radius: 50%; background: var(--c-primary-soft); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 18px;
}
.wizard-success h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--c-primary); }
.wizard-success p { margin-top: 10px; font-size: 14.5px; color: #5E6A78; max-width: 38ch; margin-left: auto; margin-right: auto; }

/* Beitragstabelle */
.fee-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--c-border); border-radius: 20px; }
.fee-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.fee-table th, .fee-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--c-border); }
.fee-table th { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); background: #F7F9FB; }
.fee-table td:nth-child(2), .fee-table td:nth-child(3), .fee-table th:nth-child(2), .fee-table th:nth-child(3) { text-align: right; white-space: nowrap; }
.fee-table td:nth-child(3) { font-weight: 700; color: var(--c-primary); }
.fee-table tbody tr:last-child td { border-bottom: none; }

/* Downloads / Formulare */
.dl-group { margin-bottom: clamp(26px, 4vw, 38px); }
.dl-group-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--c-text-strong); margin-bottom: 14px; }
.dl-list { display: flex; flex-direction: column; gap: 10px; }
.dl-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--c-border); border-radius: 16px; padding: 16px 18px;
  color: inherit; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.dl-card:hover { border-color: var(--c-primary-border); box-shadow: 0 16px 34px -22px rgba(49, 23, 95, .4); transform: translateY(-2px); color: inherit; }
.dl-icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--c-primary-soft); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
}
.dl-info { min-width: 0; flex: 1; }
.dl-info strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--c-text-strong); font-size: 1.02rem; }
.dl-desc { display: block; margin-top: 3px; font-size: 13.5px; color: #5E6A78; }
.dl-meta { flex: none; font-size: 12.5px; font-weight: 700; color: var(--c-primary); background: var(--c-primary-soft); border-radius: 999px; padding: 5px 11px; white-space: nowrap; }

/* Chronik-Zeitleiste (Geschichte) */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--c-primary), var(--c-primary-soft)); border-radius: 2px; }
.timeline-item { position: relative; padding-bottom: clamp(24px, 4vw, 36px); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker { position: absolute; left: -30px; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 4px solid var(--c-primary); }
.timeline-year { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--c-primary); }
.timeline-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--c-text-strong); margin-top: 4px; }
.timeline-body p { margin-top: 8px; font-size: 15px; line-height: 1.7; color: #4C4860; }
.timeline-details { margin-top: 12px; background: #fff; border: 1px solid var(--c-border); border-radius: 14px; padding: 12px 16px; }
.timeline-details summary { cursor: pointer; font-weight: 600; font-size: 14px; color: var(--c-primary); }
.timeline-details ol { margin: 12px 0 4px; padding-left: 22px; font-size: 14px; color: #4C4860; columns: 2; column-gap: 32px; list-style: decimal; }
.timeline-details li { margin-bottom: 4px; break-inside: avoid; }
@media (max-width: 560px) { .timeline-details ol { columns: 1; } }

/* Festschrift */
.festschrift-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 44px); align-items: start; }
.festschrift-figure { margin: 0; max-width: 340px; justify-self: center; }
.festschrift-figure img { border-radius: 16px; box-shadow: 0 24px 54px -28px rgba(49, 23, 95, .5); width: 100%; height: auto; }
.festschrift-figure figcaption { margin-top: 10px; font-size: 13px; color: var(--c-muted); text-align: center; }

/* Vorsitzenden-Ehrentafel */
.chairmen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 3vw, 24px); align-items: start; }
.chairmen-list li { display: flex; gap: 16px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--c-border); font-size: 15px; color: var(--c-text-strong); }
.chairmen-list li:last-child { border-bottom: none; }
.chairmen-list .year { flex: none; width: 52px; font-family: var(--font-display); font-weight: 800; color: var(--c-primary); font-size: 14.5px; }

/* Hall of Fame */
.hof-nav { position: sticky; top: 72px; z-index: 40; background: rgba(246, 248, 251, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--c-border); }
.hof-nav .container { display: flex; gap: 8px; overflow-x: auto; padding-top: 10px; padding-bottom: 10px; scrollbar-width: none; }
.hof-nav .container::-webkit-scrollbar { display: none; }
.hof-nav a { flex: none; font-size: 13.5px; font-weight: 600; color: #4C4860; background: #fff; border: 1.5px solid #E5EAF1; border-radius: 999px; padding: 8px 14px; white-space: nowrap; }
.hof-nav a:hover { border-color: var(--c-primary); color: var(--c-primary); }
.hof-subhead { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-text-strong); margin-top: clamp(24px, 4vw, 34px); }
.hof-table td:nth-child(2) { font-weight: 600; color: var(--c-text-strong); }
.hof-table td:nth-child(1) { color: var(--c-muted); }
.hof-table td, .hof-table th { text-align: right; }
.hof-table td:nth-child(2), .hof-table th:nth-child(2) { text-align: left; }
.hof-more { margin-top: 12px; }
.hof-more summary { cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--c-primary); padding: 10px 0; }
.vm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 20px; }
.vm-card { background: #fff; border: 1px solid var(--c-border); border-radius: 18px; padding: 18px 20px; }
.vm-card-empty { background: transparent; border-style: dashed; }
.vm-year { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--c-primary); }
.vm-status { margin-top: 8px; font-size: 13.5px; color: var(--c-muted); }
.vm-titles { margin-top: 10px; display: flex; flex-direction: column; gap: 7px; }
.vm-titles li { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--c-text-strong); }
.vm-class { flex: none; min-width: 46px; font-size: 11.5px; font-weight: 700; color: var(--c-primary); background: var(--c-primary-soft); border-radius: 999px; padding: 3px 9px; text-align: center; }
.hof-record-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(14px, 2vw, 20px); }
.hof-record { padding: 12px 0; border-bottom: 1px solid var(--c-border); }
.hof-record:last-child { border-bottom: none; padding-bottom: 0; }
.hof-record-title { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--c-muted); }
.hof-record-entry { margin-top: 5px; font-size: 14.5px; font-weight: 600; color: var(--c-text-strong); }
.hof-record-players { margin-top: 4px; font-size: 13px; color: #5E5A6E; }

/* Rechtstexte */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: clamp(26px, 4vw, 48px) var(--pad-x) clamp(56px, 8vw, 96px); }
.legal-wrap h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.4vw, 2.8rem); color: var(--c-text-strong); margin-bottom: 24px; letter-spacing: -.02em; }
.legal-wrap h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--c-text-strong); margin: 30px 0 10px; }
.legal-wrap p { margin-bottom: 14px; }
