/* Futura Biennale 2027 — Webauftritt v1
   Stilistische Grundlage: Schöneweider KiezKarte-Landingpage
   Farbpalette aus dem CMYK-Ring-Logo der Futura: Magenta, Cyan, Gelb, Tiefdunkel */

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

:root {
  --ink: #1A1614;
  --ink-box: #2D2622;
  --ink-soft: #4A4540;
  --ink-mute: #8A8580;
  --rule: #E5DFD3;
  --cream: #FAF7F2;
  --cream-deep: #F2EDE2;
  --magenta: #E91E78;
  --magenta-deep: #B91560;
  --cyan: #00B5C7;
  --yellow: #F2CB30;
  --maxw: 1080px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* CMYK-Bar als visuelle Signatur — abgeleitet aus dem Futura-Logo */
.holo {
  height: 5px;
  background: linear-gradient(90deg,
    var(--magenta) 0%,
    var(--magenta) 25%,
    var(--cyan) 25%,
    var(--cyan) 55%,
    var(--yellow) 55%,
    var(--yellow) 80%,
    var(--ink) 80%,
    var(--ink) 100%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Topbar mit Logo und Navigation */
.topbar {
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.topbar-brand img.logo-futura {
  height: 44px;
  width: auto;
}
.topbar-brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.topbar-brand .wordmark .w1 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.topbar-brand .wordmark .w2 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}

nav.topnav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
nav.topnav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
nav.topnav a:hover { color: var(--magenta); }
nav.topnav a.active {
  color: var(--ink);
  border-bottom-color: var(--magenta);
}
nav.topnav a.cta {
  display: inline-block;
  padding: 9px 18px;
  background: var(--ink-box);
  color: #fff;
  border-radius: 6px;
  border-bottom: none;
  transition: background 0.15s;
}
nav.topnav a.cta:hover { background: var(--magenta); color: #fff; }

/* Eyebrow */
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--magenta);
  font-weight: 800;
}

/* HERO */
.hero {
  padding: 64px 0 48px;
  position: relative;
}
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(36px, 8vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .magenta { color: var(--magenta); }
.hero h1 .cyan { color: var(--cyan); }
.hero h1 .yellow { color: #C9A800; }
.hero .sub {
  font-size: clamp(16px, 2.4vw, 21px);
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero .sub b { color: var(--ink); font-weight: 700; }

.hero-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-meta b { color: var(--magenta); font-weight: 800; }

.hero-logo-mark {
  width: clamp(160px, 22vw, 240px);
  height: auto;
  margin: 24px 0 0 -8px;
}

/* Section */
section.section {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
section.section h2 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.0;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
section.section h2 .magenta { color: var(--magenta); }
section.section h2 .cyan { color: var(--cyan); }
section.section .lede {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 36px;
}
section.section .lede b { color: var(--ink); font-weight: 700; }
section.section .eyebrow { margin-bottom: 14px; }

section.section h3.subhead {
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  margin: 32px 0 12px;
  color: var(--ink);
}

section.section p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 720px;
}
section.section p b { color: var(--ink); font-weight: 700; }
section.section p:last-child { margin-bottom: 0; }

/* Phasen-Box (4 Phasen Format) */
.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (min-width: 760px) {
  .phases { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.phase {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--magenta);
  border-radius: 0 0 12px 12px;
  padding: 26px 26px 28px;
}
.phase:nth-child(2) { border-top-color: var(--cyan); }
.phase:nth-child(3) { border-top-color: var(--yellow); }
.phase:nth-child(4) { border-top-color: var(--ink); }

.phase .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.phase h4 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.phase .duration {
  font-size: 13px;
  color: var(--magenta);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.phase p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.phase p b { color: var(--ink); }

/* Stats */
.stats {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 18px;
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stats > div { padding: 0 24px; border-left: 1px solid var(--rule); }
  .stats > div:first-child { padding-left: 0; border-left: 0; }
}
.stat .num {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: var(--magenta);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat .num.cyan { color: var(--cyan); }
.stat .num.yellow { color: #C9A800; }
.stat .cap {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.stat .cap b { color: var(--ink); font-weight: 700; }

/* Story-Box / Vision-Box */
.story {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  margin-top: 8px;
}
.story .tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--magenta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  border-radius: 6px;
}
.story h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.18;
  margin: 6px 0 18px;
  color: var(--ink);
}
.story p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: none;
}
.story p:last-child { margin-bottom: 0; }
.story p b { color: var(--ink); font-weight: 700; }

/* Drei Werkstatt-Formate */
.formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 760px) {
  .formats { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.format {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--magenta);
  border-radius: 0 12px 12px 0;
  padding: 24px 24px 26px;
}
.format:nth-child(2) { border-left-color: var(--cyan); }
.format:nth-child(3) { border-left-color: var(--yellow); }
.format h4 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}
.format p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Rollen — Aufruf an Akteure */
.roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 760px) {
  .roles { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.role {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--magenta);
  border-radius: 0 0 12px 12px;
  padding: 26px 26px 28px;
}
.role:nth-child(2) { border-top-color: var(--cyan); }
.role:nth-child(3) { border-top-color: var(--yellow); }
.role:nth-child(4) { border-top-color: var(--ink); }

.role .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.role h4 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.role .ask {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.role .ask b { color: var(--ink); font-weight: 700; }
.role ul { list-style: none; }
.role ul li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.role ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--magenta);
  font-weight: 800;
}

/* CTA Section */
section.section.cta-section {
  background: var(--ink-box);
  color: #fff;
  border-top: none;
  padding: 56px 40px;
  border-radius: 16px;
  margin-top: 24px;
}
@media (max-width: 720px) {
  section.section.cta-section { padding: 44px 24px; }
}
section.section.cta-section h2 { color: #fff; }
section.section.cta-section p { color: rgba(255,255,255,0.78); }
section.section.cta-section p b { color: #fff; }
section.section.cta-section .lede { color: rgba(255,255,255,0.78); }
section.section.cta-section .lede b { color: #fff; }
section.section.cta-section .eyebrow { color: var(--yellow); }

.cta-box {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 720px) {
  .cta-box { flex-direction: row; align-items: center; }
}
.cta-box-text { flex: 1; }
.cta-box h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.cta-box p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 12px;
  max-width: none;
}
.cta-box p b { color: var(--ink); }
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--magenta);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--magenta-deep); transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }

/* Drei Fragen */
.questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}
@media (min-width: 760px) {
  .questions { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.qcard {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 22px;
}
.qcard .qnum {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--magenta);
  margin-bottom: 8px;
}
.qcard:nth-child(2) .qnum { color: var(--cyan); }
.qcard:nth-child(3) .qnum { color: #C9A800; }
.qcard h4 {
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

/* Kontakt */
.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 18px;
}
@media (min-width: 720px) {
  .contacts { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.contact {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
}
.contact .role-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact h4 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.contact .org {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.contact a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
}
.contact a:hover { color: var(--magenta); text-decoration: underline; }

/* Rückblick — Highlights / Galerie */
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (min-width: 760px) {
  .highlights { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.highlight {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 22px 24px;
}
.highlight .date {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}
.highlight:nth-child(2) .date { color: var(--cyan); }
.highlight:nth-child(3) .date { color: #C9A800; }
.highlight:nth-child(4) .date { color: var(--ink); }
.highlight:nth-child(5) .date { color: var(--magenta); }
.highlight:nth-child(6) .date { color: var(--cyan); }
.highlight h4 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}
.highlight p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0 32px;
  margin-top: 24px;
}
.footer-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .footer-row { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logos img.logo-futura { height: 48px; }
.footer-logos img.logo-is { height: 40px; }
.footer-info {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  word-spacing: 0.1em;
  line-height: 1.6;
}
.footer-info b { color: var(--ink-soft); font-weight: 700; }
.footer-slogan {
  color: var(--magenta);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 280px;
}
.footer-legal {
  border-top: 1px solid var(--rule);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
}
.footer-legal a {
  color: var(--ink-soft);
  text-decoration: none;
  margin: 0 12px;
}
.footer-legal a:hover { color: var(--magenta); text-decoration: underline; }

/* Quiz-Hinweis — schmaler Inline-Verweis für die Startseite */
.quiz-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid #6366f1;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.quiz-hint .qh-emoji {
  font-size: 22px;
  flex-shrink: 0;
}
.quiz-hint .qh-text { flex: 1; min-width: 200px; }
.quiz-hint .qh-text b { color: var(--ink); font-weight: 700; }
.quiz-hint a {
  color: #4338ca;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.quiz-hint a:hover { text-decoration: underline; }

/* Zukunftsquiz — Typen-Galerie */
.types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (min-width: 600px) {
  .types { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .types { grid-template-columns: repeat(3, 1fr); }
}
.type {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--magenta);
  border-radius: 0 0 12px 12px;
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
}
.type:nth-child(2) { border-top-color: var(--cyan); }
.type:nth-child(3) { border-top-color: var(--yellow); }
.type:nth-child(4) { border-top-color: #6366f1; }
.type:nth-child(5) { border-top-color: var(--magenta); }
.type:nth-child(6) { border-top-color: var(--cyan); }
.type:nth-child(7) { border-top-color: var(--yellow); }
.type .emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
.type h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--ink);
}
.type .subtitle {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.type p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.type .traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.type .trait {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Quiz CTA mit QR-Code */
.quiz-cta {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .quiz-cta { flex-direction: row; text-align: left; align-items: center; }
}
.quiz-cta .qr-block {
  flex-shrink: 0;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
}
.quiz-cta .qr-block img {
  width: 140px;
  height: 140px;
  display: block;
}
.quiz-cta-text { flex: 1; }
.quiz-cta .eyebrow-light {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a5b4fc;
  font-weight: 800;
  margin-bottom: 12px;
}
.quiz-cta h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.quiz-cta p {
  font-size: 15px;
  line-height: 1.55;
  color: #c7d2fe;
  margin-bottom: 16px;
  max-width: none;
}
.quiz-cta p b { color: #fff; }
.quiz-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #312e81;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.15s, box-shadow 0.15s;
}
.quiz-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

/* Quiz-Teaser-Box — kleinere Variante für Index/Rückblick */
.quiz-teaser {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px 32px 28px;
  margin-top: 24px;
}
.quiz-teaser .eyebrow-light {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a5b4fc;
  font-weight: 800;
  margin-bottom: 10px;
}
.quiz-teaser h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.quiz-teaser p {
  font-size: 15px;
  line-height: 1.55;
  color: #c7d2fe;
  margin-bottom: 18px;
  max-width: 640px;
}
.quiz-teaser p b { color: #fff; }
.quiz-teaser .quiz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.quiz-teaser .quiz-meta span {
  font-size: 13px;
  color: #a5b4fc;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Legal-Pages */
.legal {
  padding: 56px 0;
}
.legal h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.legal h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 28px 0 10px;
}
.legal p, .legal li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 720px;
}
.legal a { color: var(--magenta); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
