/* ============================================================
   MILLA TONAZZI — Website
   Design-System / gemeinsames Stylesheet
   Konzept: "Hundertstel entscheiden." Sprint = Präzision + Zeit.
   Bildsprache: Bahnmarkierungen (Lane-Lines), Mess-/Timing-Ästhetik.
   ============================================================ */

/* ---------- Schriften (lokal gehostet, keine Google-Fonts-Verbindung) ----------
   Variable Fonts für Archivo & Hanken Grotesk (ein File deckt alle Gewichte ab),
   IBM Plex Mono als Einzelschnitte. Dateien liegen im Ordner /fonts. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/archivo-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/hanken-grotesk-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben */
  --ink:        #0D0E12;   /* Tiefes, leicht kühles Schwarz */
  --ink-soft:   #16171D;   /* Erhöhte dunkle Fläche */
  --paper:      #F3F1EC;   /* Warmes Off-White, harmoniert mit den Fotos */
  --paper-pure: #FCFAF5;   /* Karten / Kacheln */
  --line-lt:    #E7E2D8;   /* Haarlinie auf Paper (warm) */
  --line-dk:    #26272E;   /* Haarlinie auf Ink */
  --muted-lt:   #666971;   /* Sekundärtext auf Paper */
  --muted-dk:   #9598A2;   /* Sekundärtext auf Ink */
  --accent:     #1F38F5;   /* Startlinien-Blau, elektrisch */
  --accent-dk:  #1A2FCF;   /* Hover */
  --accent-lt:  #8391FF;   /* Akzent auf dunklem Grund */

  /* Semantisch (werden pro Band umgeschaltet) */
  --c-bg:     var(--paper);
  --c-text:   var(--ink);
  --c-muted:  var(--muted-lt);
  --c-line:   var(--line-lt);
  --c-accent: var(--accent);

  /* Typografie */
  --f-display: "Archivo", system-ui, -apple-system, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Layout */
  --maxw:   1320px;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.16rem);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }

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

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

/* ---------- Band-Themes ---------- */
.band { background: var(--c-bg); color: var(--c-text); position: relative; }
.band--paper {
  --c-bg: var(--paper); --c-text: var(--ink);
  --c-muted: var(--muted-lt); --c-line: var(--line-lt); --c-accent: var(--accent);
}
.band--ink {
  --c-bg: var(--ink); --c-text: var(--paper);
  --c-muted: var(--muted-dk); --c-line: var(--line-dk); --c-accent: var(--accent-lt);
}

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

.section { padding-block: clamp(4.5rem, 11vh, 9.5rem); }
.section--tight { padding-block: clamp(3rem, 7vh, 5.5rem); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.94;
  font-size: clamp(2.1rem, 1.2rem + 4vw, 4.4rem);
}

.lede {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.35rem, 1rem + 1.7vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.muted { color: var(--c-muted); }

/* ---------- Lane-Line (Signatur-Element: Bahnmarkierung) ---------- */
.lane {
  height: 2px;
  background: var(--c-accent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.1s var(--ease);
}
.in-view .lane, .lane.in-view { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: var(--pad-y) 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dk); }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-text); }

.btn--onink { background: var(--paper); color: var(--ink); }
.btn--onink:hover { background: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-lt);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5ch;
}
.wordmark .dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.4rem);
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .nav-cta {
  padding: 0.55rem 1.05rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  transition: background 0.25s, color 0.25s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--ink); color: var(--paper); }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; z-index: 110; }
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  /* Hero liegt auf dunklem Foto -> helle Tokens, damit z. B. der
     "Bestzeiten"-Button (btn--ghost) lesbar ist und nicht schwarz auf dunkel steht. */
  --c-text: var(--paper);
  --c-muted: var(--muted-dk);
  --c-line: rgba(241, 242, 236, 0.45);
  --c-accent: var(--accent-lt);
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,14,18,0.35) 0%, rgba(13,14,18,0.15) 40%, rgba(13,14,18,0.9) 100%),
    linear-gradient(90deg, rgba(13,14,18,0.7) 0%, rgba(13,14,18,0) 55%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 7vh, 6rem);
  padding-top: 120px;
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__name {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 1rem + 15vw, 12.5rem);
  line-height: 0.84;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__name span { display: block; }
