/* ============================================================================
   Kicken gegen Rassismus 2026 — Stylesheet
   Schriften lokal gehostet (DSGVO-konform, keine Übertragung an Google)
   ========================================================================== */

/* ---------- LOCAL FONTS ----------
   Archivo und JetBrains Mono sind Variable Fonts — eine Datei deckt
   den gesamten Gewichts-Range ab. Pro Subset (latin, latin-ext) eine Datei.
*/

/* Archivo (Variable, 400–900) — latin-ext */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Archivo (Variable, 400–900) — latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Archivo Black — latin-ext */
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Archivo Black — latin */
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* JetBrains Mono (Variable) — latin-ext */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* JetBrains Mono (Variable) — latin */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- TOKENS ---------- */
:root {
  --pink: #4a2f33;
  --pink-deep: #6b3f44;
  --yellow: #f5cf5b;
  --ink: #3a2a2a;
  --paper: #f3e7c8;
  --line: #3a2a2a;
  --maxw: 1400px;
  --gutter: 56px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
section[id], div[id="ort"], div.cta-strip { scroll-margin-top: 80px; }
section { scroll-margin-top: 80px; }
body {
  font-family: 'Archivo', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.display { font-family: 'Archivo Black', 'Archivo', sans-serif; letter-spacing: -0.02em; line-height: 0.88; text-transform: uppercase; }
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; }

/* ---------- TOP RIBBON ---------- */
.ribbon {
  background: var(--ink);
  color: var(--yellow);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.ribbon-track {
  display: inline-flex;
  gap: 48px;
  padding: 10px 0;
  animation: scroll 40s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ribbon-track span { display: inline-flex; align-items: center; gap: 48px; }
.ribbon-track .dot { color: var(--pink); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav-band {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
nav.top {
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
nav.top ul {
  margin-right: auto;
}
nav.top .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.02em;
}
nav.top .brand-mark {
  width: 32px; height: 32px;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--yellow);
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
}
nav.top ul { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
nav.top ul a { text-decoration: none; position: relative; padding: 6px 10px; transition: background 0.18s, color 0.18s; }
nav.top ul a:hover { color: var(--pink-deep); }
nav.top ul a.active {
  background: var(--ink);
  color: var(--yellow);
}
nav.top .cta {
  background: var(--ink);
  color: var(--yellow);
  text-decoration: none;
  padding: 10px 18px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid var(--ink);
  transition: transform .15s ease;
}
nav.top .cta:hover { background: var(--pink); color: var(--yellow); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.nav-toggle {
  display: none;
  background: var(--ink);
  color: var(--yellow);
  border: 2px solid var(--ink);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 820px) {
  nav.top ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
    margin: 0;
  }
  nav.top ul.open { display: flex; }
  nav.top ul li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(58,42,42,0.12);
    font-size: 16px;
  }
  nav.top ul li:last-child a { border-bottom: 0; }
  nav.top ul a.active { color: var(--yellow); background: var(--ink); padding: 12px 14px; border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  nav.top { padding: 12px 24px; }
  .nav-band { position: sticky; }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--pink);
  color: var(--yellow);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-left {
  padding: 56px 56px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  color: var(--yellow);
}
.hero-eyebrow .pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(245,207,91,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,207,91,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(245,207,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,207,91,0); }
}
.hero h1 {
  margin: 24px 0 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 .stroke {
  -webkit-text-stroke: 3px var(--yellow);
  color: transparent;
  display: inline-block;
}
.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.45;
  max-width: 560px;
  color: var(--yellow);
}
.hero-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--yellow);
}
.hero-meta > div {
  padding: 18px 16px 4px 0;
  border-right: 2px solid var(--yellow);
}
.hero-meta > div + div { padding-left: 20px; }
.hero-meta > div:last-child { border-right: 0; padding-right: 0; }
.hero-meta .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-meta .value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.hero-cta-row {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink); color: var(--yellow);
}
.btn-primary:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.btn-invert {
  background: var(--yellow); color: var(--ink); border-color: var(--ink);
}
.btn-invert:hover { background: var(--ink); color: var(--yellow); transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost {
  background: transparent; color: var(--yellow); border-color: var(--yellow);
}
.btn-ghost:hover { background: var(--yellow); color: var(--pink); }
.btn .arrow { font-family: 'JetBrains Mono', monospace; }
/* Hervorgehobener Haupt-CTA (Afterparty) — größer, mit dauerhaftem Hard-Shadow */
.btn-party {
  font-size: 20px;
  padding: 20px 34px;
  letter-spacing: 0.04em;
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-party:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 var(--ink); }

.hero-right {
  background: var(--pink);
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 56px 24px 40px;
  overflow: hidden;
}
.poster-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 720/1000;
  transform: rotate(2deg);
  transition: transform .3s ease;
  margin-top: 0;
}
.poster-frame:hover { transform: rotate(0deg) scale(1.02); }
.poster-frame img {
  width: 100%; height: 100%;
  display: block;
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}
.year-update {
  position: absolute;
  top: 12.5%; right: -8px;
  background: var(--ink);
  color: var(--yellow);
  border: 3px solid var(--yellow);
  padding: 8px 14px 6px;
  transform: rotate(8deg);
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  letter-spacing: -0.02em;
  box-shadow: 4px 4px 0 var(--pink-deep);
}
.date-update {
  position: absolute;
  left: 4.5%; right: 4.5%;
  bottom: 9%;
  background: var(--ink);
  color: var(--yellow);
  border: 3px solid var(--yellow);
  padding: 12px 14px 10px;
  transform: rotate(-1.5deg);
  text-align: center;
  box-shadow: 6px 6px 0 var(--pink-deep);
}
.date-update .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.date-update .big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1;
  margin-top: 4px;
  text-transform: uppercase;
}
.poster-caption {
  position: absolute; bottom: 18px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); opacity: 0.85;
}

