/* =====================================================================
   AKTIONSWOCHE 2026 – DIE LINKE Berlin-Mitte
   Design: Mamdani-Plakat trifft LINKE-Rot. Warmes Papier, harte
   Sticker-Schatten, fette Anton-Typo, Gold-Akzente.
   ===================================================================== */

/* ---------- Lokale Schriften (selbst gehostet, keine externen Requests / DSGVO) ---------- */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/anton-latin-400-normal.woff2") format("woff2");
}
@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");
}
@font-face {
  font-family: "Archivo";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/archivo-latin-wght-italic.woff2") format("woff2");
}

/* ---------- Design Tokens ---------- */
:root {
  --cream:      #F7EFDD;
  --cream-2:    #FBF6EA;
  --paper-line: #E7DBBF;

  --red:        #E4002B;
  --red-deep:   #B00020;
  --magenta:    #C6006E;
  --purple:     #8100A1;
  --blue:       #2440C4;
  --yellow:     #FFC629;
  --teal:       #0F9E8E;
  --orange:     #F7801E;
  --maroon:     #6E0A3C;

  --ink:        #1B0F1A;
  --ink-soft:   #3A2A39;

  --shadow:     6px 6px 0 var(--ink);
  --shadow-sm:  4px 4px 0 var(--ink);
  --radius:     18px;

  --maxw: 1160px;
  --font-display: "Anton", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
  /* feines Papierraster */
  background-image:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(110,10,60,.035) 39px 40px),
    radial-gradient(rgba(27,15,26,.05) 1px, transparent 1.4px);
  background-size: auto, 22px 22px;
}

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

::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: 0 0 12px 0;
  font-weight: 800;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-family: var(--font-body); font-weight: 800; letter-spacing: .01em;
  padding: .72em 1.25em; border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: var(--cream-2); color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  text-align: center; line-height: 1.15;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px);   box-shadow: 2px 2px 0 var(--ink); }

.btn--big  { font-size: clamp(1rem, 1rem + .4vw, 1.2rem); padding: .85em 1.6em; }
.btn--red  { background: var(--red);   color: #fff; }
.btn--dark { background: var(--ink);   color: var(--cream); }
.btn--ghost{ background: transparent; }
.btn--nav  { padding: .55em 1.1em; box-shadow: var(--shadow-sm); background: var(--yellow); }

.btn--stat { background: var(--red); color: #fff; width: 100%; font-size: 1.05rem; padding: .8em; }
.btn--stat-alt { background: var(--blue); }
.btn--mini { padding: .5em .9em; font-size: .9rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--reset { padding: .5em .9em; font-size: .9rem; background: transparent; box-shadow: 3px 3px 0 var(--ink); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--red);
  border-bottom: 3px solid var(--ink);
}
.nav__bar {
  display: flex; align-items: center; gap: 1.4rem;
  padding: .7rem clamp(1rem, 4vw, 2.4rem);
}
.nav__brand { display: flex; align-items: center; gap: .5rem; color: #fff; }
.nav__fist { font-size: 1.5rem; }
.nav__brandtext {
  font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase;
  letter-spacing: .04em; line-height: 1;
}
.nav__links { display: flex; gap: 1.3rem; margin-left: auto; }
.nav__links a { color: #fff; font-weight: 700; position: relative; padding: .2em 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 3px;
  background: var(--yellow); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: .3rem;
  padding: .6rem clamp(1rem, 4vw, 2.4rem) 1.2rem;
  background: var(--red);
  border-top: 2px solid rgba(255, 255, 255, .22);
  box-shadow: 0 14px 22px rgba(27, 15, 26, .28);
  animation: menuDown .24s ease;
  overflow: hidden;
}
/* wichtig: das hidden-Attribut muss das display:flex schlagen */
.mobile-menu[hidden] { display: none; }
@keyframes menuDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
.mobile-menu a { color: #fff; font-weight: 800; padding: .7rem .2rem; font-size: 1.15rem; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.mobile-menu .btn { margin-top: .7rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.4rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(198,0,110,.16), transparent 55%),
    radial-gradient(90% 70% at -5% 110%, rgba(36,64,196,.14), transparent 55%),
    var(--cream);
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(27,15,26,.11) 1px, transparent 1.6px);
  background-size: 9px 9px;
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}
.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }

.hero__kicker { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }
.tag {
  display: inline-block; font-weight: 800; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; padding: .45em .9em; border-radius: 999px;
  border: 2.5px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
}
.tag--red { background: var(--red); color: #fff; }
.tag--outline { background: var(--cream-2); }
.tag--yellow { background: var(--yellow); }

.hero__title { font-family: var(--font-display); text-transform: uppercase; line-height: .82; margin: .2rem 0 1rem; }
.hero__line { display: block; letter-spacing: .005em; }
.hero__line--1 {
  font-size: clamp(3.6rem, 14vw, 11rem); color: var(--red);
  -webkit-text-stroke: 2px var(--ink); text-shadow: var(--shadow);
}
.hero__line--2 {
  font-size: clamp(3.6rem, 14vw, 11rem); color: var(--ink);
  margin-left: clamp(.4rem, 4vw, 3.5rem);
}

.hero__date { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; margin: .4rem 0 1.6rem; }
.hero__sticker {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.1rem, 1rem + 1.6vw, 1.9rem); letter-spacing: .02em;
  background: var(--yellow); color: var(--ink);
  padding: .35em .8em; border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: var(--shadow-sm); transform: rotate(-2.2deg);
}
.hero__place { font-weight: 800; font-size: clamp(1rem, 1rem + .6vw, 1.35rem); text-transform: uppercase; letter-spacing: .04em; }

.hero__lead { max-width: 46ch; font-size: clamp(1.05rem, 1rem + .5vw, 1.4rem); font-weight: 500; margin-bottom: 1.8rem; }
.hero__lead strong { background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%); font-weight: 800; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }

