/* =========================================================================
   KF Rrafshi Dukagjinit - Design-Preview
   Palette aus dem Wappen: Rot fuehrt, Schwarz traegt, Gold sparsam.
   Radien-Regel: 4px klein (Tags/Inputs) - 10px Karten/Buttons - 16px Medien.
   ========================================================================= */

@import url("../fonts/fonts.css");

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Grundflaechen - Off-Black, warm getoent (nie #000) */
  --ink:        #0c0a0a;
  --ink-2:      #121010;
  --surface:    #191514;
  --surface-2:  #221c1b;

  /* Vereinsrot in Abstufungen */
  --red-900:    #3f090e;
  --red-800:    #6b0e15;
  --red-700:    #93121b;
  --red:        #c1121f;
  --red-400:    #e0313d;
  --red-200:    #f0a2a7;

  /* Gold - nur als Auszeichnung, nie flaechig */
  --gold:       #c9a227;
  --gold-dim:   rgba(201, 162, 39, .38);

  /* Text */
  --paper:      #f4f1ed;
  --text:       #d9d2cd;
  --muted:      #9b918c;
  --muted-2:    #7d7370;

  /* Linien */
  --line:       rgba(244, 241, 237, .11);
  --line-soft:  rgba(244, 241, 237, .06);

  /* Form */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;

  /* Tiefe - weich und mehrschichtig, nie harte Offsets */
  --sh-1: 0 1px 2px rgba(0, 0, 0, .40), 0 8px 26px rgba(0, 0, 0, .30);
  --sh-2: 0 2px 6px rgba(0, 0, 0, .45), 0 20px 52px rgba(0, 0, 0, .42);
  --sh-red: 0 2px 4px rgba(0, 0, 0, .35), 0 12px 30px rgba(193, 18, 31, .26);

  /* Rhythmus */
  --pad-sec: clamp(56px, 8vw, 104px);
  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--paper);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.015em;
  text-wrap: balance;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -.01em; }

p { margin: 0 0 1.1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--red-200); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--paper); }

::selection { background: var(--red); color: #fff; }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 18px;
  border-radius: var(--r-md); font-weight: 600; text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip:focus { top: 12px; color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* overflow: clip haelt das Wappen-Wasserzeichen im Rahmen, ohne einen
   Scroll-Container zu erzeugen (hidden ist der Fallback fuer Aeltere). */
.sec { padding-block: var(--pad-sec); position: relative; overflow: hidden; overflow: clip; }
.sec--tint { background: var(--ink-2); }
.sec--edge { border-top: 1px solid var(--line-soft); }

/* Kleines Label ueber Sektionstiteln - sparsam eingesetzt */
.eyebrow {
  font-family: "Archivo Narrow", "Archivo", sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: ""; flex: 1; height: 1px; max-width: 90px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text);
  max-width: 56ch;
}

.dim { color: var(--muted); }
.small { font-size: .93rem; }

/* --------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .8rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--sh-red);
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .22s var(--ease), border-color .18s var(--ease);
}
.btn:hover { background: var(--red-400); color: #fff; transform: translateY(-2px); }
.btn:active { transform: scale(.98); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  border-color: rgba(244, 241, 237, .28);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(244, 241, 237, .08);
  border-color: rgba(244, 241, 237, .5);
  color: var(--paper);
}

.btn--sm { min-height: 44px; padding: .6rem 1.1rem; font-size: .94rem; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-top: 1.9rem;
}

/* Textlink mit Pfeil */
.arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px;
  color: var(--paper);
  font-weight: 600;
  text-decoration: none;
}
.arrow span:last-child { transition: transform .2s var(--ease); color: var(--red-400); }
.arrow:hover span:last-child { transform: translateX(4px); }
.arrow:hover { color: var(--paper); }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 10, 10, .72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(12, 10, 10, .94);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0, 0, 0, .45);
}

.hbar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
  transition: min-height .25s var(--ease);
}
.site-header.scrolled .hbar { min-height: 62px; }

.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--paper);
  margin-right: auto;
  min-height: 44px;
}
.brand img {
  height: 42px; width: auto;
  transition: height .25s var(--ease);
}
.site-header.scrolled .brand img { height: 34px; }
.brand-txt {
  display: flex; flex-direction: column; line-height: 1.05;
}
/* Auf schmalen Handys traegt das Wappen allein - der lange Vereinsname
   wuerde sonst umbrechen und den Header aufblaehen. */
