/* === 100 gegen Rechts — Webseite === */
:root {
  --red: #e85136;
  --red-deep: #bf452f;
  --indigo: #314293;
  --indigo-deep: #314293;
  --cream: #FFFFFF;
  --cream-deep: #FFFFFF;
  --yellow: #F2D750;
  --pink: #F4B8B8;
  --blue: #A8C5E8;
  --ink: #314293;
  --white: #FFFFFF;

  --display: "pressio-compressed", "Helvetica Neue", sans-serif;
  --compress: "pressio-compressed", "Helvetica Neue", sans-serif;
  --body: "neue-haas-grotesk-display", "Helvetica Neue", sans-serif;
  --mono: "neue-haas-grotesk-display", "Helvetica Neue", sans-serif;

  /* ===== ZUM SELBST-ANPASSEN — hier Werte ändern, Seite hart neu laden (⌘⇧R) =====
     --hl-scale:     globaler Größen-Faktor der Highlight-Schrift (1 = Original).
     --hero-logo-w:  Breite des großen Logos im Hero-Bereich.
     --peek-w:       Breite der Personen-Figur oben hinter der Counter-Karte.
     --peek-left:    Position der Figur — kleinerer (negativerer) Wert = weiter links. */
  --hl-scale: 1.16;
  --hero-logo-w: 50%;
  --peek-w: 250px;
  --peek-left: -210px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #FFFFFF;
  color: var(--indigo);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* clean white background — no grain */

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* === DISPLAY TYPE === */
.display {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.85;
  font-weight: 700;
}
.compress {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1;
}

/* === TAPE BANNER === */
.tape {
  display: inline-block;
  padding: 0.5em 1em 0.45em;
  background: var(--red);
  color: var(--cream);
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2.5deg);
  max-width: 100%;
}
.tape::before, .tape::after {
  content: none;
}
.tape.indigo { background: var(--indigo); color: var(--cream); }
.tape.blue { background: var(--blue); color: var(--indigo); }
.tape.yellow { background: var(--yellow); color: var(--indigo); }
.tape.cream { background: var(--cream-deep); color: var(--ink); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 15px 10px;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  letter-spacing: 0.02em;
      font-size: calc(var(--hl-scale) * 28px);
  line-height: 1;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--cream);
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1.2deg);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn:hover { transform: rotate(-0.4deg) translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn.outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
  box-shadow: 6px 6px 0 var(--indigo);
  transform: rotate(0.8deg);
}
.btn.outline:hover { box-shadow: 9px 9px 0 var(--indigo); }
.btn.indigo { background: var(--indigo); color: var(--cream); }
.btn.small { font-size: calc(var(--hl-scale) * 14px); padding: 11px 16px 9px; box-shadow: 4px 4px 0 var(--ink); }

/* === LAYOUT === */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
section { position: relative; z-index: 1; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 2px solid var(--indigo);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 28px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-logo .small {
  font-size: 13px;
  color: var(--indigo);
  letter-spacing: 0.05em;
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 18px);
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  background: var(--red);
  color: var(--cream);
  padding: 8px 12px 6px;
  border: 2px solid var(--ink);
  font-size: calc(var(--hl-scale) * 20px);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  margin-right: 6px;
}
.nav-cta:hover { transform: rotate(-0.2deg) translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 64px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: start;
  min-width: 0;
}
.hero-grid > * { min-width: 0; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Mobil: 50% wäre zu klein — Logo etwas größer, aber gedeckelt */
  .hero-logo { width: 66%; max-width: 320px; }
}
.hero-logo {
  width: var(--hero-logo-w);
  height: auto;
  display: block;
  margin: -0.1em 0 8px;
}
.hero-100 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(160px, 22vw, 340px);
  color: var(--red);
  line-height: 0.78;
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
  margin-top: -0.18em;
}
.hero-100 .splat {
  position: absolute;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
}
.hero-100 .splat.s1 { top: -14px; right: 20px; width: 22px; height: 22px; }
.hero-100 .splat.s2 { top: -22px; right: 60px; width: 10px; height: 10px; }
.hero-100 .splat.s3 { top: 4px; right: 0px; width: 16px; height: 16px; transform: rotate(20deg); border-radius: 60% 40% 50% 50%; }
.hero-100 .splat.s4 { top: 30px; right: 14px; width: 8px; height: 8px; }
.hero-100 .splat.s5 { top: -28px; right: 90px; width: 13px; height: 13px; transform: rotate(15deg); border-radius: 40% 60% 50% 50%; }