.hero__lane { width: min(340px, 60%); margin-bottom: 1.8rem; height: 3px; }
.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero__tag {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.5rem);
  line-height: 1.35;
  max-width: 30ch;
  color: #EDEEF2;
}
.hero__tag strong { font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Mini-Scoreboard im Hero */
.hero__board {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dk);
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__stat .n {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.4rem);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.hero__stat .l {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dk);
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vh, 6rem);
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dk);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(var(--accent-lt), transparent);
}

/* ============================================================
   MEDIA-PLATZHALTER (Fotos später einsetzen)
   ============================================================ */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: var(--ink-soft);
  background-image:
    repeating-linear-gradient(115deg,
      rgba(255,255,255,0.028) 0px,
      rgba(255,255,255,0.028) 1px,
      transparent 1px,
      transparent 46px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ph--light {
  background-color: #E7E8E6;
  background-image:
    repeating-linear-gradient(115deg,
      rgba(13,14,18,0.035) 0px,
      rgba(13,14,18,0.035) 1px,
      transparent 1px,
      transparent 46px);
}
.ph__label {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted-dk);
}
.ph--light .ph__label { color: #7C7E82; }
.ph__label svg { width: 30px; height: 30px; opacity: 0.7; }
.ph__label .t {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ph__label .s {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  max-width: 26ch;
}
/* Mess-/Registrier-Ecken (Signatur-Detail) */
.ticks::before, .ticks::after,
.ticks > .tick-tl, .ticks > .tick-br { content: ""; position: absolute; width: 14px; height: 14px; z-index: 3; }
.ticks::before { top: 16px; left: 16px; border-top: 1.5px solid var(--accent-lt); border-left: 1.5px solid var(--accent-lt); }
.ticks::after  { bottom: 16px; right: 16px; border-bottom: 1.5px solid var(--accent-lt); border-right: 1.5px solid var(--accent-lt); }
.ph--light.ticks::before, .ph--light.ticks::after { border-color: var(--accent); }

/* Bild-Wrapper mit Seitenverhältnis */
.media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-soft); }
.media > img { width: 100%; height: 100%; object-fit: cover; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--landscape { aspect-ratio: 16 / 10; }
.media--square { aspect-ratio: 1 / 1; }

/* ============================================================
   ABOUT / STATEMENT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .about-grid .media--portrait { position: sticky; top: 100px; }
}
.about-copy > * + * { margin-top: 1.6rem; }
.about-copy .section-title { margin-bottom: 0.4rem; }
.statement {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.28rem, 1.05rem + 1.1vw, 1.95rem);
  line-height: 1.32;
  letter-spacing: -0.008em;
}
.statement--muted { color: var(--c-muted); font-weight: 400; }
.triad {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.01em;
  padding-top: 0.8rem;
}
.triad em { font-style: normal; color: var(--accent); }

/* Fakten-Zeile */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.4rem;
}
@media (min-width: 620px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { background: var(--c-bg); padding: 1.3rem 1.2rem; }
.fact .k {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}
.fact .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* ============================================================
   BESTZEITEN — Scoreboard (Signatur)
   ============================================================ */
.board-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}
.board-head .ranks {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  text-align: right;
}
.board-head .ranks b { color: var(--c-text); font-weight: 600; }

.board { border-top: 1px solid var(--c-line); }
.board__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "disc time" "meta time";
  align-items: center;
  gap: 0.1rem 1.2rem;
  padding: clamp(1.1rem, 2.6vh, 1.9rem) 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.board__row::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.board__row:hover::before { transform: scaleX(1); }