@media (max-width: 540px) { .brand-txt { display: none; } }
.brand-txt b {
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em; color: var(--paper);
}
.brand-txt span {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2);
}

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 .8rem;
  color: var(--text); text-decoration: none;
  font-size: .95rem; font-weight: 500;
  border-radius: var(--r-sm);
  position: relative;
  transition: color .18s var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav a::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: 12px;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--paper); font-weight: 600; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Sprachwechsler */
.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; margin-left: .4rem;
}
.lang a, .lang span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 .35rem;
  font-family: "Archivo Narrow", sans-serif;
  font-size: .84rem; font-weight: 600; letter-spacing: .08em;
  text-decoration: none; color: var(--muted);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.lang a:hover { background: rgba(244, 241, 237, .07); color: var(--paper); }
.lang [aria-current="true"] { background: var(--red); color: #fff; }

.nav-cta { margin-left: .5rem; }

.burger {
  display: none;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
  transition: background-color .18s var(--ease), transform .15s var(--ease);
}
.burger:active { transform: scale(.95); }
.burger:hover { background: rgba(244, 241, 237, .07); }
.burger i {
  position: relative; display: block; width: 20px; height: 2px;
  background: var(--paper); border-radius: 2px;
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.burger i::before, .burger i::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--paper); border-radius: 2px;
  transition: transform .25s var(--ease);
}
.burger i::before { transform: translateY(-6px); }
.burger i::after  { transform: translateY(6px); }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { transform: rotate(45deg); }
.burger[aria-expanded="true"] i::after  { transform: rotate(-45deg); }

/* Mobiles Menue — absolut unter dem sticky Header, damit es geschlossen
   KEINE Layout-Hoehe belegt (opacity:0 allein liess ~400px Leerraum im Fluss
   zwischen Header und Hero — der "schwarze Loch"-Bug). */
.mnav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  z-index: 99;
  max-height: calc(100dvh - var(--header-h, 80px));
  overflow-y: auto;
  border-top: 1px solid var(--line-soft);
  background: rgba(12, 10, 10, .98);
  opacity: 0; transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.mnav.open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.mnav ul { list-style: none; margin: 0; padding: .5rem 0 1.1rem; }
.mnav a {
  display: flex; align-items: center;
  min-height: 52px; padding: 0 var(--gut);
  color: var(--text); text-decoration: none; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.mnav a[aria-current="page"] {
  color: var(--paper); font-weight: 600;
  box-shadow: inset 3px 0 0 var(--red);
}
.mnav .mnav-cta { padding: 1.1rem var(--gut) 0; }
.mnav .mnav-cta .btn { width: 100%; }

@media (max-width: 940px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .mnav { display: block; }
}

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative;
  min-height: clamp(33rem, 84svh, 48rem);
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background: var(--ink-2);
}
.hero-media img, .hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}
/* Das Video legt sich weich ueber das Standbild, sobald es laeuft */
.hero-media video { opacity: 0; transition: opacity .9s var(--ease); }
.hero-media video.is-playing { opacity: 1; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,10,.86) 0%, rgba(12,10,10,.30) 34%, rgba(12,10,10,.72) 72%, var(--ink) 100%),
    linear-gradient(96deg, rgba(63,9,14,.55) 0%, rgba(12,10,10,.10) 58%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}
.hero h1 { max-width: 16ch; margin-bottom: .7rem; }
.hero .lead { max-width: 46ch; color: #e6e0db; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: "Archivo Narrow", sans-serif;
  font-size: .84rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(193, 18, 31, .85);
  border-radius: var(--r-sm);
  padding: .4rem .75rem;
  margin-bottom: 1.4rem;
}

/* Kopfband der Unterseiten */
.phead {
  position: relative;
  padding-block: clamp(2.4rem, 6.5vw, 5.2rem) clamp(2rem, 5vw, 3.6rem);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: linear-gradient(180deg, var(--red-900) -40%, var(--ink) 72%);
}
.phead-media {
  position: absolute; inset: 0; z-index: 0;
}
.phead-media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.phead-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,10,10,.72) 0%, rgba(12,10,10,.55) 40%, var(--ink) 100%);
}
.phead .wrap { position: relative; z-index: 1; }
.phead h1 { margin-bottom: .55rem; }
.phead .lead { color: #e2dcd7; }

/* Wappen als Wasserzeichen - das Signature-Element */
.crest-mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  width: min(62vw, 560px);
  opacity: .042;
  filter: grayscale(1) brightness(2.4) contrast(.55);
  right: -8%;
  top: 50%;
  translate: 0 -50%;
}
.sec > .wrap { position: relative; z-index: 1; }