.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; font-weight: 600; color: var(--ink-soft); }
.hero__meta strong { color: var(--red); }

/* rotierendes Rundstempel-Badge */
.hero__badge {
  position: absolute; top: clamp(1rem, 3vw, 2.5rem); right: clamp(1rem, 4vw, 3rem);
  width: clamp(110px, 15vw, 190px); aspect-ratio: 1; display: none;
}
.hero__badge svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.hero__badge text { font-family: var(--font-body); font-weight: 800; font-size: 12.5px; letter-spacing: .5px; fill: var(--ink); text-transform: uppercase; }
.hero__badge-core {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================================
   TICKER
   ===================================================================== */
.ticker {
  background: var(--ink); color: var(--cream); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  overflow: hidden; white-space: nowrap; padding: .55rem 0;
}
.ticker__track { display: inline-flex; will-change: transform; animation: marquee 26s linear infinite; }
.ticker__track span {
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem;
  letter-spacing: .05em; padding-right: 1rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   SECTION HEADINGS
   ===================================================================== */
section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2.4rem); }

.section-head { display: flex; align-items: center; gap: 1rem; max-width: var(--maxw); margin: 0 auto 1.5rem; }
.section-num {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--ink); color: var(--yellow); width: 1.9em; height: 1.9em;
  display: grid; place-items: center; border-radius: 50%; flex-shrink: 0;
}
.section-head h2 {
  font-family: var(--font-display); text-transform: uppercase; line-height: 1.06;
  font-size: clamp(2.2rem, 6vw, 4.6rem); letter-spacing: .01em;
}
.hl { padding: .04em .12em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.hl--yellow { background: var(--yellow); }
.hl--red    { color: var(--red); -webkit-text-stroke: 1.5px var(--ink); }

/* =====================================================================
   STADT-STATEMENT
   ===================================================================== */
.stadt { background: var(--red); color: #fff; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.stadt__inner { max-width: 940px; margin: 0 auto; }
.stadt__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 6vw, 4rem); line-height: 1.04; margin-bottom: 1.2rem; }
.stadt__hl { background: var(--yellow); color: var(--ink); padding: 0 .12em; }
.stadt__text { font-size: clamp(1.15rem, 1rem + .9vw, 1.7rem); font-weight: 500; line-height: 1.5; max-width: 54ch; }

/* =====================================================================
   UNSER PLAN
   ===================================================================== */
.warum { max-width: var(--maxw); margin: 0 auto; }

/* Zweispaltiges Kopf-Layout: Text links, Ziele rechts */
.warum__top { display: grid; grid-template-columns: 1fr minmax(300px, 380px); gap: clamp(1.6rem, 3vw, 2.8rem); align-items: start; margin-bottom: 2.6rem; }
.warum__lead .section-head { margin-left: 0; margin-right: 0; }
.warum__lead .warum__intro { margin-bottom: 0; }
@media (max-width: 860px) {
  .warum__top { grid-template-columns: 1fr; }
}