.hero-striche {
  position: absolute;
  top: -0.18em;
  right: 0.08em;
  width: 0.28em;
  height: auto;
  fill: var(--red);
  pointer-events: none;
  transform: rotate(-15deg);
}

.hero-headline {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-headline .gegen,
.hero-headline .rechts {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(64px, 8.5vw, 120px);
  color: var(--indigo);
  line-height: 0.88;
  display: inline-block;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero-headline .gegen {
  transform: rotate(-2deg);
  margin-left: 4px;
}
.hero-headline .rechts {
  transform: rotate(0.6deg);
  margin-left: 28px;
  margin-top: -4px;
}

.hero-tape-stack {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-right: 12px;
  max-width: 100%;
  min-width: 0;
}
.hero-tape-stack .tape {
  font-size: calc(var(--hl-scale) * clamp(20px, 2.6vw, 32px));
  max-width: 100%;
  word-break: break-word;
}

.hero-sub {
  margin-top: 32px;
  max-width: 460px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--indigo);
}
.hero-sub strong { color: var(--red); }

.hero-ctas {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* hero right column */
.hero-right {
  position: relative;
  padding-top: 8px;
  padding-left: 0;
  margin-left: -20px;
}
.hero-peek {
  position: absolute;
  top: -10px;
  left: var(--peek-left);
  width: var(--peek-w);
  height: auto;
  z-index: 0;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-right .counter-card { position: relative; z-index: 1; }
@media (max-width: 900px) {
  /* Figur oben rechts neben das Logo (statt unten neben den Kasten):
     hero-right static → .hero-peek positioniert sich relativ zur .wrap (oben). */
  .hero-right { margin-left: 0; position: static; }
  .hero-logo { position: relative; z-index: 2; }   /* Logo über der Figur */
  .hero-peek {
    display: block;
    left: auto;
    right: -7px;     /* ragt vom rechten Rand ins Fenster (body overflow-x:hidden → sauber beschnitten) */
    top: 0;           /* auf Höhe des Logos */
    width: 40vw;
    z-index: 0;
  }
  .counter-card { margin: 40px 16px 0; }  /* seitlich Luft links/rechts */
}
.counter-card {
  background: #FFFFFF;
  border: 3px solid var(--indigo);
  padding: 40px 44px 38px;
  box-shadow: 12px 12px 0 var(--indigo);
  position: relative;
  transform: rotate(1.5deg);
}
.counter-card::before {
  content: none;
}
.counter-label {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 16px);
  letter-spacing: 0.12em;
  color: var(--indigo);
  margin-bottom: 6px;
}
.counter-num {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: calc(var(--hl-scale) * clamp(110px, 14vw, 200px));
  color: var(--red);
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.counter-text {
  font-size: 19px;
  margin-top: 10px;
  color: var(--indigo);
  line-height: 1.4;
}
.counter-bar {
  margin-top: 20px;
  height: 18px;
  background: #FFFFFF;
  border: 2px solid var(--indigo);
  position: relative;
}
.counter-bar-fill {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, var(--red), var(--red) 6px, var(--red-deep) 6px, var(--red-deep) 12px);
  width: 0%;
  transition: width 1.5s ease-out;
}
.counter-goal {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--indigo);
}

.hero-stickers {
  position: relative;
  margin-top: 26px;
  display: flex;
  gap: 14px 10px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
}
.hero-stickers .sticker { max-width: 100%; white-space: normal; }
.sticker {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 12px);
  letter-spacing: 0.06em;
  padding: 8px 12px 6px;
  border: 2px solid var(--indigo);
  background: #FFFFFF;
  box-shadow: 3px 3px 0 var(--indigo);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}
.sticker.pink { background: var(--pink); }
.sticker.blue { background: var(--blue); }
.sticker.yellow { background: var(--yellow); }