/* ----------------------------------------------------------------- Grids */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .split--wide-media { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .split--flip > *:first-child { order: 2; }
}

.figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh-2);
}
.figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.figure--43 { aspect-ratio: 4 / 3; }
.figure--32 { aspect-ratio: 3 / 2; }
.figure--169 { aspect-ratio: 16 / 9; }
.figure::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(244, 241, 237, .09);
  border-radius: inherit;
  pointer-events: none;
}
a.figure:hover img, .zoomable:hover img { transform: scale(1.035); }

.figcap {
  margin-top: .7rem;
  font-size: .84rem;
  color: var(--muted-2);
}

/* ----------------------------------------------------------------- Karten */
.card {
  display: block;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--sh-1);
  transition: transform .2s var(--ease), border-color .2s var(--ease),
              background-color .2s var(--ease), box-shadow .25s var(--ease);
}
a.card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 18, 31, .55);
  background: var(--surface-2);
  box-shadow: var(--sh-2);
  color: var(--text);
}
a.card:active { transform: scale(.99); }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: .97rem; color: var(--muted); margin-bottom: 0; }
.card .arrow { margin-top: 1rem; }

/* Teaser-Bento: genau so viele Zellen wie Inhalte, bewusst ungleich gross */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.9rem, 1.8vw, 1.3rem);
}
@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .bento > .b-3 { grid-column: span 3; }
  .bento > .b-2 { grid-column: span 2; }
  .bento > .b-5 { grid-column: span 5; }
}

.card--media { padding: 0; overflow: hidden; }
.card--media .card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card--media .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card--media:hover .card-img img { transform: scale(1.04); }
.card--media .card-body { padding: clamp(1.2rem, 2.2vw, 1.6rem); }
.b-2 .card-img { aspect-ratio: 4 / 3; }

/* Die breite Zelle laeuft waagrecht: Bild links, Text rechts */
@media (min-width: 900px) {
  .card--row { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); align-items: stretch; }
  .card--row .card-img { aspect-ratio: auto; height: 100%; min-height: 210px; }
  .card--row .card-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 3vw, 2.4rem); }
}

/* Wappen als Schaustueck (Verein-Seite) */
.crest-show {
  display: grid; place-items: center;
  padding: clamp(1.8rem, 4.5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse at 50% 34%, rgba(107, 14, 21, .45), transparent 64%),
    var(--surface);
  box-shadow: var(--sh-2);
}
.crest-show img { width: min(56vw, 236px); height: auto; }

/* Begriffs-Kacheln */
.defs { display: grid; grid-template-columns: 1fr; gap: clamp(.9rem, 1.8vw, 1.2rem); }
@media (min-width: 720px) { .defs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.def {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  box-shadow: var(--sh-1);
}
.def h3 { margin-bottom: .35rem; font-size: 1.06rem; }
.def p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ------------------------------------------------- Platzhalter & Hinweise */
/* Platzhalter hugt seinen Inhalt, damit er wie eine Notiz wirkt und nicht
   wie ein leeres Eingabefeld. */
.slot {
  display: inline-block;
  max-width: 100%;
  border: 1px dashed rgba(244, 241, 237, .22);
  border-radius: var(--r-sm);
  background: rgba(244, 241, 237, .025);
  color: var(--muted-2);
  padding: .55rem .8rem;
  font-family: "Archivo Narrow", sans-serif;
  font-size: .92rem;
  letter-spacing: .02em;
}
.slot--lg { padding: .9rem 1rem; font-size: 1rem; }

.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .55rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  background: rgba(201, 162, 39, .07);
  font-family: "Archivo Narrow", sans-serif;
  font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  white-space: nowrap;
}
.tag--red { border-color: rgba(224, 49, 61, .45); color: var(--red-200); background: rgba(193, 18, 31, .12); }