.hero-vert {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--yellow);
  opacity: 0.6;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { border-bottom: 2px solid var(--ink); padding: 36px 24px; }
  .hero-right { padding: 30px 24px 50px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { border-right: 0; border-bottom: 2px solid var(--yellow); padding: 16px 0; }
  .hero-meta > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-meta > div + div { padding-left: 0; }
}

/* ---------- SECTION SHELL ---------- */
section { padding: 96px var(--gutter); border-bottom: 2px solid var(--ink); }
section#turnier { border-bottom: 0; }
section > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
@media (max-width: 720px) { section { padding: 64px 24px; } }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  align-self: start;
}
.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.section-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--pink-deep);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-lead {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}
.about-body { font-size: 16px; line-height: 1.65; }
.about-body p { margin: 0 0 14px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
  border: 2px solid var(--ink);
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
}
.pill.hot { background: var(--pink); color: var(--yellow); }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- INFO CARDS ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.info-card {
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .2s ease, color .2s ease;
}
.info-card:last-child { border-right: 0; }
.info-card:hover { background: var(--ink); color: var(--yellow); }
.info-card:hover .info-num { color: var(--pink); }
.info-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--pink-deep);
}
.info-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 16px 0 12px;
}
.info-text { font-size: 14px; line-height: 1.5; }
@media (max-width: 980px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-card:nth-child(2) { border-right: 0; }
  .info-card:nth-child(1), .info-card:nth-child(2) { border-bottom: 2px solid var(--ink); }
}
@media (max-width: 540px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: 0; border-bottom: 2px solid var(--ink); }
  .info-card:last-child { border-bottom: 0; }
}

/* 3-spaltige Variante (Turnier-Facts) */
.info-grid--3 { grid-template-columns: repeat(3, 1fr); }
.info-grid--3 .info-card { justify-content: flex-start; gap: 32px; }
@media (max-width: 980px) {
  .info-grid--3 { grid-template-columns: 1fr 1fr; }
  .info-grid--3 .info-card:nth-child(2) { border-right: 0; }
  .info-grid--3 .info-card:nth-child(1),
  .info-grid--3 .info-card:nth-child(2) { border-bottom: 2px solid var(--ink); }
  .info-grid--3 .info-card:nth-child(3) { border-right: 0; }
}
@media (max-width: 540px) {
  .info-grid--3 { grid-template-columns: 1fr; }
}

/* ---------- REGELN ---------- */
.rules-grid {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 16px;
}
.rules-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}
.rules-row + .rules-row { border-top: 2px solid var(--ink); }
.rules-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 22px 24px 22px 0;
  color: var(--ink);
}
.rules-list {
  list-style: none;
  padding: 22px 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.rules-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.rules-list li:last-child { margin-bottom: 0; }
.rules-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  color: var(--pink-deep);
  font-weight: 700;
}
@media (max-width: 720px) {
  .rules-row { grid-template-columns: 1fr; }
  .rules-label { padding: 20px 0 0; }
  .rules-list { padding: 12px 0 20px; }
}