/* ---- Highlight-Kacheln der Hauptziele ---- */
.goals { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.2rem; }
.goals__eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; color: var(--ink); background: var(--yellow); display: inline-block; align-self: flex-start; padding: .25rem .7rem; border: 2.5px solid var(--ink); border-radius: 8px; transform: rotate(-2deg); box-shadow: var(--shadow-sm); }
@media (max-width: 860px) { .goals { position: static; } }

.goal {
  position: relative; overflow: hidden;
  border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.3rem; color: #fff;
  box-shadow: var(--shadow); isolation: isolate;
}
/* Fancy: diagonaler Farbverlauf + dezentes Raster-Glow */
.goal--plakat   { background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 60%, var(--maroon) 100%); }
.goal--haustuer { background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 60%, var(--red-deep) 100%); }
.goal::before {
  content: ""; position: absolute; z-index: -1; inset: -40% -40% auto auto;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,198,41,.35) 0%, rgba(255,198,41,0) 70%);
}
.goal__flag {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--font-display); text-transform: uppercase; font-size: .72rem; letter-spacing: .06em;
  background: var(--yellow); color: var(--ink); padding: .22rem .55rem;
  border: 2px solid var(--ink); border-radius: 999px;
}
.goal__date {
  display: inline-flex; flex-direction: column; align-items: flex-start; line-height: .95;
  background: var(--ink); color: var(--yellow); padding: .5rem .8rem; border-radius: 12px;
  border: 2.5px solid rgba(255,255,255,.25); transform: rotate(-3deg); margin-bottom: .9rem;
  box-shadow: var(--shadow-sm);
}
.goal__date b { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .01em; }
.goal__date span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cream); opacity: .85; }
.goal__emoji { font-size: 2.4rem; display: block; line-height: 1; margin-bottom: .5rem; filter: drop-shadow(2px 2px 0 rgba(0,0,0,.35)); }
.goal__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 1.95rem); line-height: 1.05; margin-bottom: .5rem; }
.goal__text { font-weight: 500; line-height: 1.5; font-size: 1rem; }
.goal__text strong { color: var(--yellow); font-weight: 800; }
.goal__meta { display: flex; flex-wrap: wrap; gap: .35rem 1rem; margin-top: 1rem; padding-top: .8rem; border-top: 1.5px solid rgba(255,255,255,.28); font-weight: 700; font-size: .9rem; }

.warum__intro { max-width: 62ch; margin: 0 0 2.4rem 0; }
.warum__intro p { font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); font-weight: 500; margin: 0 0 1rem; }
.warum__intro p:last-child { margin-bottom: 0; }
.warum__intro strong { color: var(--red); font-weight: 800; }

.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card3 {
  border: 3px solid var(--ink); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow); background: var(--cream-2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card3:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.card3__emoji { font-size: 2.6rem; display: block; margin-bottom: .5rem; }
.card3 h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; margin-bottom: .5rem; }
.card3 p { font-weight: 500; }
.card3--red    { background: var(--red);    color: #fff; }
.card3--purple { background: var(--purple); color: #fff; }
.card3--blue   { background: var(--blue);   color: #fff; }

/* =====================================================================
   PROGRAMM
   ===================================================================== */
.programm { background: var(--ink); color: var(--cream); border-top: 3px solid var(--ink); }
.section-head--light h2 { color: var(--cream); }
.programm .section-num { background: var(--yellow); color: var(--ink); }

.programm__hint { max-width: var(--maxw); margin: 0 auto 1.8rem; font-weight: 500; color: #e9dcc5; }
.programm__hint strong { color: var(--yellow); }

/* Wochentag-Buttons */
.daybar {
  max-width: var(--maxw); margin: 0 auto 2rem; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: .7rem;
}
.daytab {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  padding: .8rem .5rem; border-radius: 14px; border: 2.5px solid var(--cream);
  background: transparent; color: var(--cream); box-shadow: 4px 4px 0 rgba(0,0,0,.55);
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
}
.daytab:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,.55); }
.daytab__wd { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .03em; }
.daytab__date { font-weight: 700; font-size: .9rem; opacity: .85; }
.daytab__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); margin-top: .25rem; opacity: 0; }
.daytab[aria-selected="true"] {
  background: var(--yellow); color: var(--ink); border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--red);
}
.daytab[aria-selected="true"] .daytab__date { opacity: 1; }
.daytab--today .daytab__dot { opacity: 1; }