.notice {
  display: flex; gap: .9rem; align-items: flex-start;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  background: rgba(201, 162, 39, .05);
  padding: 1rem 1.1rem;
  color: var(--text);
  font-size: .96rem;
}
.notice p { margin: 0; max-width: 70ch; }
.notice strong { color: var(--paper); }

/* --------------------------------------------------- Naechstes Spiel */
.match {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(107, 14, 21, .30) 0%, rgba(25, 21, 20, 0) 62%),
    var(--surface);
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.match-top {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem;
  padding: 1rem clamp(1.1rem, 2.6vw, 1.9rem);
  border-bottom: 1px solid var(--line-soft);
}
.match-top h2 {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-family: "Archivo Narrow", sans-serif;
  letter-spacing: .15em; text-transform: uppercase;
  margin: 0; margin-right: auto; color: var(--paper);
}
.match-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.4rem, 3.2vw, 2.2rem) clamp(1.1rem, 2.6vw, 1.9rem);
  align-items: center;
}
@media (min-width: 800px) {
  .match-body { grid-template-columns: minmax(0, 200px) minmax(0, 1fr); }
}
.match-date {
  font-family: "Archivo Narrow", sans-serif;
  border-right: 0; border-bottom: 1px solid var(--line-soft);
  padding-bottom: 1.1rem;
}
@media (min-width: 800px) {
  .match-date { border-right: 1px solid var(--line-soft); border-bottom: 0; padding-bottom: 0; padding-right: 1.6rem; }
}
.match-date b {
  display: block;
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700; line-height: 1; color: var(--muted);
  letter-spacing: .06em;
}
.match-date span { display: block; margin-top: .4rem; color: var(--muted-2); font-size: .95rem; }

.match-teams {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}
@media (min-width: 560px) {
  .match-teams { flex-direction: row; align-items: center; gap: clamp(.8rem, 2vw, 1.3rem); flex-wrap: wrap; }
}
.match-team {
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  line-height: 1.2;
  color: var(--paper);
}
.match-team.is-slot { color: var(--muted-2); font-weight: 500; }
.match-vs {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-400);
  border: 1px solid rgba(224, 49, 61, .35);
  border-radius: 100px;
  padding: .3rem .7rem;
}
.match-foot {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  padding: 1rem clamp(1.1rem, 2.6vw, 1.9rem);
  border-top: 1px solid var(--line-soft);
  background: rgba(12, 10, 10, .35);
  font-family: "Archivo Narrow", sans-serif;
  font-size: .94rem; color: var(--muted);
}
.match-foot b { color: var(--text); font-weight: 600; }