/* crowd illustration band */
.crowd-band {
  position: relative;
  height: 180px;
  background: var(--cream-deep);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.crowd-band svg { display: block; width: 100%; height: 100%; }

/* === SECTION HEADER === */
.sec-header {
  margin-bottom: 36px;
  position: relative;
}
.sec-eyebrow {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 16px);
  letter-spacing: 0.18em;
  color: var(--indigo);
  margin-bottom: 8px;
  display: inline-block;
  background: #FFFFFF;
  padding: 4px 10px 2px;
  border: 2px solid var(--indigo);
  transform: rotate(-1.5deg);
}
.sec-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: calc(var(--hl-scale) * clamp(48px, 7vw, 96px));
  color: var(--indigo);
  line-height: 0.88;
  letter-spacing: -0.02em;
}
.sec-title .red { color: var(--red); }
.sec-title .indigo { color: var(--indigo); }
.sec-intro {
  margin-top: 14px;
  max-width: 600px;
  font-size: 17px;
  color: var(--ink);
}

section.sec { padding: 0px 0px 90px; }
section.sec.alt { background: #FFFFFF; border-top: 3px solid var(--indigo); border-bottom: 3px solid var(--indigo); }

/* === WALL OF NAMES === */
.mitwall-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.mitwall-illu {
  width: 200px;
  max-width: 100%;
  height: auto;
  /* gleicht das obere Font-Leading der großen Überschrift aus, damit das Bild
     optisch auf der sichtbaren Mitte des Bereichs sitzt (nicht auf der Box-Mitte) */
  transform: translateY(42px);
}
@media (max-width: 900px) {
  .mitwall-grid { grid-template-columns: 1fr; }
  .mitwall-illu { display: none; }
}
.wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.name-tag {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 14px);
  letter-spacing: 0.04em;
  padding: 7px 12px 5px;
  border: 2px solid var(--indigo);
  box-shadow: 3px 3px 0 var(--indigo);
  background: #FFFFFF;
  white-space: nowrap;
}
.name-tag.r { background: var(--red); color: #FFFFFF; }
.name-tag.y { background: var(--yellow); color: var(--indigo); }
.name-tag.p { background: var(--pink); color: var(--indigo); }
.name-tag.b { background: var(--blue); color: var(--indigo); }
.name-tag.w { background: #FFFFFF; color: var(--indigo); }
.wall-search {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.wall-search input {
  font-family: var(--body);
  border: 2px solid var(--indigo);
  background: #FFFFFF;
  padding: 10px 14px;
  font-size: 15px;
  min-width: 240px;
  box-shadow: 3px 3px 0 var(--indigo);
}
.wall-search input:focus { outline: none; box-shadow: 5px 5px 0 var(--red); }

/* === REGISTRATION FORM === */
.reg-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .reg-grid { grid-template-columns: 1fr; } }

.form {
  background: #FFFFFF;
  border: 3px solid var(--indigo);
  padding: 32px;
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(-0.6deg);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 18px);
  letter-spacing: 0.04em;
  color: var(--indigo);
  margin-bottom: 6px;
}
.field input[type="text"], .field input[type="email"] {
  width: 100%;
  border: 2px solid var(--ink);
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--body);
  background: var(--white);
}
.field input:focus { outline: none; border-color: var(--red); box-shadow: 4px 4px 0 var(--red); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 22px;
}
.checkbox-row input[type="checkbox"] {
  appearance: none;
  width: 22px; height: 22px;
  border: 2px solid var(--ink);
  background: var(--white);
  position: relative;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.checkbox-row input[type="checkbox"]:checked {
  background: var(--red);
}
.checkbox-row input[type="checkbox"]:checked::after {
  content: "✗";
  color: var(--cream);
  font-size: 18px;
  font-weight: 900;
  position: absolute;
  top: -2px; left: 4px;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
}
.checkbox-row label { font-size: 14px; line-height: 1.4; cursor: pointer; }

.reg-illu {
  position: relative;
  
  text-align: center;
}
.reg-illu-frame {
  
  background: #FFFFFF;
  padding: 28px;
  
  transform: rotate(1.2deg);
}
.reg-illu-frame svg { width: 100%; height: auto; }
.reg-illu-frame.character {
  background: #FFFFFF;
  padding: 0 24px;
  transform: rotate(-2deg);
  position: relative;
  max-width: 196px;
  margin: 0 auto;
}
.reg-illu-frame.character img {
  display: block;
  margin-bottom: -3px;
}
.reg-quote {
  margin-top: 20px;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 28px);
  color: var(--indigo);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  display: inline-block;
}