/* Tagesansicht */
.dayview { max-width: var(--maxw); margin: 0 auto; }
.day {
  animation: fadeUp .35s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.day__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem;
  border-bottom: 2px dashed rgba(247,239,221,.4); padding-bottom: 1rem; margin-bottom: 1.5rem;
}
.day__wd { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 5vw, 3rem); color: var(--yellow); line-height: 1; }
.day__date { font-weight: 800; font-size: 1.2rem; }
.day__ort { font-weight: 800; background: var(--cream); color: var(--ink); padding: .15em .6em; border-radius: 999px; font-size: .95rem; }
.day__theme { font-weight: 600; font-style: italic; opacity: .85; margin-left: auto; }
.day__hint { font-weight: 600; opacity: .75; font-size: .92rem; margin-bottom: 1rem; }

.timeline { display: grid; gap: 1rem; }

/* Parallel laufende Programmpunkte – nebeneinander dargestellt */
.parallel {
  position: relative;
  border: 2.5px dashed rgba(247,239,221,.5);
  border-radius: 14px;
  padding: 1.6rem 1rem 1rem;
}
.parallel__tag {
  position: absolute; top: -14px; left: 16px;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: .82rem; letter-spacing: .04em;
  background: var(--yellow); color: var(--ink);
  padding: .2em .7em; border: 2.5px solid var(--ink); border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.5);
}
.parallel__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
/* Kompaktere, sauber umbrechende Blöcke in den (teils schmalen) Parallel-Spalten */
.parallel__cols .block { height: 100%; grid-template-columns: 78px 1fr; gap: .45rem .7rem; padding: .85rem .9rem; }
.parallel__cols .block__time { font-size: .92rem; }
.parallel__cols .block__title { font-size: 1.02rem; line-height: 1.05; overflow-wrap: anywhere; word-break: break-word; }
.parallel__cols .block__short { font-size: .84rem; line-height: 1.35; }
.parallel__cols .block__more { display: none; }
@media (max-width: 760px) { .parallel__cols { grid-template-columns: 1fr !important; } }

/* "Dach"-Block: läuft durchgehend, darunter eingerückt die parallelen Aktionen */
.span { display: grid; gap: .85rem; }
.span > .block { border-left-width: 12px; padding: 1.35rem 1.3rem; box-shadow: 5px 5px 0 rgba(0,0,0,.5); }
.span > .block .block__time { font-size: 1.2rem; }
.span > .block .block__title { font-size: clamp(1.45rem, 1.2rem + 1vw, 1.75rem); }
.span__children {
  display: grid; gap: .8rem;
  margin-left: 1.7rem; padding-left: 1.3rem;
  border-left: 3px dashed rgba(247,239,221,.45);
}
@media (max-width: 560px) { .span__children { margin-left: .6rem; padding-left: .8rem; } }

/* Ausgegraute Blöcke (z. B. Schlechtwetter-Backup) */
.block--muted { opacity: .5; filter: grayscale(.65); }
.block--muted:hover { opacity: .8; }

/* Dünne, kompakte Kachel (z. B. ganztägiger Infostand) */
.block--slim { padding: .5rem 1rem; box-shadow: 3px 3px 0 rgba(0,0,0,.4); }
.block--slim .block__body { gap: .02rem; }
.block--slim .block__type { font-size: .62rem; }
.block--slim .block__title { font-size: 1rem; line-height: 1.1; }
.block--slim .block__short { display: none; }

/* Klickbare Programm-Bloecke */
.block {
  position: relative; width: 100%; text-align: left; font-family: inherit; cursor: pointer;
  display: grid; grid-template-columns: 96px 1fr auto; gap: 1rem; align-items: center;
  border: 2.5px solid var(--ink); border-left-width: 10px; border-radius: 12px;
  background: var(--cream-2); color: var(--ink); padding: 1rem 1.1rem;
  box-shadow: 4px 4px 0 rgba(0,0,0,.5);
  transition: transform .12s ease, box-shadow .12s ease;
}
.block:hover  { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(0,0,0,.55); }
.block:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(0,0,0,.55); }
.block__time { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .02em; }
.block__body { display: grid; gap: .12rem; min-width: 0; }
.block__type { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.block__title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem; line-height: 1; }
.block__short { font-weight: 500; font-size: .92rem; }
.block__more { font-weight: 800; white-space: nowrap; opacity: .5; transition: opacity .15s, color .15s; }
.block:hover .block__more { opacity: 1; color: var(--red); }
.block__status {
  position: absolute; top: -11px; right: 14px;
  font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: .25em .65em; border-radius: 999px; border: 2px solid var(--ink);
}