.board__disc {
  grid-area: disc;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 0.9rem + 1vw, 1.7rem);
  letter-spacing: -0.01em;
}
.board__disc .hall {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  vertical-align: middle;
  color: var(--c-accent);
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 0.15em 0.6em;
  margin-left: 0.6rem;
  font-weight: 500;
}
.board__meta {
  grid-area: meta;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  margin-top: 0.35rem;
}
.board__time {
  grid-area: time;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.1rem + 3vw, 3.4rem);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-align: right;
  line-height: 1;
}
.board__time .u {
  font-size: 0.42em;
  color: var(--c-muted);
  margin-left: 0.35rem;
  letter-spacing: 0.05em;
}

/* Palmarès / Erfolge (Timeline) */
.palmares { margin-top: clamp(3rem, 6vh, 5rem); }
.timeline { border-top: 1px solid var(--c-line); margin-top: 1.8rem; }
.tl-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.4rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.tl-year {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--c-accent);
}
.tl-text {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.28rem);
  line-height: 1.35;
}
.tl-text .tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: inline-block;
  margin-left: 0.5rem;
}

/* ============================================================
   PARTNER / SPONSOREN
   ============================================================ */
.partner-intro {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
@media (min-width: 860px) { .partner-intro { grid-template-columns: 1.1fr 0.9fr; } }

.value-list { display: grid; gap: 1.1rem; }
.value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-top: 1.1rem;
  border-top: 1px solid var(--c-line);
}
.value .vn {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--c-accent);
  letter-spacing: 0.05em;
}
.value p { font-size: 1rem; line-height: 1.5; }
.value b { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; display: block; margin-bottom: 0.15rem; font-size: 1.05rem; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 620px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
.logo-slot {
  background: var(--c-bg);
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  transition: background 0.3s;
  position: relative;
}
.logo-slot:hover { background: var(--paper-pure); }
.band--ink .logo-slot:hover { background: var(--ink-soft); }
.logo-slot .mark {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
}
.logo-slot .mark span { display: block; font-size: 0.58rem; opacity: 0.6; margin-top: 0.3rem; }

.supporters {
  margin-top: 2rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
.supporters b { color: var(--c-text); font-weight: 600; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-cta {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .contact-cta { grid-template-columns: 1.1fr 0.9fr; } }
.contact-cta__title {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 1rem + 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.contact-cta__title em { font-style: normal; color: var(--accent-lt); }

.contact-methods { display: grid; gap: 1.4rem; }
.cmethod {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--c-line);
  transition: padding-left 0.3s var(--ease);
}
.cmethod:last-child { border-bottom: 1px solid var(--c-line); }
.cmethod:hover { padding-left: 0.6rem; }
.cmethod .lbl {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.cmethod .val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 0.9rem + 0.9vw, 1.5rem);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.cmethod .arrow { color: var(--c-accent); transition: transform 0.3s var(--ease); }
.cmethod:hover .arrow { transform: translateX(5px); }

/* Formular */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.field input, .field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--c-line);
  padding: 0.7rem 0.1rem;
  transition: border-color 0.25s;
  border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--c-muted) 75%, transparent); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { justify-self: start; margin-top: 0.6rem; }
.form-note {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  margin-top: 0.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding-block: clamp(3rem, 6vh, 5rem) 2.5rem; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--c-line);
}
.footer-word {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 1rem + 4vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.footer-word .dot { color: var(--accent-lt); }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--c-text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--c-muted);
}
.footer-bottom a { color: var(--c-muted); transition: color 0.25s; }
.footer-bottom a:hover { color: var(--c-text); }
.footer-social { display: flex; gap: 1.2rem; }