/* form success */
.form-success {
  background: var(--yellow);
  border: 3px solid var(--ink);
  padding: 32px;
  box-shadow: 10px 10px 0 var(--red);
  text-align: center;
}
.form-success .big {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 64px);
  color: var(--red);
  line-height: 0.9;
  margin-bottom: 8px;
}

/* === PROFILE GENERATOR === */
.pfp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .pfp-grid { grid-template-columns: 1fr; } }

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 28px;
}
.step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 2px solid var(--indigo);
  background: #FFFFFF;
  box-shadow: 4px 4px 0 var(--indigo);
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 16px);
  letter-spacing: 0.04em;
}
.step.active { background: var(--yellow); transform: rotate(-1deg); }
.step.done { background: var(--blue); }
.step .num {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 32px);
  color: var(--red);
  line-height: 1;
  width: 38px;
  text-align: center;
}
.step.done .num { color: var(--indigo); text-decoration: line-through; }

.pfp-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.overlay-pick {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 13px);
  letter-spacing: 0.06em;
  padding: 10px 14px 8px;
  border: 2px solid var(--indigo);
  background: #FFFFFF;
  box-shadow: 3px 3px 0 var(--indigo);
}
.overlay-pick.active { background: var(--red); color: var(--cream); transform: rotate(-1deg); }

.upload-area {
  border: 3px dashed var(--indigo);
  background: #FFFFFF;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  margin-top: 14px;
  transition: background 120ms;
}
.upload-area:hover { background: rgba(30,34,112,0.04); }
.upload-area.has-file { border-style: solid; border-color: var(--ink); }
.upload-area .big {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 22px);
  color: var(--indigo);
}

/* polaroid preview */
.polaroid {
  background: #FFFFFF;
  padding: 14px 14px 50px;
  border: 2px solid var(--indigo);
  box-shadow: 12px 12px 0 var(--indigo);
  transform: rotate(2.5deg);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.polaroid::before {
  content: "";
  position: absolute;
  width: 90px; height: 26px;
  background: rgba(242,215,80,0.7);
  border: 1px dashed rgba(26,23,21,0.4);
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}
.polaroid-canvas {
  width: 100%;
  aspect-ratio: 1;
  background: #FFFFFF;
  border: 1px solid var(--indigo);
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}
.polaroid-canvas.has-image { cursor: grab; touch-action: none; }
.polaroid-canvas.has-image:active { cursor: grabbing; }
.polaroid-canvas img { transform-origin: 50% 50%; will-change: transform; }
.polaroid-canvas img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.polaroid-canvas .placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--indigo);
  background: repeating-linear-gradient(45deg, #FFFFFF, #FFFFFF 14px, #F4F4FA 14px, #F4F4FA 28px);
}
.polaroid-canvas .overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.polaroid-canvas .overlay img,
.polaroid-canvas .overlay svg {
  width: 100%;
  height: 100%;
  display: block;
}
.polaroid-cap {
  margin-top: 12px;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  text-align: center;
  font-size: calc(var(--hl-scale) * 22px);
  color: var(--red);
  letter-spacing: -0.01em;
  line-height: 0.95;
}

/* === PROGRAMM TIMELINE === */
.programm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}
@media (max-width: 800px) { .programm { grid-template-columns: 1fr; } }

.event {
  border: 3px solid var(--indigo);
  padding: 22px 22px 24px;
  box-shadow: 8px 8px 0 var(--indigo);
  position: relative;
  background: #FFFFFF;
}
.event.r { background: var(--red); color: var(--cream); }
.event.r .ev-day, .event.r .ev-when, .event.r .ev-loc { color: var(--cream); }
.event.r .ev-title { color: var(--cream); }
.event.y { background: var(--yellow); }
.event.b { background: var(--blue); }
.event.i { background: #FFFFFF; color: var(--indigo); }
.event.i .ev-day, .event.i .ev-when, .event.i .ev-loc { color: var(--indigo); }
.event.i .ev-title { color: var(--indigo); }

.event:nth-child(odd) { transform: rotate(-0.7deg); }
.event:nth-child(even) { transform: rotate(0.6deg); }

.ev-day {
  font-family: var(--display); text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 28px);
  color: var(--indigo);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.ev-when {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--indigo);
  margin-top: 2px;
}
.ev-cat {
  margin-top: 10px;
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 15px);
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.ev-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * clamp(28px, 3vw, 38px));
  color: var(--ink);
  line-height: 0.92;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.ev-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.ev-loc {
  margin-top: 12px;
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 15px);
  color: var(--indigo);
  letter-spacing: 0.04em;
}
.ev-loc::before { content: "» "; }