/* Status-Farben (Block + Modal-Chip) */
.s-fix     { background: var(--teal);   color: #fff; }
.s-geplant { background: var(--blue);   color: #fff; }
.s-idee    { background: var(--yellow); color: var(--ink); }

/* Farbcodierung der Block-Typen */
.t-frueh      { border-left-color: var(--orange); }
.t-frueh      .block__type { color: var(--orange); }
.t-coworking  { border-left-color: var(--teal); }
.t-coworking  .block__type { color: var(--teal); }
.t-ausbildung { border-left-color: var(--blue); }
.t-ausbildung .block__type { color: var(--blue); }
.t-haustuer   { border-left-color: var(--red); }
.t-haustuer   .block__type { color: var(--red); }
.t-social     { border-left-color: var(--magenta); }
.t-social     .block__type { color: var(--magenta); }
.t-special    { border-left-color: var(--purple); background: #f6ebfa; }
.t-special    .block__type { color: var(--purple); }
.t-special    .block__title { color: var(--purple); }

/* Legende */
.legend {
  max-width: var(--maxw); margin: 2.2rem auto 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  padding-top: 1.4rem; border-top: 2px dashed rgba(247,239,221,.4);
}
.legend__item { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; }
.legend__swatch { width: 18px; height: 18px; border-radius: 5px; border: 2px solid var(--cream); }

/* =====================================================================
   HAUSTÜR-COUNTER
   ===================================================================== */
.counter { position: relative; background: var(--yellow); border-top: 3px solid var(--ink); overflow: hidden; }
.counter__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(27,15,26,.16) 1.2px, transparent 1.6px);
  background-size: 12px 12px;
}
.counter > *:not(.counter__grain) { position: relative; }
.counter .section-num { background: var(--ink); color: var(--yellow); }
.counter__intro { max-width: 60ch; font-weight: 600; font-size: 1.1rem; margin: 0 auto 2rem; max-width: var(--maxw); }
/* Nicht-interaktive Ziel-Skala */
.gauge { max-width: var(--maxw); margin: 0 auto; background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.4rem, 4vw, 2rem); }
.gauge__figures { display: flex; align-items: baseline; gap: .2rem .9rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.gauge__current { font-family: var(--font-display); font-size: clamp(3.5rem, 14vw, 8rem); line-height: .85; color: var(--red); }
.gauge__of { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.1rem, 3.5vw, 1.9rem); }
.gauge__bar { position: relative; height: 42px; border: 3px solid var(--ink); border-radius: 999px; background: repeating-linear-gradient(45deg, #fff 0 12px, #f3e9cf 12px 24px); overflow: hidden; }
.gauge__fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--red), var(--magenta)); border-radius: 999px; transition: width 1s cubic-bezier(.2, .8, .2, 1); }
.gauge__pct { position: absolute; top: 50%; right: 16px; transform: translateY(-50%); font-weight: 800; font-size: 1rem; color: var(--ink); }
.gauge__ticks { display: flex; justify-content: space-between; margin-top: .7rem; font-weight: 700; font-size: .82rem; opacity: .7; }

/* Kleiner Plakate-Counter – nur die Zahl */
.ministat-wrap { max-width: var(--maxw); margin: 1.6rem auto 0; }
.ministat {
  display: inline-flex; align-items: baseline; gap: .55rem;
  background: var(--ink); color: var(--cream);
  border: 3px solid var(--ink); border-radius: 999px;
  padding: .5rem 1.3rem; box-shadow: var(--shadow-sm);
}
.ministat__num { font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 2.7rem); line-height: 1; color: var(--yellow); }
.ministat__label { font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: clamp(.85rem, 2.5vw, 1rem); }

.counter__note { max-width: var(--maxw); margin: 1.4rem auto 0; font-weight: 600; opacity: .8; font-size: .9rem; }

/* =====================================================================
   MITMACHEN
   ===================================================================== */