.awareness-card {
  margin-top: 48px;
  background: var(--ink);
  color: var(--yellow);
  padding: 32px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
}
.awareness-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.awareness-card p { margin: 0 0 12px; font-size: 15px; line-height: 1.6; }
.awareness-card p:last-child { margin-bottom: 0; }
.awareness-card strong { color: var(--yellow); }

.rules-footnote {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  opacity: 0.7;
}

/* ---------- SCHEDULE ---------- */
.schedule-section { background: var(--ink); color: var(--yellow); }
.schedule-section .section-num { border-color: var(--yellow); color: var(--yellow); }
.schedule-section .section-kicker { color: var(--pink); }
.schedule {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
}
.sched-row {
  display: contents;
}
.sched-row > * {
  border-top: 2px solid var(--yellow);
  padding: 22px 16px;
}
.sched-row:last-child > * { border-bottom: 2px solid var(--yellow); }
.sched-row .time {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.sched-row .what {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.sched-row .what small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  text-transform: none;
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.75;
  letter-spacing: 0;
}
.sched-row .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: center;
  color: var(--pink);
  text-align: right;
}
@media (max-width: 720px) {
  .schedule { grid-template-columns: 90px 1fr; }
  .sched-row .tag { display: none; }
  .sched-row .time { font-size: 22px; }
}

/* ---------- REGISTRATION ---------- */
.register-section { background: var(--yellow); color: var(--ink); }
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.register-side h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 28px 0 8px;
}
.register-side ul {
  list-style: none; padding: 0; margin: 0;
  font-size: 15px; line-height: 1.6;
}
.register-side ul li { padding-left: 24px; position: relative; margin-bottom: 6px; }
.register-side ul li::before {
  content: "→"; position: absolute; left: 0;
  font-family: 'JetBrains Mono', monospace;
  color: var(--pink-deep);
  font-weight: 700;
}
.deadline-card {
  background: var(--ink); color: var(--yellow);
  padding: 24px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
}
.deadline-card .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); }
.deadline-card .big {
  font-family: 'Archivo Black', sans-serif;
  font-size: 38px; line-height: 0.95; margin-top: 6px; text-transform: uppercase;
}
.deadline-card .sm { font-size: 13px; margin-top: 10px; line-height: 1.4; }

/* ---------- AFTERPARTY ---------- */
.party-section { background: var(--pink); color: var(--yellow); }
/* Auf pinkem Grund müssen die geteilten Bausteine umgefärbt werden */
.party-section .section-num { border-color: var(--yellow); color: var(--yellow); }
.party-section .section-kicker { color: var(--yellow); opacity: 0.8; }
.party-section .section-title { color: var(--yellow); }
.party-section .pill { color: var(--ink); } /* helle Pills behalten dunkle Schrift */

.party-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.party-lead {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  max-width: 520px;
  margin: 0;
}
.party-lineup { margin-top: 36px; }
.party-lineup-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 12px;
}
.party-poster { display: flex; justify-content: center; }
.poster-frame--party {
  aspect-ratio: 1024 / 1280;
  max-width: 360px;
  transform: rotate(-2deg);
}
.poster-frame--party img { object-fit: cover; }
@media (max-width: 820px) {
  .party-grid { grid-template-columns: 1fr; gap: 36px; }
  .party-poster { order: -1; } /* Plakat auf Mobil oben */
}