/* ---------------------------------------------------------- Listen/Tabellen */
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); }
table.data {
  width: 100%; min-width: 540px;
  border-collapse: collapse;
  font-family: "Archivo Narrow", sans-serif;
  font-size: .98rem;
  background: var(--surface);
}
table.data caption {
  text-align: left; padding: 0 0 .8rem; color: var(--muted); font-size: .93rem;
  font-family: "Archivo", sans-serif;
}
table.data th, table.data td {
  padding: .85rem 1rem; text-align: left; vertical-align: middle;
}
table.data thead th {
  font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  background: rgba(12, 10, 10, .45);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.data tbody tr + tr { border-top: 1px solid var(--line-soft); }
table.data tbody td { color: var(--muted-2); }
table.data tbody td.is-team { color: var(--text); font-weight: 600; }
table.data tbody tr:hover { background: rgba(244, 241, 237, .022); }

/* Spielliste */
.fixtures { display: grid; gap: .7rem; }
.fixture {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 1rem clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: var(--sh-1);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.fixture:hover { border-color: rgba(193, 18, 31, .4); background: var(--surface-2); }
@media (min-width: 800px) {
  .fixture { grid-template-columns: minmax(0, 140px) minmax(0, 1fr) auto; gap: 1.6rem; }
}
.fixture-date { font-family: "Archivo Narrow", sans-serif; }
.fixture-date b { display: block; font-size: 1.5rem; font-weight: 700; color: var(--muted-2); letter-spacing: .04em; line-height: 1.1; }
.fixture-date span { font-size: .88rem; color: var(--muted); }
.fixture-teams {
  display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
}
@media (min-width: 560px) {
  .fixture-teams { flex-direction: row; align-items: center; gap: .8rem; flex-wrap: wrap; }
}
.fixture-team { font-weight: 700; color: var(--paper); font-size: 1rem; line-height: 1.25; }
.fixture-team.is-slot { color: var(--muted-2); font-weight: 500; }
.fixture-vs {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-400);
  white-space: nowrap;
}
.fixture-meta { justify-self: start; }
@media (min-width: 800px) { .fixture-meta { justify-self: end; } }

/* Tabellenstand */
.standings { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; counter-reset: none; }
.standing {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem; align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: rgba(244, 241, 237, .022);
  padding: .8rem 1rem;
}
.standing-rank {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: rgba(12, 10, 10, .6);
  border: 1px solid var(--line);
  font-family: "Archivo Narrow", sans-serif; font-weight: 700; color: var(--muted);
}
.standing-team { color: var(--muted-2); }
.standing-pts {
  font-family: "Archivo Narrow", sans-serif; color: var(--muted-2);
  letter-spacing: .06em; white-space: nowrap;
}

/* Kader */
/* Flex statt Raster: Positionsgruppen mit 2 Slots lassen sonst halbe
   Rasterzeilen leer stehen und wirken kaputt. */
.squad {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  max-width: 980px;
}
.player {
  flex: 1 1 200px;
  display: flex; align-items: center; gap: .8rem;
  border: 1px dashed rgba(244, 241, 237, .18);
  border-radius: var(--r-md);
  background: rgba(244, 241, 237, .022);
  padding: .8rem .9rem;
  min-height: 66px;
}
/* Auf dem Handy laufen die Slots voll durch, ab Tablet werden sie begrenzt,
   damit zwei Torhueter nicht die halbe Zeile auseinanderziehen. */
@media (min-width: 560px) { .player { max-width: 300px; } }
.player-no {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: "Archivo Narrow", sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--muted-2);
}
.player-txt b { display: block; color: var(--muted-2); font-weight: 500; font-size: .97rem; }
.player-txt span {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted-2);
  opacity: .75;
}

.grouptitle {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line-soft);
}

/* Angaben, die der Verein nachliefert */
.facts { margin: 0; display: grid; gap: .6rem; }
.facts > div { display: grid; grid-template-columns: 1fr; gap: .3rem; }
@media (min-width: 520px) {
  .facts > div { grid-template-columns: minmax(0, 150px) minmax(0, 1fr); align-items: center; gap: 1rem; }
}
.facts dt {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.facts dd { margin: 0; }
/* Der Platzhalter soll wie eine Notiz aussehen, nicht wie ein leeres Eingabefeld */
.facts dd.slot { width: fit-content; max-width: 100%; }

/* Sponsoren-Stufen */
.tiers { display: grid; grid-template-columns: 1fr; gap: clamp(.9rem, 1.8vw, 1.2rem); }
@media (min-width: 720px) {
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Erste und letzte Stufe laufen voll durch - kein leeres Rasterfeld. */
  .tiers > :last-child { grid-column: 1 / -1; }
}
.tier {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  box-shadow: var(--sh-1);
  display: flex; flex-direction: column; gap: .6rem;
}
.tier--lead {
  border-color: rgba(224, 49, 61, .4);
  background: linear-gradient(180deg, rgba(107, 14, 21, .26), rgba(25, 21, 20, 0) 60%), var(--surface);
}
@media (min-width: 720px) { .tier--lead { grid-column: 1 / -1; } }
.tier > .tag { align-self: flex-start; }
.tier h3 { margin: 0; }
.tier p { margin: 0; color: var(--muted); font-size: .97rem; }
.tier-price {
  margin-top: auto;
  font-family: "Archivo Narrow", sans-serif;
  font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  padding-top: .7rem;
  border-top: 1px solid var(--line-soft);
}

/* Ablauf: senkrechte Schiene statt drei gleicher Karten */
.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.flow-step {
  position: relative;
  padding: 0 0 1.9rem 2.1rem;
  border-left: 1px solid var(--line);
}
.flow-step:last-child { padding-bottom: 0; border-left-color: transparent; }
.flow-step::before {
  content: ""; position: absolute; left: -6px; top: .45rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--ink-2);
}
.flow-step h3 { margin: 0 0 .3rem; font-size: 1.12rem; }
.flow-step p { margin: 0; color: var(--muted); }
@media (min-width: 860px) {
  .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
  .flow-step {
    padding: 1.6rem 1.6rem 0 0;
    border-left: 0; border-top: 1px solid var(--line);
  }
  .flow-step:last-child { padding-right: 0; border-top-color: var(--line); }
  .flow-step::before { left: 0; top: -6px; }
}