.mitmachen { background: var(--cream); }
.mitmachen .section-head { justify-content: center; }
.mitmachen__inner { max-width: 860px; margin: 0 auto; text-align: center; }

.mitmachen__statement { font-size: clamp(1.35rem, 1rem + 1.6vw, 2.2rem); font-weight: 800; line-height: 1.25; margin-bottom: 1.1rem; }
.mitmachen__statement strong { background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); }
.mitmachen__statement--sub { font-size: clamp(1.1rem, 1rem + .8vw, 1.5rem); font-weight: 700; margin-bottom: 2.4rem; }
.mitmachen__statement--sub strong { background: none; color: var(--red); }

/* Großer, zentraler Anmelde-Link */
.linkcta {
  background: var(--blue); color: #fff; border: 3px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.8rem, 5vw, 3rem) clamp(1.2rem, 4vw, 2.4rem);
  margin: 0 auto 2.6rem; max-width: 720px;
}
.linkcta__lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); font-weight: 700; margin-bottom: 1.4rem; }
.linkcta__btn {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.4rem, 1rem + 2.4vw, 2.6rem); letter-spacing: .01em; line-height: 1.05;
  background: var(--yellow); color: var(--ink); border: 3px solid var(--ink); border-radius: 16px;
  padding: .5em .9em; box-shadow: 6px 6px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease; max-width: 100%; word-break: break-word;
}
.linkcta__btn:hover  { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.linkcta__btn:active { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.linkcta__note { margin-top: 1rem; font-weight: 700; font-style: italic; opacity: .9; }

/* Behaltene Hilfe / Checkliste */
.mitmachen__help {
  max-width: 560px; margin: 0 auto; text-align: left;
  background: var(--cream-2); border: 3px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.8rem 1.6rem;
}
.mitmachen__lead { font-size: clamp(1.15rem, 1rem + 1vw, 1.6rem); font-weight: 800; margin-bottom: 1.1rem; }
.mitmachen__lead strong { color: var(--red); }
.checklist { display: grid; gap: .8rem; margin-bottom: 1.2rem; }
.checklist li { position: relative; padding-left: 2rem; font-weight: 500; font-size: 1.05rem; }
.checklist li::before { content: "✊"; position: absolute; left: 0; top: 0; }
.mitmachen__hint { font-weight: 600; opacity: .8; }

/* =====================================================================
   STATIONEN / ORT
   ===================================================================== */
.ort { background: var(--magenta); }
.ort__inner { max-width: var(--maxw); margin: 0 auto; }
.ort .section-head h2 { color: #fff; }
.ort .section-num { background: #fff; color: var(--magenta); }
.ort__intro { color: #fff; font-weight: 600; max-width: 60ch; margin-bottom: 1.8rem; font-size: 1.05rem; }
.ort__intro em { opacity: .82; }

.stations { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .9rem; }
.station {
  background: var(--cream); border: 2.5px solid var(--ink); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink); padding: .9rem 1rem; display: grid; gap: .2rem;
  transition: transform .12s ease;
}
.station:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.station__day { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; color: var(--red); }
.station__ort { font-weight: 700; }

.ort__note {
  margin-top: 1.8rem; color: #fff; font-weight: 700; line-height: 1.6;
  background: rgba(0,0,0,.18); border: 2px dashed rgba(255,255,255,.5);
  border-radius: 12px; padding: .95rem 1.15rem;
}

/* =====================================================================
   MODAL / POPUP
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(27,15,26,.55); animation: fadeIn .2s ease; }
.modal__box {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--ink); padding: 2.2rem 1.8rem 1.8rem;
  animation: modalIn .28s cubic-bezier(.2, .9, .25, 1.2);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.96); } }
.modal__close {
  position: absolute; top: .8rem; right: .8rem; width: 42px; height: 42px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--yellow); font-weight: 900; font-size: 1.1rem;
  box-shadow: 3px 3px 0 var(--ink); transition: transform .2s ease;
}
.modal__close:hover { transform: rotate(90deg); }
.modal__kicker { font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; }
.modal__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: .95; margin: .3rem 0 .9rem; }
.modal__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.chip { font-size: .78rem; font-weight: 700; background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: .32em .7em; }
.chip--day { background: var(--ink); color: var(--cream); }
/* Status-Chips im Modal: hoehere Spezifitaet als .chip */
.chip.s-fix     { background: var(--teal);   color: #fff; }
.chip.s-geplant { background: var(--blue);   color: #fff; }
.chip.s-idee    { background: var(--yellow); color: var(--ink); }
.modal__text { font-size: 1.05rem; font-weight: 500; margin-bottom: 1rem; }
.modal__bullets { display: grid; gap: .45rem; margin: 0 0 1.2rem; }
.modal__bullets li { position: relative; padding-left: 1.7rem; font-weight: 500; }
.modal__bullets li::before { content: "✊"; position: absolute; left: 0; top: 0; }
.modal__media {
  background: repeating-linear-gradient(45deg, #fff 0 12px, #f3e9cf 12px 24px);
  border: 2px dashed var(--ink); border-radius: 12px; padding: .9rem 1.05rem;
  font-weight: 600; margin-bottom: 1.2rem; font-size: .95rem;
}
.modal__cta { width: 100%; }

/* =====================================================================
   FOOTER
   ===================================================================== */
/* =====================================================================
   IMPRESSUM / DATENSCHUTZ
   ===================================================================== */
.legal { background: var(--cream-2); border-top: 3px solid var(--ink); padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.4rem); }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; color: var(--ink); margin-bottom: 1.6rem; }
.legal__block { margin-bottom: 1.6rem; }
.legal__block h2, .legal__block h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .3px; color: var(--red-deep); margin-bottom: .5rem; }
.legal__back { margin-top: 2.2rem; }
.legal__block p { color: var(--ink-soft); line-height: 1.65; margin-bottom: .7rem; }
.legal__block ul { list-style: none; margin: .3rem 0 .8rem; padding: 0; }
.legal__block li { color: var(--ink-soft); line-height: 1.6; padding-left: 1.3rem; position: relative; }
.legal__block li::before { content: "›"; position: absolute; left: .2rem; color: var(--red); font-weight: 900; }

.footer { background: var(--ink); color: var(--cream); padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.4rem) 1.5rem; border-top: 3px solid var(--ink); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(247,239,221,.25); }
.footer__logo { width: 200px; max-width: 60%; height: auto; border-radius: 10px; margin-bottom: 1rem; }
.footer__slogan { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; line-height: 1; color: var(--yellow); max-width: 16ch; }
.footer__navcol h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; margin-bottom: .7rem; color: var(--yellow); }
.footer__navcol a { display: block; padding: .3rem 0; font-weight: 600; opacity: .9; }
.footer__navcol a:hover { opacity: 1; color: var(--yellow); }
.footer__bottom { max-width: var(--maxw); margin: 1.4rem auto 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .85rem; opacity: .75; }
.footer__legal { color: var(--cream); font-weight: 700; text-decoration: underline; }
.footer__legal:hover { color: var(--yellow); }

/* =====================================================================
   KONFETTI
   ===================================================================== */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 999; overflow: hidden; }
.confetti i { position: absolute; top: -20px; width: 11px; height: 15px; opacity: .95; animation: fall linear forwards; }
@keyframes fall { to { transform: translateY(105vh) rotate(720deg); opacity: 1; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 900px) {
  .hero__badge { display: block; }
}
/* Desktop: Burger-Menü existiert nur mobil – hier immer verbergen */
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
  .nav__burger { display: none !important; }
}
@media (max-width: 860px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__bar { gap: .8rem; }
  .daybar { grid-template-columns: repeat(2, 1fr); }
  .counter__grid { grid-template-columns: 1fr; }
  .mitmachen__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .nav__brandtext { font-size: 1.25rem; }
  .nav__bar { gap: .6rem; padding: .6rem 1rem; }
  .hero__line--2 { margin-left: 0; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .block { grid-template-columns: 62px 1fr; gap: .6rem 1rem; }
  .block__time { font-size: .95rem; }
  .block__more { display: none; }
  .block__status { right: 10px; }
  .day__theme { margin-left: 0; width: 100%; }
  .day__head { gap: .4rem .8rem; }
  .stations { grid-template-columns: repeat(2, 1fr); }
  .modal__box { padding: 1.9rem 1.2rem 1.4rem; }
  .footer__top { grid-template-columns: 1fr; }
  .goal__head { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .goal__controls { flex-wrap: wrap; }
}

/* =====================================================================
   MOTION-PREFERENCES
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .ticker__track { animation: none; }
  .hero__badge svg { animation: none; }
}