form.register {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 32px;
  box-shadow: 10px 10px 0 var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 6px; font-weight: 700;
}
.field label .req { color: var(--pink-deep); margin-left: 4px; }
.field input, .field textarea, .field select {
  border: 2px solid var(--ink);
  padding: 12px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--pink);
}
.field textarea { min-height: 100px; resize: vertical; }
.check-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5;
  margin-bottom: 14px;
}
.check-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--pink); }
.submit-row {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.submit-row .note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
button.btn-submit {
  background: var(--pink); color: var(--yellow);
  border: 2px solid var(--ink);
  padding: 16px 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
button.btn-submit:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.form-success {
  display: none;
  border: 3px solid var(--ink);
  padding: 32px;
  background: var(--pink); color: var(--yellow);
  text-align: center;
  box-shadow: 10px 10px 0 var(--ink);
}
.form-success.active { display: block; }
.form-success h3 { font-family: 'Archivo Black', sans-serif; font-size: 36px; text-transform: uppercase; margin: 0 0 12px; }

.form-error {
  display: none;
  border: 3px solid var(--ink);
  padding: 20px 24px;
  margin-bottom: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
  font-size: 14px;
  line-height: 1.5;
}
.form-error.active { display: block; }
.form-error strong { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; display: block; margin-bottom: 4px; }

/* Honeypot — Bots sehen das, echte User nicht */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

@media (max-width: 820px) {
  .register-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
details.faq {
  border-top: 2px solid var(--ink);
  padding: 0;
}
details.faq:last-child { border-bottom: 2px solid var(--ink); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  transition: transform .2s ease;
  color: var(--pink-deep);
}
details.faq[open] summary .plus { transform: rotate(45deg); }
details.faq .answer {
  padding: 0 0 24px;
  max-width: 760px;
  font-size: 16px; line-height: 1.6;
}

/* ---------- SUPPORTERS ---------- */
.supporters-section { background: var(--paper); }
.supporters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.supporter {
  aspect-ratio: 1.4/1;
  border-right: 2px solid var(--ink);
  display: grid; place-items: center;
  text-align: center;
  padding: 24px;
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}
.supporter:hover { background: #f0ece4; }
.supporter img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.supporter:last-child { border-right: 0; }
.supporter .name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.supporter .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--pink-deep);
}
@media (min-width: 701px) and (max-width: 1200px) {
  .supporters { grid-template-columns: repeat(3, 1fr); }
  .supporter { aspect-ratio: 1.6/1; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
  .supporter:nth-child(3n) { border-right: 0; }
  .supporter:nth-last-child(-n+3):nth-child(3n+1),
  .supporter:nth-last-child(-n+3):nth-child(3n+1) ~ .supporter { border-bottom: 0; }
}
@media (max-width: 700px) {
  .supporters { grid-template-columns: 1fr 1fr; }
  .supporter { aspect-ratio: 1.4/1; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
  .supporter:nth-child(3n) { border-right: 2px solid var(--ink); }
  .supporter:nth-child(2n) { border-right: 0; }
  .supporter:nth-last-child(-n+2):nth-child(2n+1),
  .supporter:nth-last-child(-n+2):nth-child(2n+1) ~ .supporter { border-bottom: 0; }
}

/* ---------- LOCATION ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.loc-card {
  border: 2px solid var(--ink);
  padding: 32px;
  background: var(--paper);
}
.loc-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 28px; text-transform: uppercase; margin: 0 0 14px; letter-spacing: -0.01em; }
.loc-card p { margin: 0 0 8px; font-size: 16px; line-height: 1.5; }
.map-placeholder {
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, var(--pink) 0%, var(--pink) 50%, var(--yellow) 50%, var(--yellow) 100%);
  background-size: 24px 24px;
  min-height: 280px;
  position: relative;
  display: grid; place-items: center;
}
.map-pin {
  background: var(--ink); color: var(--yellow);
  padding: 14px 18px;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  border: 2px solid var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
}
.map-pin small { display: block; font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 14px; letter-spacing: 0.1em; margin-top: 8px; color: var(--paper); opacity: 0.95; text-transform: none; }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--pink); color: var(--yellow);
  padding: 80px var(--gutter);
  text-align: center;
  border-bottom: 2px solid var(--ink);
}
.cta-inner { max-width: var(--maxw); margin: 0 auto; }
.cta-strip h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.9;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.cta-strip .btn-primary { background: var(--yellow); color: var(--pink); border-color: var(--ink); }
.cta-strip .btn-primary:hover { box-shadow: 6px 6px 0 var(--ink); }

/* ---------- LEGAL PAGES (Impressum, Datenschutz) ---------- */
.legal-page {
  padding: 64px var(--gutter) 80px;
  max-width: 880px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.legal-page .legal-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}
.legal-page h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 24px 0 8px;
}
.legal-page p { font-size: 16px; line-height: 1.6; margin: 0 0 14px; }
.legal-page ul { font-size: 16px; line-height: 1.6; padding-left: 22px; }
.legal-page address { font-style: normal; font-size: 16px; line-height: 1.6; }
.legal-page a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .legal-page { padding: 48px 24px 64px; }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink); color: var(--yellow);
  padding: 56px var(--gutter) 28px;
}
footer > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--yellow);
}
.foot-grid h4 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  color: var(--yellow);
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 1.8; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { color: var(--pink); }
.foot-brand-mark {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.foot-brand-mark span { color: var(--paper); }
.foot-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  footer, .cta-strip { padding-left: 24px; padding-right: 24px; }
}