/* === BÜNDNIS / ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.manifest {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * clamp(34px, 4.5vw, 56px));
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 0.83em;
}
.manifest .red { color: var(--red); }
.manifest .ind { color: var(--indigo); }
.manifest { color: var(--indigo); }
.manifest .underline { text-decoration: underline; text-decoration-thickness: 6px; text-decoration-color: var(--yellow); text-underline-offset: 2px; }

.partner-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.partner {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 13px);
  letter-spacing: 0.06em;
  padding: 12px 16px 10px;
  border: 2px solid var(--indigo);
  background: #FFFFFF;
  box-shadow: 3px 3px 0 var(--indigo);
  color: var(--indigo);
}
.partner:nth-child(3n) { background: var(--yellow); }
.partner:nth-child(4n) { background: var(--pink); transform: rotate(-1deg); }
.partner:nth-child(5n) { background: var(--blue); transform: rotate(1deg); }

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  max-width: 820px;
}
.faq-item {
  border: 3px solid var(--indigo);
  background: #FFFFFF;
  box-shadow: 6px 6px 0 var(--indigo);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * clamp(20px, 2.4vw, 28px));
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq-q .plus {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  color: var(--red);
  font-size: calc(var(--hl-scale) * 32px);
  transition: transform 200ms;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 200ms ease;
  font-size: 16px;
  line-height: 1.55;
}
.faq-item.open .faq-a {
  max-height: 360px;
  padding: 0 22px 22px;
}

/* === FOOTER === */
.foot {
  background: var(--red);
  color: #FFFFFF;
  padding: 60px 0 30px;
  margin-top: 0;
  border-top: 3px solid var(--indigo);
  position: relative;
}
.foot * { color: #FFFFFF; }
.foot h4 { color: #FFFFFF !important; }
.foot a:hover { color: var(--cream-deep) !important; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h4 {
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 14px);
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}
.foot a { color: var(--cream); text-decoration: none; }
.foot a:hover { color: var(--yellow); }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-100 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: calc(var(--hl-scale) * 92px);
  color: #FFFFFF;
  line-height: 0.85;
  letter-spacing: -0.03em;
  display: inline-block;
}
.foot-100 .small {
  display: block;
  font-size: calc(var(--hl-scale) * 18px);
  letter-spacing: 0.05em;
  font-family: var(--compress); font-weight: 700; text-transform: uppercase;
  margin-top: 4px;
}
.foot-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 10px;
}

/* misc */
.scroll-anchor { scroll-margin-top: 80px; }

/* === BLUE STROKE DIVIDERS === */
.sec-divider {
  border: 0;
  border-top: 3px solid var(--indigo);
  margin: 0;
  height: 0;
}
.sec-divider.thick { border-top-width: 6px; }
.sec-divider.double {
  border-top: 3px solid var(--indigo);
  border-bottom: 3px solid var(--indigo);
  height: 6px;
}

/* === CROWD IMAGE FILL === */
.crowd-img { display: block; max-width: 100%; height: auto; }
.crowd-fill-band {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 16px;
  padding: 40px 32px 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.crowd-fill-band .crowd-img { max-height: 320px; width: auto; flex: 0 0 auto; }
.crowd-fill-band .crowd-img.flip { transform: scaleX(-1); }
.crowd-fill-band .crowd-img.small { max-height: 220px; }

.hero-crowd {
  position: absolute;
  right: -40px;
  bottom: -40px;
  max-height: 460px;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}
@media (max-width: 1100px) {
  .hero-crowd { max-height: 340px; right: -30px; bottom: -30px; }
}
@media (max-width: 900px) {
  .hero-crowd { display: none; }
}

.about-crowd {
  max-height: 360px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.programm-crowd {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.programm-crowd img { max-height: 340px; max-width: 100%; }

/* placeholder marker */
.placeholder-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  opacity: 0.6;
  position: absolute;
  bottom: 8px; right: 10px;
}

/* shake on hover for tape */
.tape-hover { transition: transform 150ms ease; }
.tape-hover:hover { transform: rotate(-3.5deg) translateY(-2px); }
