:root {
  --red: #81040a;
  --red-dark: #4d0206;
  --pink: #ef1957;
  --cream: #f2f2f2;
  --ink: #130e10;
  --white: #fff;
  --muted: #5d5356;
  --line: rgba(19, 14, 16, .14);
  --max: 1240px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 138px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 300;
}
img, svg { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.header-inner > *,
.intro-inner > *,
.story > *,
.story-content,
.intro-aside,
.fact-card,
.fact-card > *,
.topic-card > *,
.myth-teaser-shell > *,
.footer-shell > * { min-width: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(129, 4, 10, .98);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.campaign-logo {
  flex: 0 0 auto;
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -.04em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 3px;
  color: var(--white);
  background: rgba(255,255,255,.14);
  border-radius: 4px;
}
.language-switch a {
  min-width: 34px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.language-switch a.is-active { color: var(--red); background: var(--white); }
.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.header-cta,
.button {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.header-cta { color: var(--red); background: var(--white); }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.button:hover { background: var(--pink); }
.button.light { color: var(--red); background: var(--white); }

.campaign-hero {
  position: relative;
  overflow: hidden;
  background: var(--red-dark);
}
.campaign-hero img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}
.campaign-intro {
  color: var(--ink);
  background: var(--cream);
}
.intro-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.campaign-title {
  margin: 0;
  font-size: clamp(57px, 9vw, 130px);
  line-height: .8;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.campaign-title span,
.campaign-title strong { display: block; }
.campaign-title span {
  color: #81040a;
  font-weight: 350;
  font-kerning: none;
  letter-spacing: .01em;
}
.campaign-title strong { color: var(--red); font-weight: 850; }
.intro-tagline {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.25;
  font-weight: 550;
}
.intro-aside {
  padding: 26px 0 4px 28px;
  border-left: 1px solid rgba(129, 4, 10, .3);
}
.intro-aside p { margin: 0; font-size: 16px; line-height: 1.6; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.hero-fact {
  min-width: 0;
  height: 100%;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(129, 4, 10, .16);
  box-shadow: 0 12px 30px rgba(77, 2, 6, .06);
}
.hero-fact b { display: block; color: var(--red); font-size: 24px; }
.hero-fact span {
  display: block;
  min-width: 0;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.35;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.topic-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.topic-nav-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
}
.topic-nav a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.topic-nav a:hover,
.topic-nav a.is-active { color: var(--white); background: var(--red); }

.stories { overflow: hidden; }
.story {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(460px, 1.08fr);
  scroll-margin-top: 134px;
  background: var(--cream);
}
.story:nth-child(even) { background: var(--white); }
.story:nth-child(even) .story-media { order: 2; }
.story-media { position: relative; min-height: 540px; overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(129,4,10,.07), transparent 58%);
}
.story-number {
  display: none;
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  color: var(--white);
  font-size: 64px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.07em;
  text-shadow: 0 3px 20px rgba(0,0,0,.3);
}
.story:nth-child(even) .story-number { right: 28px; left: auto; }
.story-content {
  padding: clamp(42px, 5.5vw, 76px) clamp(30px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.story h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: .95;
  letter-spacing: -.052em;
}
.story-lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
}
.fact-grid {
  margin: 30px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.fact-card {
  min-height: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 10px;
  align-content: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(29,9,12,.12);
}
.fact-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 0;
}
.fact-icon {
  width: 36px;
  height: 36px;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
}
.fact-icon img { width: 32px; height: 32px; object-fit: contain; }
.fact-card > div { display: contents; }
.fact-card b {
  grid-column: 2;
  align-self: center;
  display: block;
  font-size: 18px;
  line-height: 1.18;
}
.fact-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}
.source-link {
  grid-column: 1 / -1;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 2px;
  padding-bottom: 3px;
  color: var(--red);
  border-bottom: 2px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}
.source-link::after {
  content: "↗";
  margin-left: 5px;
  font-size: 1em;
  font-weight: 900;
  line-height: 1;
}
.stat-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 10px;
}
.stat-card > div { display: contents; }
.stat-value {
  width: 36px;
  height: 36px;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}
.story-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story-result b {
  width: 64px;
  height: 64px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: start;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.story-result p { margin: 3px 0 0; line-height: 1.55; }

.myth-teaser,
.closing { color: var(--white); background: var(--red); }
.closing-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 125px) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
}
.closing h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(44px, 7vw, 90px);
  line-height: .94;
  letter-spacing: -.055em;
}
.closing-copy { max-width: 900px; }
.closing-kicker {
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.closing-text {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}
.myth-teaser {
  padding: 120px 0;
  color: var(--white);
  background: var(--red-dark) url("../images/grosses-g.jpg") center / cover no-repeat;
  overflow: hidden;
}
.myth-teaser-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.myth-teaser .section-kicker,
.myth-teaser .section-lead { color: rgba(255,255,255,.82); }
.myth-teaser .section-kicker { margin-bottom: 14px; }
.myth-teaser .section-title {
  max-width: 780px;
  font-size: 54px;
  line-height: .98;
  letter-spacing: 0;
}
.myth-teaser .section-lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.45;
}
.myth-teaser-button {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 4px;
  font-size: 15px;
  white-space: nowrap;
}
.button-arrow { width: 20px; height: 20px; flex: 0 0 20px; }
/* Startseite */
.home-hero {
  position: relative;
  min-height: min(790px, calc(100vh - var(--header-h)));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--red-dark);
}
.home-hero-media { position: absolute; inset: 0; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,14,16,.82), rgba(19,14,16,.08) 70%), linear-gradient(transparent 55%, rgba(19,14,16,.7));
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 70px 0;
}
.home-hero h1 {
  margin: 0;
  font-size: clamp(75px, 13vw, 180px);
  line-height: .76;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.home-hero h1 span,
.home-hero h1 strong { display: block; }
.home-hero h1 span { font-weight: 350; color: rgba(255,255,255,.62); }
.home-hero h1 strong { font-weight: 900; }
.home-hero p { max-width: 660px; margin: 30px 0; font-size: clamp(21px, 2.5vw, 32px); font-weight: 550; }
.topic-showcase {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 140px) 0;
}
.section-title {
  margin: 0;
  max-width: 950px;
  font-size: clamp(45px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}
.section-lead { max-width: 720px; margin: 24px 0 0; font-size: 19px; line-height: 1.55; }
.topic-cards { margin-top: 54px; display: grid; gap: 0; overflow: hidden; }
.topic-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--white);
  background: var(--red);
  overflow: hidden;
}
.topic-card + .topic-card { margin-top: 0; }
.topic-card--image-right img { order: 2; }
.topic-card--image-left img { order: 0; }
.topic-card-copy { background: var(--red); }
.topic-card img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}
.topic-card-copy { padding: clamp(38px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.topic-card h3 { margin: 0; font-size: clamp(39px, 5vw, 70px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.topic-card h3 span, .topic-card h3 strong { display: block; }
.topic-card h3 span { opacity: .55; font-weight: 350; }
.topic-card p { max-width: 600px; margin: 22px 0 28px; font-size: 17px; line-height: 1.5; }
.topic-card .button { align-self: flex-start; color: var(--red); background: var(--white); }
.myths-section {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 10vw, 140px) 0;
  color: var(--white);
  background: var(--red-dark) url("../images/grosses-g.jpg") center / cover no-repeat;
}
.myths-section .section-kicker,
.myths-section .section-lead { color: rgba(255,255,255,.82); }
.section-shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.myth-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.myth-card {
  display: block;
  width: 100%;
  min-height: 380px;
  padding: 0;
  text-align: left;
  color: inherit;
  background: transparent;
  border: 0;
  perspective: 1100px;
  cursor: pointer;
}
.myth-card .flip-inner { position: relative; display: block; width: 100%; min-height: 380px; transform-style: preserve-3d; transition: transform .55s ease; }
.myth-card:hover .flip-inner,
.myth-card.is-flipped .flip-inner,
.myth-card:focus-visible .flip-inner { transform: rotateY(180deg); }
.myth-card .flip-face {
  position: absolute;
  inset: 0;
  min-height: 380px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  backface-visibility: hidden;
  overflow: hidden;
}
.myth-card .flip-front { color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.myth-card .flip-back { color: var(--red-dark); background: var(--white); transform: rotateY(180deg); text-transform: uppercase; }
.myth-card .flip-kicker { display: inline-flex; align-self: flex-start; padding: 6px 9px; color: var(--red); background: #f2f2f2; border-radius: 4px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.myth-card .flip-back .flip-kicker { color: var(--red-dark); background: var(--white); }
.myth-card .flip-face > span:last-child { display: block; width: 100%; }
.myth-card strong { display: block; font-size: 24px; line-height: 1.05; font-weight: 800; text-transform: uppercase; }
.myth-card p { margin: 16px 0 0; font-size: 15px; line-height: 1.42; text-transform: none; }
.myth-card:focus-visible { outline: 3px solid rgba(255,255,255,.7); outline-offset: 4px; border-radius: 8px; }

.site-footer { padding: 54px 0 42px; color: var(--white); background: var(--red-dark); }
.footer-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(320px,.56fr);
  gap: 34px;
  align-items: start;
}
.footer-brand { display: grid; gap: 14px; max-width: 620px; }
.footer-logo-image { width: 136px; height: auto; color: var(--white); filter: brightness(0) invert(1); }
.footer-contact-copy h2 { margin: 0; max-width: 620px; font-size: 44px; line-height: .94; text-transform: uppercase; }
.footer-contact-copy p { margin: 18px 0 0; max-width: 560px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.42; }
.footer-cta-card { width: min(100%,440px); justify-self: end; align-self: center; padding: 28px; color: var(--ink); background: var(--white); border-radius: 8px; }
.footer-cta-card > b { display: block; color: var(--red); font-size: 13px; text-transform: uppercase; }
.footer-cta-card > p { margin: 12px 0 24px; color: var(--muted); font-size: 17px; line-height: 1.42; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button.dark { background: #650308; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.18);
}
.copyright { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.4; }
.footer-legal-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 18px; font-size: 13px; line-height: 1.4; }
.footer-legal-links a { color: rgba(255,255,255,.76); }
.footer-legal-links a:hover { color: var(--white); }

@media (max-width: 980px) {
  .intro-inner,
  .story { grid-template-columns: 1fr; }
  .story { display: block; }
  .story-media { min-height: 50vw; }
  .story:nth-child(even) .story-media { order: initial; }
  .story-number,
  .story:nth-child(even) .story-number { right: auto; left: 28px; }
  .topic-card img { min-height: 310px; }
  .hero-facts { grid-template-columns: 1fr; }
  .myth-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .campaign-title,
  .campaign-title strong,
  .story h2,
  .topic-card h3,
  .section-title,
  .intro-tagline,
  .fact-card b,
  .myth-card strong,
  .footer-contact-copy h2 {
    max-width: 100%;
    hyphens: auto;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 720px) {
  :root { --header-h: 108px; }
  .header-inner { min-height: var(--header-h); gap: 10px 12px; flex-wrap: wrap; padding: 10px 0; }
  .main-nav { order: 3; flex-basis: 100%; gap: 18px; margin-right: 0; overflow-x: auto; }
  .main-nav a { font-size: 10px; }
  .header-cta { display: none; }
  .nav-actions { margin-left: auto; }
  .campaign-logo { font-size: 25px; }
  .campaign-hero img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
  .campaign-title { font-size: clamp(44px, 14vw, 64px); line-height: .86; letter-spacing: -.055em; }
  .intro-inner { grid-template-columns: 1fr; padding-block: 52px; }
  .intro-aside { padding: 24px 0 0; border-top: 1px solid rgba(129, 4, 10, .3); border-left: 0; }
  .fact-grid, .myth-grid { grid-template-columns: 1fr; }
  .fact-card:last-child:nth-child(odd) { grid-column: auto; }
  .story-content { padding: 42px 20px 52px; }
  .story-media { min-height: 64vw; }
  .story-result { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .myth-teaser { padding: 120px 0; }
  .myth-teaser-shell { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .myth-teaser .section-title { max-width: 100%; font-size: 38px; hyphens: auto; overflow-wrap: anywhere; }
  .myth-teaser .section-lead { max-width: 100%; }
  .myth-teaser-button { width: fit-content; max-width: 100%; white-space: normal; }
  .button,
  .header-cta,
  .footer-actions a { overflow-wrap: anywhere; hyphens: auto; text-align: center; }
  .home-hero { min-height: 650px; }
  .home-hero-inner { padding-bottom: 50px; }
  .topic-card { grid-template-columns: 1fr; }
  .topic-card img,
  .topic-card--image-right img,
  .topic-card--image-left img { order: 0; }
  .topic-card-copy { order: 1; }
  .topic-showcase, .section-shell, .footer-shell { width: min(calc(100% - 32px), var(--max)); }
  .topic-card img {
    width: 100%;
    height: clamp(240px, 72vw, 420px);
    min-height: 240px;
    object-fit: cover;
    object-position: center;
  }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-cta-card { justify-self: start; }
  .footer-legal-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