/* Werte-/Info-Liste ohne Icon-Grid-Optik */
.rows { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.row {
  display: grid; grid-template-columns: 1fr; gap: .3rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 760px) {
  .row { grid-template-columns: minmax(0, 210px) minmax(0, 1fr); gap: 2rem; align-items: start; }
}
.row h3 { margin: 0; font-size: 1.08rem; }
.row p { margin: 0; color: var(--muted); }

/* Info-Panel neben dem Formular */
.panel {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  box-shadow: var(--sh-1);
}
.panel h2 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: 0; }

/* ------------------------------------------------------------- Formular */
.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .93rem; font-weight: 600; color: var(--paper); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  background: rgba(244, 241, 237, .04);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--paper);
  font: inherit; font-size: 1rem;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red-400);
  background: rgba(244, 241, 237, .06);
}
.field .hint { font-size: .85rem; color: var(--muted-2); }
/* Textlinks bekommen eine eigene Zeile mit 44px Trefferflaeche, statt als
   winziger Inline-Link im Fliesstext zu haengen. */
.inline-link {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--red-200); font-weight: 600;
}
.inline-link:hover { color: var(--paper); }
@media (min-width: 660px) { .form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; } }

/* ------------------------------------------------------------ Rechtstexte */
.legal { max-width: 760px; }
.legal h2 {
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  margin: 2.6rem 0 .7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.legal > .notice + h2 { margin-top: 2rem; }
.legal ul { padding-left: 1.15rem; margin: 0 0 1.1em; color: var(--text); }
.legal li { margin-bottom: .45rem; max-width: 62ch; }
.legal address { font-style: normal; line-height: 1.9; }
.legal .slot { display: inline-block; padding: .15rem .5rem; }

/* ------------------------------------------------------------- CTA-Band */
.band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.band-media { position: absolute; inset: 0; z-index: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(92deg, rgba(12,10,10,.95) 12%, rgba(63,9,14,.78) 58%, rgba(12,10,10,.72) 100%);
}
.band .wrap { position: relative; z-index: 1; padding-block: clamp(3rem, 6.5vw, 5rem); }
.band h2 { max-width: 20ch; }
.band p { color: #e2dcd7; }

/* --------------------------------------------------------------- Footer */
.site-footer {
  background: #0a0808;
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem;
  font-size: .95rem;
}
.fgrid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 760px) { .fgrid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 2.4rem; } }
.fbrand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.fbrand img { height: 54px; width: auto; }
.fbrand b { display: block; color: var(--paper); font-size: 1rem; }
.fbrand span { font-family: "Archivo Narrow", sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.site-footer h4 {
  font-family: "Archivo Narrow", sans-serif;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .6rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li a, .site-footer .fline a {
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--text); text-decoration: none;
}
.site-footer li a:hover, .site-footer .fline a:hover { color: var(--paper); text-decoration: underline; }
.site-footer p { color: var(--muted); }
.fbottom {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: center;
  padding-top: 1.4rem;
  color: var(--muted-2); font-size: .88rem;
}
.fbottom .fline { display: flex; flex-wrap: wrap; gap: .2rem 1.2rem; margin-left: auto; }

/* --------------------------------------------------------------- Motion */
[data-reveal], [data-reveal-group] > * { will-change: opacity, transform; }

/* Signature-Motion: das Wappen-Wasserzeichen driftet beim Scrollen.
   Scroll-getrieben per CSS - kein Scroll-Listener, kein Ruckeln.
   Wo die Technik fehlt, steht das Wappen einfach still. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .crest-mark {
      animation: crest-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes crest-drift {
      from { transform: translateY(7%)  scale(1.02); }
      to   { transform: translateY(-7%) scale(1.02); }
    }
  }
}

@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-reveal], [data-reveal-group] > * {
    opacity: 1 !important; transform: none !important;
  }
}

/* --------------------------------------------------------------- Utility */
.stack > * + * { margin-top: 1.1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.center-narrow { max-width: 720px; }
.vh {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