/* ============================================================
   REVEAL-ANIMATIONEN
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* Hero-Einblendung beim Laden */
.hero .anim { opacity: 0; transform: translateY(30px); }
.hero.loaded .anim { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.hero.loaded .anim[data-d="1"] { transition-delay: 0.15s; }
.hero.loaded .anim[data-d="2"] { transition-delay: 0.3s; }
.hero.loaded .anim[data-d="3"] { transition-delay: 0.45s; }
.hero.loaded .anim[data-d="4"] { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE / MOBILE-NAV
   ============================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    padding: max(6rem, env(safe-area-inset-top, 0px) + 5rem) var(--gutter) max(3rem, env(safe-area-inset-bottom, 0px) + 2rem);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links a { font-size: 1.6rem; }
  .nav-links .nav-cta { font-size: 1rem; padding: 0.7rem 1.4rem; margin-top: 0.6rem; }
  body.nav-open .nav-links { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  /* Wichtig: Blur des Headers während offenem Menü deaktivieren.
     Sonst wird der fixierte Menü-Layer am Header statt am Viewport ausgerichtet
     und der erste Eintrag wird oben abgeschnitten. */
  body.nav-open .site-header {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom-color: transparent;
    transition: none;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 620px) {
  .board__row { grid-template-columns: 1fr; grid-template-areas: "disc" "meta" "time"; }
  .board__time { text-align: left; margin-top: 0.6rem; }
  .hero__board { gap: 1.6rem; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .hero .anim { opacity: 1 !important; transform: none !important; }
  .lane { transform: scaleX(1) !important; }
}

/* --- Foto-Hintergrund Bestzeiten-Sektion (dezent, stark abgedunkelt) --- */
#bestzeiten { position: relative; overflow: hidden; }
#bestzeiten > .wrap { position: relative; z-index: 1; }
#bestzeiten .section-bg { position: absolute; inset: 0; z-index: 0; }
#bestzeiten .section-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%;
  filter: grayscale(0.15) brightness(0.92);
}
#bestzeiten .section-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(13,14,18,0.82) 0%,
    rgba(13,14,18,0.55) 50%,
    rgba(13,14,18,0.82) 100%);
}

/* --- Hauptsponsor + Partner-Untertitel --- */
.mainsponsor {
  margin-top: clamp(2.6rem, 5vh, 3.6rem);
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-accent);
  border-radius: var(--radius);
  background: var(--paper-pure);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
}
.mainsponsor__label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 0.9rem;
}
.mainsponsor__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: opacity 0.25s;
}
.mainsponsor__logo:hover { opacity: 0.72; }
.mainsponsor__logo img { max-width: min(300px, 70%); height: auto; }
.mainsponsor__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--c-text);
  text-transform: uppercase;
}
.mainsponsor__meta {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}
.partner-subhead {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: clamp(2.2rem, 4.5vh, 3rem) 0 1rem;
}
a.logo-slot { text-decoration: none; }
.logo-slot--open .mark { color: var(--c-accent); opacity: 0.85; }

/* --- Rechtsseiten (Impressum / Datenschutz) --- */
.legal { max-width: 68ch; }
.legal h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: clamp(2rem, 4vh, 2.8rem) 0 0.7rem;
}
.legal h2:first-of-type { margin-top: clamp(1.6rem, 3vh, 2.2rem); }
.legal p, .legal li { color: var(--c-muted); line-height: 1.7; }
.legal p { margin: 0 0 0.9rem; }
.legal ul { margin: 0 0 0.9rem; padding-left: 1.2rem; }
.legal li { margin-bottom: 0.35rem; }
.legal a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.legal b, .legal strong { color: var(--c-text); font-weight: 600; }
.legal .updated {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: clamp(2.4rem, 5vh, 3.4rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--c-line);
}
.legal .placeholder {
  background: rgba(31, 56, 245, 0.08);
  border-left: 2px solid var(--c-accent);
  padding: 0.9rem 1.1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.92rem;
}

/* Datenschutz-Link im Formular-Hinweis */
.form-note { line-height: 1.6; max-width: 42ch; }
.form-note a {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.25s;
}
.form-note a:hover { opacity: 0.7; }
