/* =========================================================
   YOLD — Bright, photo-driven, emotional
   Base: white & light · Photo/video heroes · The four YOLD colors
   (warm blue, pink/magenta, yellow, friendly green) as a cohesive
   accent system. Deep green only as an occasional dark contrast.
   Type: Archivo (display grotesk) + Inter (sans)
   ========================================================= */

/* Native cross-page transitions (Chromium: soft crossfade between pages;
   other browsers ignore this and keep their normal hard navigation). */
@view-transition {
  navigation: auto;
}

:root {
  /* Neutrals */
  --paper: #ffffff;        /* white base */
  --paper-2: #f6f7f9;      /* barely-there gray for muted sections */
  --card: #ffffff;         /* card surface */
  --ink: #1e2126;          /* near-black text (neutral, not green) */
  --ink-soft: #5b626b;     /* muted gray */
  --line: #e7e9ee;         /* hairline */
  --line-green: rgba(255,255,255,0.18);

  /* The four YOLD brand colors */
  --blue: #0c83fa;         /* warm blue */
  --pink: #ff3fa4;         /* pink / magenta — primary accent */
  --yellow: #feb01b;       /* yellow */
  --green: #63c428;        /* friendly green */
  --green-deep: #1f3d30;   /* deep green — occasional dark contrast + footer */

  /* Readable ink versions on white */
  --blue-ink: #0a6fd1;
  --pink-ink: #d62e86;
  --green-ink: #3f8f16;
  --yellow-ink: #9a6b00;

  /* Whisper tints — colors appear only as faint details */
  --tint-pink: #fdf5f9;
  --tint-blue: #f4f8fd;
  --tint-yellow: #fdf9f0;
  --tint-green: #f5faf1;

  /* Cinematic dark stage (near-black with a green undertone) */
  --stage: #101513;

  /* Back-compat aliases (old inline styles referencing these still resolve) */
  --green-spark: var(--green);
  --brand-navy: var(--green-deep);
  --brand-blue: var(--pink-ink);
  --brand-pink: var(--pink);
  --muted: var(--paper-2);
  --muted-foreground: var(--ink-soft);
  --border: var(--line);
  --foreground: var(--ink);

  /* Type — warm literary serif for emotion, clean sans for UI */
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --container-width: 1180px;
  --radius: 16px;          /* cards, inputs — soft & friendly */
  --radius-lg: 26px;       /* big image blocks */
  --radius-pill: 999px;    /* buttons, tags, toggles */
  --shadow-soft: 0 30px 70px -34px rgba(28,40,32,0.28);
  --shadow-card: 0 18px 44px -26px rgba(28,40,32,0.20);
  --shadow-hover: 0 26px 60px -28px rgba(28,40,32,0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}


/* A single living line follows the story through the page. */
.life-thread {
  position: fixed;
  z-index: 90;
  left: 18px;
  top: 0;
  width: 18px;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.life-thread.is-visible { opacity: 0.8; }
.life-thread svg { width: 100%; height: 100%; overflow: visible; }
.life-thread path { fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.life-thread-base { stroke: rgba(255,255,255,0.2); stroke-width: 1; }
.life-thread-progress {
  stroke: #fff;
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

/* Headings — Archivo, grotesk, tight & confident */
h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
h1 { font-size: clamp(2.7rem, 5.8vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 10px; }

p { margin: 0 0 18px; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.center { text-align: center; }

/* Kicker / eyebrow — warm serif italic label (human, not a UI badge) */
.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--pink-ink);
  margin-bottom: 14px;
  display: block;
}
.eyebrow.center { text-align: center; }
.eyebrow-light,
.section-dark .eyebrow { color: var(--yellow); background: none; }

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}
.lead.center { margin-left: auto; margin-right: auto; }

.tagline {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-top: 8px;
}

/* Buttons — soft pills, friendly & modern */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent { background: var(--pink); color: #fff; box-shadow: 0 12px 26px -14px rgba(255,63,164,0.8); }
.btn-accent:hover { background: var(--pink-ink); box-shadow: 0 16px 30px -14px rgba(255,63,164,0.7); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -16px rgba(12,131,250,0.8); }
.btn-primary:hover { background: var(--blue-ink); }

/* Logo green (sampled from the D in the YOLD logo: #5fc530) */
.btn-green {
  background: linear-gradient(135deg, #6ccd3c 0%, #58bd29 100%);
  color: #14290f;
  box-shadow: 0 12px 26px -14px rgba(95, 197, 48, 0.65);
}
.btn-green:hover {
  background: linear-gradient(135deg, #60bf31 0%, #4dad20 100%);
  color: #14290f;
  box-shadow: 0 16px 30px -14px rgba(80, 170, 38, 0.6);
}

.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-lg { padding: 17px 36px; font-size: 1rem; }
/* Impact-driven arrow on large CTAs */
.btn-lg::after { content: "\2192"; font-size: 1.1em; transition: transform 0.18s ease; }
.btn-lg:hover::after { transform: translateX(3px); }

/* Text link with arrow + pink underline (tertiary) */
.news-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 14px;
}
.news-link:hover { color: var(--pink-ink); }

/* Announcement bar — slim cinematic frame */
.announce-bar {
  /* Tiefes Grün wie im Footer — rahmt die Seite oben und unten gleich ein */
  background: var(--green-deep);
  color: rgba(255,255,255,0.86);
  text-align: center;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo img { height: 46px; width: auto; object-fit: contain; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover { color: var(--pink-ink); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--pink);
}
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-actions .btn { position: relative; isolation: isolate; flex-shrink: 0; white-space: nowrap; overflow: visible; }

/* Keep anchored chapters clear of the fixed navigation. */
#perspektiven,
#beitrag,
#konzept,
#wirkung,
#mitmachen { scroll-margin-top: 118px; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.lang-switch button {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 7px 11px;
  background: transparent;
  color: var(--ink-soft);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch button.active { background: var(--ink); color: var(--paper); }
.lang-switch button:not(.active):hover { color: var(--ink); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* Home header starts inside the film and becomes a compact glass object. */
.home-page .site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  transition: top 0.45s cubic-bezier(.2,.8,.2,1);
}
.home-page .header-inner {
  transition: height 0.45s cubic-bezier(.2,.8,.2,1), padding 0.45s cubic-bezier(.2,.8,.2,1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.home-page .site-header:not(.is-compact) .main-nav a { color: rgba(255,255,255,0.88); }
.home-page .site-header:not(.is-compact) .main-nav a:hover,
.home-page .site-header:not(.is-compact) .main-nav a.active { color: #fff; }
.home-page .site-header:not(.is-compact) .lang-switch { border-color: rgba(255,255,255,0.35); }
.home-page .site-header:not(.is-compact) .lang-switch button { color: rgba(255,255,255,0.78); }
.home-page .site-header:not(.is-compact) .lang-switch button.active { background: #fff; color: var(--ink); }
.home-page .site-header:not(.is-compact) .nav-toggle span { background: #fff; }
.home-page .site-header.is-compact { top: 12px; }
.home-page .site-header.is-compact .header-inner {
  height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(30,33,38,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 50px -28px rgba(18,25,22,0.48);
  backdrop-filter: none;
}
.home-page .site-header.is-compact .logo img { height: 34px; }

/* Compact story chapters appear after the opening frame. */
.story-nav {
  position: fixed;
  z-index: 99;
  top: 50%;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(30,33,38,0.09);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 42px -28px rgba(18,25,22,0.52);
  backdrop-filter: blur(16px) saturate(1.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, -50%);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.story-nav.is-visible { opacity: 1; pointer-events: auto; transform: translate(0, -50%); }
.story-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 42px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.25s ease;
}
.story-nav a span { min-width: 18px; color: var(--pink-ink); font-variant-numeric: tabular-nums; }
.story-nav a em {
  position: absolute;
  right: 48px;
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-style: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity .2s ease, transform .2s ease;
}
.story-nav a:hover em,
.story-nav a:focus-visible em { opacity: 1; transform: translateX(0); }
.story-nav a.is-active { color: #fff; background: var(--ink); }
.story-nav a.is-active span { color: var(--yellow); }

/* Sections */
.section { padding: 100px 0; }
.section-muted { background: var(--paper-2); }

/* Cinematic dark stage — the occasional contrast section */
.section-dark { background: var(--stage); color: var(--paper); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(255,255,255,0.82); }
.section-dark .eyebrow { color: var(--yellow); background: rgba(254,176,27,0.16); }
.section-dark .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--paper); }
.section-dark .btn-outline:hover { background: var(--paper); color: var(--green-deep); }

/* Photo / video hero — full-bleed, emotional, text overlaid */
.hero-story {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-story .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-story .hero-bg img,
.hero-story .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-story .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.30) 0%, rgba(14,15,18,0.38) 45%, rgba(14,15,18,0.92) 100%),
    linear-gradient(90deg, rgba(14,15,18,0.55) 0%, rgba(14,15,18,0.08) 62%),
    radial-gradient(120% 90% at 50% 50%, rgba(14,15,18,0) 55%, rgba(14,15,18,0.45) 100%);
}
.hero-story { min-height: 100vh; }
.hero-media { will-change: transform; transform: scale(1.12); }
.hero-story .hero-bg { will-change: transform; }
.hero-story .hero-inner { will-change: transform, opacity; }

/* Cursor spotlight — soft light following the pointer (award touch) */
.hero-spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: soft-light; opacity: 0; transition: opacity 0.4s ease;
  background: radial-gradient(circle 300px at var(--mx, 50%) var(--my, 40%),
              rgba(255,255,255,0.5), rgba(255,255,255,0) 68%);
}
.hero-story:hover .hero-spot { opacity: 1; }

/* Fine film grain for warmth/depth */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero-story .hero-inner { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 96px; }
.hero-story .overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.76rem;
  color: #fff;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  opacity: 0;
}

/* Award badge — Social Impact Award finalist, sits on its own line above the overline */
.achievement-banner {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 9px 20px 9px 16px;
  border-radius: 12px;
  border-left: 4px solid #ee3f42;
  box-shadow: 0 16px 34px -18px rgba(15,20,18,0.6);
  margin: 0 0 22px;
  text-decoration: none;
  opacity: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.achievement-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(15,20,18,0.65);
}
.achievement-banner-logo { height: 26px; width: auto; display: block; flex-shrink: 0; }
.achievement-banner-copy {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--ink);
}
.achievement-banner-cta {
  color: #ee3f42;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.achievement-banner:hover .achievement-banner-cta { transform: translateX(3px); }

/* Kinetic headline */
.hero-headline {
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: none;
  margin: 0 0 24px;
}
.hero-line { display: block; white-space: nowrap; }
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  filter: blur(6px);
}
.hero-headline.is-in .hero-word {
  animation: heroWordIn 0.85s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-headline.is-in ~ * , .hero-story.is-in .overline, .hero-story.is-in .achievement-banner,
.hero-story.is-in .hero-lede, .hero-story.is-in .hero-actions { animation: heroFadeUp 0.9s 0.5s cubic-bezier(.2,.8,.2,1) both; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Cycling key word with self-drawing underline */
.cycle-wrap { position: relative; display: inline-block; color: var(--yellow); font-style: italic; }
.cycle-word { display: inline-block; transition: opacity 0.35s ease, transform 0.35s ease; }
.cycle-word.out { opacity: 0; transform: translateY(-0.25em); }
.cycle-uline {
  position: absolute; left: -2%; bottom: -0.16em; width: 104%; height: 0.42em;
  overflow: visible; pointer-events: none;
}
.cycle-uline path {
  fill: none; stroke: var(--pink); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: 240; stroke-dashoffset: 240;
}
.cycle-uline.draw path { animation: drawLine 0.7s 0.15s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero-story .hero-lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.94);
  max-width: 46ch;
}
.hero-story .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill); display: flex; justify-content: center; padding-top: 7px;
}
.scroll-dot { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* Hand-drawn underline accent for a key word (light backgrounds) */
.uline {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='22' viewBox='0 0 200 22'%3E%3Cpath d='M5 14 C 45 6, 95 19, 145 11 S 192 9, 196 15' stroke='%23ff3fa4' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 0.5em;
  padding-bottom: 0.1em;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .hero-word { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  .cycle-uline path { stroke-dashoffset: 0 !important; animation: none !important; }
  .scroll-dot { animation: none; }
  .hero-story.is-in .overline, .hero-story.is-in .achievement-banner, .hero-story.is-in .hero-lede, .hero-story.is-in .hero-actions { animation: none; opacity: 1; }
  .hero-story .overline, .hero-story .achievement-banner { opacity: 1; }
  .page-hero-video .ph-media,
  .page-hero-video::after { animation: none; }
}

/* Cinematic subpage video hero */
.page-hero-video {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero-video .ph-media {
  position: absolute; inset: 0; z-index: 0;
  clip-path: inset(0 0 0 0);
  animation: subHeroReveal 1.15s cubic-bezier(.65,0,.15,1) both;
}
.page-hero-video .ph-media video,
.page-hero-video .ph-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.055);
  will-change: transform;
}
.page-hero-video .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.32) 0%, rgba(14,15,18,0.38) 45%, rgba(14,15,18,0.9) 100%),
    radial-gradient(120% 90% at 50% 50%, rgba(14,15,18,0) 55%, rgba(14,15,18,0.4) 100%);
}
.page-hero-video .container { position: relative; z-index: 2; padding: 140px 28px 68px; will-change: transform, opacity; }
.page-hero-video h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5.8vw, 4.6rem);
  line-height: 1.06;
  max-width: 18ch;
  margin-bottom: 18px;
}
.page-hero-video .eyebrow { color: var(--yellow); }
.page-hero-video .lead { color: rgba(255,255,255,0.92); margin-left: 0; }
.page-hero-video.center h1, .page-hero-video.center .lead { margin-left: auto; margin-right: auto; }
.page-hero-video::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue));
  transform-origin: left;
  animation: subHeroLine 1.1s 0.35s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes subHeroReveal { from { clip-path: inset(0 0 100% 0); } }
@keyframes subHeroLine { from { transform: scaleX(0); } }

/* Video card — rounded ambient clip for splits & cards */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0e0f12;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.split .video-card { height: 100%; max-height: 520px; aspect-ratio: 4 / 3; }
.split .video-card.portrait { aspect-ratio: 3 / 4; max-height: 560px; }
.event-card .video-card {
  border-radius: calc(var(--radius) - 4px);
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  box-shadow: none;
}
.concept-block .video-card { aspect-ratio: 16 / 11; }
.page-hero-video .stat-label { color: rgba(255,255,255,0.75); }

/* CTA banner video background */
.cta-bg video { width: 100%; height: 100%; object-fit: cover; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
}
.hero-cinematic .container { position: relative; z-index: 2; padding-top: 68px; padding-bottom: 80px; }
.hero-cinematic .overline {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--paper);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-cinematic .overline::before { content: ""; width: 30px; height: 1.5px; background: var(--pink); }
.hero-cinematic .hero-lede {
  font-size: 1.22rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
}
.hero-cinematic .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-cinematic .btn-outline { border-color: rgba(255,255,255,0.55); color: var(--paper); }
.hero-cinematic .btn-outline:hover { background: var(--paper); color: var(--green); }
.hero-emotional .hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}
.hero-emotional .hero-lede {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 40ch;
}
.hero-emotional .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Editorial opening story — a calm, full-width counterpoint to the hero */
.opening-story {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 11vw, 180px) 0 clamp(120px, 12vw, 190px);
  background: var(--paper);
}
.opening-story-heading {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 32px;
  align-items: start;
}
.opening-story-heading .eyebrow { margin-top: 0.8em; }
.opening-story-heading h2 {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(3.8rem, 7.4vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.opening-story-figure {
  margin: clamp(64px, 8vw, 112px) 0 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s cubic-bezier(.65,0,.15,1);
}
.opening-story.is-visible .opening-story-figure { clip-path: inset(0); }
.opening-story-media {
  position: relative;
  overflow: hidden;
  background: var(--stage);
}
.opening-story-media img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.055);
  transform-origin: center;
  transition: transform 1.5s cubic-bezier(.2,.8,.2,1);
}
.opening-story.is-visible .opening-story-media img { transform: scale(1); }
.opening-story-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0 0;
  border-top: 1px solid rgba(30,33,38,0.28);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.opening-story-bottom {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: 28px;
  border-top: 1px solid rgba(30,33,38,0.24);
}
.opening-story-statement {
  max-width: 27ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.opening-story-statement strong { color: var(--pink-ink); font-weight: 500; }
.opening-story-copy { max-width: 42ch; }
.opening-story-copy p { margin-top: 0; color: var(--ink-soft); font-size: 1.02rem; }
.opening-story-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 650;
}
.opening-story-link::after {
  content: "↗";
  color: var(--pink-ink);
  font-size: 1.15em;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.opening-story-link:hover::after { transform: translate(4px, -4px); }

/* Voices — one strong quote at a time, controlled by the visitor */
.voices-section {
  overflow: hidden;
  padding-top: clamp(168px, 14vw, 190px);
}
.voices-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.voices-heading .eyebrow { margin: 0; }
.voices-controls { display: flex; gap: 10px; }
.voices-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}
.voices-controls button:hover { color: var(--yellow); border-color: var(--yellow); transform: scale(1.06); }
.voices-stage { position: relative; min-height: clamp(500px, 41vw, 580px); }
.voice-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 10fr;
  align-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(.2,.8,.2,1), visibility 0.55s;
}
.voice-slide.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.voice-index {
  padding-top: 0.6em;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.voice-slide blockquote {
  max-width: 23ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4vw, 4.3rem);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.voice-attribution { grid-column: 2; display: flex; gap: 14px 24px; align-items: baseline; flex-wrap: wrap; }
.voice-attribution strong { color: #fff; }
.voice-attribution span { color: rgba(255,255,255,0.58); font-size: 0.85rem; }
.voices-progress { height: 2px; background: rgba(255,255,255,0.14); overflow: hidden; }
.voices-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  transform: scaleX(0.3333);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

/* Media and partner marquees — separate proof systems */
.logo-marquee {
  overflow: hidden;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.logo-marquee-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logo-marquee-link { transition: color .2s ease, transform .25s ease; }
.logo-marquee-link:hover { color: var(--pink-ink); transform: translateX(4px); }
.logo-marquee-heading span:last-child { text-align: right; }
.logo-marquee-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logoMarquee 38s linear infinite;
}
.logo-marquee-partners .logo-marquee-track { animation-duration: 44s; animation-direction: reverse; }
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  padding-right: clamp(38px, 5vw, 76px);
}
.logo-marquee-item {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(150px, 14vw, 210px);
  height: 70px;
}
.logo-marquee-item img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1) contrast(0.92);
  mix-blend-mode: multiply;
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.logo-marquee-item--faz { flex-basis: clamp(175px, 15vw, 210px); }
.logo-marquee-item--faz img { max-width: 190px; }
.logo-marquee-item--journal { flex-basis: 110px; }
.logo-marquee-item--journal img { max-height: 64px; }
.logo-marquee-item--frankfurt-blick { flex-basis: clamp(170px, 15vw, 205px); }
.logo-marquee-item--frankfurt-blick img { max-width: 160px; max-height: 26px; }
.logo-marquee-item--radio img { max-width: 138px; }
.logo-marquee-item--fnp img { max-width: 158px; }
.logo-marquee-item--idw { flex-basis: 138px; }
.logo-marquee-item--idw img { max-width: 112px; }
.logo-marquee-item:hover img { opacity: 1; filter: none; }
@keyframes logoMarquee { to { transform: translateX(-50%); } }
.partner-network-heading .split-head .w { overflow: visible; }
@keyframes partnerLineFlow { to { stroke-dashoffset: -170; } }

/* News / Aktuelles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.news-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.news-media {
  width: calc(100% + 64px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  margin: -32px -32px 26px;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}
.news-card:hover .news-media { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.news-card h3 { font-size: 1.3rem; }
.news-card p { font-size: 0.98rem; flex-grow: 1; }

/* Tags — soft pills (friendly) */
.tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.tag-update { color: var(--pink-ink); background: rgba(255,63,164,0.12); }
.tag-event { color: var(--green-ink); background: var(--tint-green); }
.tag-press { color: #9a6b00; background: rgba(254,176,27,0.16); }

.news-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 18px;
}
.news-more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pink-ink);
  text-decoration: none;
}
.news-more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Beitragsseite (Blog-Detail) */
.post-header { padding: clamp(120px, 13vw, 170px) 0 clamp(28px, 4vw, 44px); }
.post-header-inner { max-width: 780px; }
.post-header .tag { margin-bottom: 20px; }
.post-header h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.post-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.post-figure { margin: 0 0 clamp(38px, 5vw, 64px); }
.post-figure img {
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
  display: block;
}
.post-body { max-width: 680px; }
.post-body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.35em;
}
.post-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 2em 0 0.6em;
  color: var(--ink);
}
.post-body > *:first-child { margin-top: 0; }
.post-footer { max-width: 680px; margin-top: clamp(44px, 6vw, 76px); padding-bottom: clamp(60px, 8vw, 100px); }

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 128px 0;
  color: var(--paper);
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(22,48,37,0.72), rgba(22,48,37,0.82)); }
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 { color: var(--paper); }
.cta-content p { color: rgba(255,255,255,0.88); font-size: 1.15rem; }
.cta-banner {
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  --cta-mx: 50%;
  --cta-my: 50%;
}
.cta-banner::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 330px at var(--cta-mx) var(--cta-my), rgba(255,255,255,0.18), transparent 70%);
  mix-blend-mode: soft-light;
}
.cta-banner .cta-content { z-index: 3; max-width: 830px; }
.cta-banner .cta-content h2 { font-size: clamp(3rem, 6vw, 5.8rem); line-height: 0.98; text-wrap: balance; text-shadow: 0 10px 36px rgba(0,0,0,0.28); }
.cta-banner .eyebrow { color: var(--yellow); margin-bottom: 20px; }

/* Konzept */
.concept-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-top: 72px;
}
.concept-block-reverse .split-image { order: 1; }

/* Soft pill badge (topic label) */
.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--blue-ink);
  background: var(--tint-blue);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.steps { display: grid; gap: 24px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,63,164,0.12);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--pink-ink);
  margin-bottom: 16px;
}
.step .btn { margin-top: 10px; }
.stats-quiet .stat-number { font-family: var(--display); font-size: 2.4rem; font-weight: 600; color: var(--ink); }
.stats-quiet .stat-label { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }

/* Stats-strip (subpages) */
.stats-strip { display: flex; flex-wrap: wrap; gap: 56px; margin: 40px 0; }
.stats-strip .stat { text-align: left; }
.stats-strip .stat-number { font-family: var(--display); font-weight: 600; font-size: 3rem; color: var(--pink); line-height: 1; }
.stats-strip .stat-label { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; margin-top: 4px; }
.page-hero .stat-label { color: var(--ink-soft); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Impact slideshow — compact single-image carousel */
.impact-slideshow {
  position: relative;
  max-width: 940px;
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}
.impact-slides { position: relative; aspect-ratio: 16 / 9; }
.impact-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.impact-slide.is-active { opacity: 1; pointer-events: auto; }
.impact-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.impact-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 22px 18px;
  color: #fff;
  font-size: 0.95rem;
  background: linear-gradient(180deg, rgba(14,15,18,0) 0%, rgba(14,15,18,0.72) 100%);
}
.impact-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.impact-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.impact-prev { left: 16px; }
.impact-next { right: 16px; }
.impact-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 9px;
  z-index: 2;
}
.impact-dots button {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.impact-dots button.is-active { background: #fff; transform: scale(1.35); }

/* Newsletter form */
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--card);
  color: var(--ink);
}
.newsletter-form input:focus { outline: none; border-color: var(--pink); }
.section-dark .newsletter-form input { background: rgba(255,255,255,0.1); border-color: var(--line-green); color: var(--paper); }
.form-note { margin-top: 12px; font-weight: 600; color: var(--pink-ink); min-height: 1.4em; }
.form-consent { margin-top: 12px; font-size: 0.82rem; line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }
.form-consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-consent a:hover { color: var(--pink-ink); }
.section-dark .form-consent { color: rgba(255,255,255,0.62); }

/* Footer */
.site-footer {
  background: var(--stage);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 26px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-green);
}
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-family: var(--display); font-style: italic; color: rgba(255,255,255,0.85); }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a:hover { color: var(--paper); }
.footer-press { display: flex; flex-direction: column; gap: 11px; }
.footer-press span { font-weight: 600; color: var(--paper); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-press a:hover { color: var(--paper); }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact span { font-weight: 600; color: var(--paper); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-contact a:hover { color: var(--paper); }
.social-links { display: flex; gap: 12px; margin-top: 6px; }
.social-links a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background 0.2s ease;
}
.social-links a:hover { background: var(--pink); }
.footer-bottom { padding-top: 24px; font-size: 0.85rem; text-align: center; }
.footer-legal { display: flex; justify-content: center; gap: 22px; margin-top: 10px; }
.footer-legal a { color: inherit; opacity: 0.75; text-decoration: none; }
.footer-legal a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

/* Legal pages — Impressum & Datenschutz */
.legal-hero { padding: clamp(120px, 14vw, 180px) 0 clamp(30px, 4vw, 52px); }
.legal-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin: 6px 0 0; letter-spacing: -0.03em; }
.legal-section { padding-top: 0; }
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  margin: 48px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.legal-body h2:first-of-type { margin-top: 16px; }
.legal-body p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 14px; font-size: 1rem; }
.legal-body a { color: var(--pink-ink); }
.legal-address {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink);
  padding: 20px 24px;
  background: var(--paper-2);
  border-radius: var(--radius);
  display: inline-block;
  margin: 6px 0 14px;
}
.legal-meta { margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-meta a { font-weight: 600; text-decoration: none; }
.legal-meta a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Press room — authentic imagery, external proof and usable editorial assets */
.press-hero {
  padding: clamp(150px, 14vw, 200px) 0 clamp(76px, 8vw, 120px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,63,164,0.12), transparent 31%),
    radial-gradient(circle at 86% 70%, rgba(247,200,21,0.15), transparent 30%),
    var(--paper);
  overflow: hidden;
}
.press-hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(44px, 7vw, 100px); align-items: center; }
.press-hero-copy h1 { max-width: 12ch; font-size: clamp(3.2rem, 6vw, 6.4rem); line-height: 0.95; }
.press-hero-copy .lead { max-width: 58ch; margin-left: 0; }
.press-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.press-hero-visual { position: relative; margin: 0; transform: rotate(1.5deg); }
.press-hero-visual::before { content: ""; position: absolute; inset: 16px -18px -18px 16px; border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; background: var(--pink); opacity: 0.86; transform: rotate(-3deg); }
.press-hero-visual img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 38% 62% 54% 46% / 47% 40% 60% 53%; box-shadow: 0 40px 90px -52px rgba(16,21,19,0.48); }
.press-hero-visual figcaption { position: absolute; z-index: 2; right: -16px; bottom: 24px; display: flex; flex-direction: column; gap: 2px; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,0.9); box-shadow: var(--shadow-card); backdrop-filter: blur(12px); }
.press-hero-visual figcaption span { color: var(--pink-ink); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.press-hero-visual figcaption strong { font-family: var(--display); font-size: 1.04rem; }
.press-section-header { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr); gap: clamp(32px, 7vw, 100px); align-items: end; }
.press-section-header h2 { max-width: 12ch; }
.press-section-header > p { margin: 0 0 10px; color: var(--ink-soft); }
.press-coverage { background: #f5f2eb; }
.press-coverage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 52px; }
.press-coverage-card { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 420px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-card); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.press-coverage-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); }
.press-coverage-card--lead { grid-column: 1 / -1; grid-template-columns: 1.15fr 0.85fr; min-height: 520px; }
.press-coverage-image { display: block; min-height: 100%; overflow: hidden; background: #e8e5de; }
.press-coverage-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.press-coverage-card:hover .press-coverage-image img { transform: scale(1.025); }
.press-coverage-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 58px); }
.press-coverage-copy h3 { margin: 20px 0 14px; font-size: clamp(1.65rem, 2.5vw, 2.55rem); line-height: 1.02; }
.press-coverage-copy p { color: var(--ink-soft); }
.press-source { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.08em; }
.press-source img { width: auto; max-width: 150px; height: 28px; object-fit: contain; filter: grayscale(1); }
.press-coverage-card:nth-child(2) .press-source img { height: 38px; max-width: 58px; }
.press-coverage-card:nth-child(3) .press-source img { height: 23px; max-width: 145px; }
.press-story-link { width: fit-content; margin-top: auto; padding-top: 22px; color: var(--pink-ink); font-weight: 700; border-bottom: 1px solid rgba(222,28,130,0.35); }
.press-archive { margin-top: clamp(76px, 10vw, 130px); }
.press-archive-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 22px; }
.press-archive-heading .eyebrow { margin: 0; }
.press-archive-heading > span { max-width: 42ch; color: var(--ink-soft); font-size: .82rem; text-align: right; }
.press-archive-list { border-top: 1px solid var(--ink); }
.press-archive-list > a {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(340px, 1.65fr) 120px 28px;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: 112px;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s cubic-bezier(.2,.8,.2,1), background .25s ease;
}
.press-archive-list > a:hover { padding-left: 22px; padding-right: 22px; background: rgba(255,255,255,.58); }
.press-archive-source { color: var(--pink-ink); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.press-archive-title { display: flex; flex-direction: column; gap: 5px; }
.press-archive-title strong { font-family: var(--display); font-size: clamp(1.16rem, 1.8vw, 1.58rem); font-weight: 550; line-height: 1.05; }
.press-archive-title em { color: var(--ink-soft); font-size: .78rem; font-style: normal; }
.press-archive-list time { color: var(--ink-soft); font-size: .76rem; font-variant-numeric: tabular-nums; }
.press-archive-list i { color: var(--pink-ink); font-size: 1.25rem; font-style: normal; transition: transform .25s ease; }
.press-archive-list a:hover i { transform: translate(4px, -4px); }
.press-syndications { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin-top: 22px; color: var(--ink-soft); font-size: .72rem; }
.press-syndications a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); transition: border-color .2s ease, color .2s ease; }
.press-syndications a:hover { color: var(--pink-ink); border-color: rgba(255,63,164,.42); }
.press-facts { overflow: hidden; }
.press-facts-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(54px, 9vw, 130px); align-items: center; }
.press-facts-statement blockquote { max-width: 16ch; margin: 24px 0 0; font-family: var(--display); font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: 0.98; letter-spacing: -0.035em; }
.press-fact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,0.2); border-left: 1px solid rgba(255,255,255,0.2); }
.press-fact-list article { display: flex; flex-direction: column; min-height: 170px; padding: 26px; border-right: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
.press-fact-list strong { color: var(--yellow); font-family: var(--display); font-size: 3.1rem; font-weight: 500; }
.press-fact-list span { color: rgba(255,255,255,0.75); }
.press-fact-list small { grid-column: 1 / -1; margin-top: 14px; color: rgba(255,255,255,0.5); }
.press-downloads { background: var(--paper); }
.press-download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 54px; }
.press-download-card { display: grid; grid-template-columns: 180px 1fr; min-height: 190px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.press-download-card:hover { transform: translateY(-5px); border-color: rgba(255,63,164,0.35); box-shadow: var(--shadow-card); }
.press-download-preview { display: grid; place-items: center; overflow: hidden; background: #ece9e2; }
.press-download-preview img { width: 100%; height: 100%; object-fit: cover; }
.press-download-card--logo .press-download-preview { background-image: linear-gradient(45deg,#e1ded8 25%,transparent 25%),linear-gradient(-45deg,#e1ded8 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#e1ded8 75%),linear-gradient(-45deg,transparent 75%,#e1ded8 75%); background-size: 20px 20px; background-position: 0 0,0 10px,10px -10px,-10px 0; }
.press-download-card--logo .press-download-preview img { width: 72%; height: auto; object-fit: contain; }
.press-download-card--pdf .press-download-preview { background: linear-gradient(160deg, #fff1f8, #ffe3f0); }
.press-download-meta { display: flex; flex-direction: column; justify-content: center; padding: 24px; }
.press-download-meta strong { font-family: var(--display); font-size: 1.45rem; }
.press-download-meta small { margin-top: 5px; color: var(--ink-soft); }
.press-download-meta em { margin-top: 28px; color: var(--pink-ink); font-size: 0.76rem; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.press-contact-section { padding-top: 24px; background: var(--paper); }
.press-contact-card { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: end; padding: clamp(38px, 6vw, 78px); border-radius: 28px; background: linear-gradient(135deg, #e9f4ff, #fff1f7 55%, #fff9dc); }
.press-contact-card h2 { max-width: 14ch; }
.press-contact-copy p { margin-bottom: 24px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .press-hero-grid, .press-facts-grid, .press-contact-card { grid-template-columns: 1fr; }
  .press-hero-copy h1 { max-width: 13ch; }
  .press-hero-visual { width: min(88%, 720px); margin-left: auto; }
  .press-section-header { grid-template-columns: 1fr; gap: 14px; }
  .press-coverage-card, .press-coverage-card--lead { grid-column: auto; grid-template-columns: 1fr; }
  .press-coverage-image { min-height: 330px; }
  .press-archive-list > a { grid-template-columns: 150px minmax(0, 1fr) 28px; }
  .press-archive-list time { display: none; }
  .press-download-card { grid-template-columns: 150px 1fr; }
}

@media (max-width: 620px) {
  .press-hero { padding-top: 128px; }
  .press-hero-actions .btn { width: 100%; }
  .press-hero-visual { width: 94%; }
  .press-hero-visual figcaption { right: -8px; bottom: -14px; }
  .press-coverage-grid, .press-download-grid { grid-template-columns: 1fr; }
  .press-coverage-image { min-height: 250px; }
  .press-archive-heading { display: block; }
  .press-archive-heading > span { display: block; margin-top: 12px; text-align: left; }
  .press-archive-list > a { grid-template-columns: 1fr 24px; gap: 8px 14px; padding: 18px 4px; }
  .press-archive-source { grid-column: 1; }
  .press-archive-title { grid-column: 1; }
  .press-archive-list i { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .press-fact-list { grid-template-columns: 1fr; }
  .press-fact-list small { grid-column: 1; }
  .press-download-card { grid-template-columns: 122px 1fr; min-height: 156px; }
  .press-download-meta { padding: 18px; }
  .press-download-meta em { margin-top: 17px; }
}

/* Page hero (subpages) */
.page-hero {
  background: var(--paper);
  padding: 110px 0 84px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.06;
  margin-bottom: 20px;
  max-width: 18ch;
}
.page-hero.center h1 { margin-left: auto; margin-right: auto; }
.page-hero .lead { margin-left: 0; font-size: 1.25rem; }
.page-hero.center .lead { margin-left: auto; margin-right: auto; }

/* Founders — each introduced individually, large alternating rows */
.founders-intro { margin-top: 18px; }
.founders-stack {
  max-width: 1160px;
  margin: 72px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.founder-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.founder-feature--reverse .founder-feature-photo { order: 2; }
.founder-feature--reverse .founder-feature-copy { order: 1; }

.founder-feature-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20, 22, 28, 0.5);
}
.founder-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.founder-feature:hover .founder-feature-photo img { transform: scale(1.04); }
.founder-index {
  position: absolute;
  top: 18px; left: 22px;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  mix-blend-mode: difference;
  letter-spacing: -0.02em;
}

.founder-feature-copy { max-width: 44ch; }
.founder-feature-copy .founder-role {
  color: var(--pink-ink);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.founder-feature-copy h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.founder-feature-copy .founder-meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.founder-feature-copy .founder-bio {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 26px;
}
.founder-feature-copy .founder-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--pink);
  padding-left: 22px;
  margin: 0;
}

/* About intro — editorial two-column opener */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
}
.about-intro-head h2 {
  margin: 6px 0 0;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.about-intro-copy p { font-size: 1.08rem; color: var(--ink-soft); margin: 0; }

/* Project timeline */
.timeline-section { padding-top: clamp(40px, 6vw, 80px); }
.timeline {
  list-style: none;
  margin: 60px auto 0;
  padding: 0;
  max-width: 760px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 90px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--pink) 0%, var(--blue) 50%, var(--green) 100%);
  opacity: 0.35;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  padding: 0 0 46px 0;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  text-align: right;
  padding-right: 4px;
  line-height: 1.2;
}
.timeline-body { position: relative; padding-left: 34px; }
.timeline-body::before {
  content: "";
  position: absolute;
  left: -9px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--pink);
  box-shadow: 0 0 0 5px var(--paper);
}
.timeline-item:nth-child(2) .timeline-body::before { border-color: var(--blue); }
.timeline-item:nth-child(3) .timeline-body::before { border-color: var(--yellow); }
.timeline-item--now .timeline-body::before { border-color: var(--green); background: var(--green); }
.timeline-body h3 { font-size: 1.3rem; margin: 0 0 6px; }
.timeline-body p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.timeline-item--now .timeline-body h3 { color: var(--green-ink); }

/* Fixed-parallax campus band */
.fixed-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url(../assets/images/campus-westend.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.fixed-band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,18,0.55) 0%, rgba(14,15,18,0.4) 50%, rgba(14,15,18,0.62) 100%);
}
.fixed-band-inner { position: relative; z-index: 1; padding: 40px 24px; }
.fixed-band-inner .eyebrow { color: var(--yellow); background: none; justify-content: center; }
.fixed-band-inner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 10px auto 0;
}

/* Team — alternating photo + quote, editorial */
.team-voice-list { margin-top: 56px; display: flex; flex-direction: column; gap: 64px; }
.team-voice {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}
.team-voice--reverse { grid-template-columns: 1fr 220px; }
.team-voice--reverse .team-voice-photo { order: 2; }
.team-voice--reverse .team-voice-copy { order: 1; }
.team-voice-photo {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.team-voice-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
/* Tighter crop where the subject sits small in the frame */
.team-voice-photo.is-zoom img { transform: scale(1.7); transform-origin: 50% 62%; }
.team-voice-copy blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  margin: 0 0 18px;
  color: var(--ink);
}
.team-voice-name { font-weight: 600; margin-bottom: 2px; }
.team-voice-role { font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* Profil-Links (LinkedIn, eigene Website) */
.founder-links, .team-voice-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
}
.team-voice-links { margin-top: 14px; justify-content: inherit; }
.founder-links a, .team-voice-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.founder-links a:hover, .team-voice-links a:hover { color: var(--pink-ink); border-color: var(--pink); }
.founder-links a::after, .team-voice-links a::after { content: "↗"; font-size: 0.78em; opacity: 0.65; }
@media (max-width: 720px) {
  .team-voice-links { justify-content: center; }
}
.partner-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; margin-top: 24px; box-shadow: var(--shadow-card); }
.partner-card h3 { color: var(--ink); }

/* Partner roster — simple editorial logo grid */
.partner-roster-intro { margin: 22px auto 0; max-width: 56ch; }
.partner-roster {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.partner-roster-item {
  background: var(--card);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: background 0.25s ease;
}
.partner-roster-item:hover { background: var(--paper-2); }
.partner-roster-logo {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.partner-roster-logo img {
  max-height: 66px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.partner-roster-item:hover .partner-roster-logo img { filter: grayscale(0); opacity: 1; }
/* Typographic mark for partners that have no standalone logo */
.partner-roster-logo--text span {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.partner-roster-item:hover .partner-roster-logo--text span { color: var(--ink); }
.partner-roster-role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-ink);
}
.partner-roster-name { font-family: var(--display); font-size: 1.05rem; color: var(--ink); line-height: 1.3; }

/* Konzept — simplified: two cards + three steps */
.concept-lead { margin-top: 16px; }
.concept-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.concept-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.concept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.concept-card-kicker {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-ink);
  margin: 0 0 12px;
}
.concept-card h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.concept-card > p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 26px; flex-grow: 1; }

.concept-steps {
  list-style: none;
  margin: 72px auto 0;
  padding: 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.concept-step { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.concept-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.25rem;
  color: #fff;
  background: var(--ink);
}
.concept-step:nth-child(1) .concept-step-num { background: var(--pink); }
.concept-step:nth-child(2) .concept-step-num { background: var(--blue); }
.concept-step:nth-child(3) .concept-step-num { background: var(--green); }
.concept-step-body strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.concept-step-body p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }
.concept-tagline { margin-top: 64px; color: var(--ink); }

@media (max-width: 720px) {
  .concept-cards { grid-template-columns: 1fr; gap: 18px; }
  .concept-steps { grid-template-columns: 1fr; gap: 24px; margin-top: 52px; }
}

/* Video */
.video-embed {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); margin: 36px 0;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Video erst auf Klick von YouTube laden (Datenschutz) */
.video-consent-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-consent-veil {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(14,15,18,0.35) 0%, rgba(14,15,18,0.72) 100%);
}
.video-consent-play {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-consent-play:hover { transform: scale(1.08); background: #fff; }
.video-consent-play svg { margin-left: 4px; }
.video-consent-note {
  max-width: 46ch; margin: 0;
  font-size: 0.84rem; line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.video-consent-note a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.video-consent.is-loaded .video-consent-poster,
.video-consent.is-loaded .video-consent-veil { display: none; }

/* Testimonial (subpage) — pink rule, serif italic */
.testimonial {
  border-left: 3px solid var(--pink);
  padding: 8px 0 8px 40px;
  margin: 48px auto;
  max-width: 860px;
}
.testimonial p { font-family: var(--display); color: var(--ink); font-size: 1.35rem; line-height: 1.4; font-weight: 600; letter-spacing: -0.01em; }
.testimonial-author { font-family: var(--sans); font-weight: 600; color: var(--ink); font-style: normal; margin-top: 20px; margin-bottom: 0; }
.testimonial-role { font-family: var(--sans); color: var(--ink-soft); font-size: 0.9rem; }

/* Event cards */
.event-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.event-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.event-card h3 { color: var(--ink); }


/* FAQ */
.faq-list { margin-top: 48px; max-width: 840px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-family: var(--sans);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 24px; margin: 0; }
.faq-item.open .faq-answer { max-height: 500px; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.contact-form label { font-family: var(--sans); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; display: block; color: var(--ink); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--card);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--pink); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination button {
  min-width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.pagination button.active { background: var(--pink); color: #fff; border-color: var(--pink); }

/* Scroll reveal — cinematic rise */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered children (cards, steps, gallery) */
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1); }
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }

/* Image reveal — soft cinematic wipe */
.img-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s cubic-bezier(.65,0,.15,1); }
.img-reveal.is-visible { clip-path: inset(0 0 0% 0); }

/* Count-up number emphasis */
.stat-number { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .img-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
}

/* =========================================================
   Award effects
   ========================================================= */

/* View transitions (MPA, progressive enhancement) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtOut 0.35s cubic-bezier(.4,0,.2,1) both; }
::view-transition-new(root) { animation: vtIn 0.5s 0.08s cubic-bezier(.2,.8,.2,1) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-14px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(18px); } }
.logo { view-transition-name: yold-logo; }

/* Perspective shift — the signature scene replaces age categories with
   changing roles and deliberately ambiguous points of view. */
.perspective-scene {
  position: relative;
  height: 200vh;
  background: var(--stage);
  color: #fff;
  --scene-progress: 0;
  --scene-resolution: 0;
  --scene-meter: 0%;
  --panel-a-x: -22vw;
  --panel-a-y: 7vh;
  --panel-a-rotation: -5deg;
  --panel-b-x: 22vw;
  --panel-b-y: -7vh;
  --panel-b-rotation: 5deg;
  --resolution-y: 30px;
}
.perspective-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}
.perspective-media {
  position: absolute;
  top: 8vh;
  bottom: 8vh;
  width: min(40vw, 620px);
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.42);
  will-change: transform, clip-path, opacity;
}
.perspective-media video { width: 100%; height: 100%; object-fit: cover; }
.perspective-media-a {
  left: 3vw;
  clip-path: polygon(0 0, 92% 5%, 100% 94%, 8% 100%);
  transform: translate3d(var(--panel-a-x), var(--panel-a-y), 0) rotate(var(--panel-a-rotation));
}
.perspective-media-b {
  right: 3vw;
  clip-path: polygon(8% 5%, 100% 0, 92% 100%, 0 94%);
  transform: translate3d(var(--panel-b-x), var(--panel-b-y), 0) rotate(var(--panel-b-rotation));
}
.perspective-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(16,21,19,0.18) 0 12%, rgba(16,21,19,0.74) 58%, rgba(16,21,19,0.95) 100%),
    linear-gradient(90deg, rgba(12,131,250,0.08), rgba(255,63,164,0.09));
}
.perspective-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.perspective-copy .eyebrow { color: var(--yellow); }
.perspective-copy h2 {
  color: #fff;
  font-size: clamp(3rem, 7.2vw, 7rem);
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0,0,0,0.38);
}
.perspective-questions {
  position: relative;
  min-height: 64px;
  width: min(92vw, 780px);
}
.perspective-question {
  position: absolute;
  inset: 0;
  color: rgba(255,255,255,0.9);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.perspective-question.is-active { opacity: 1; transform: translateY(0); }
.perspective-resolution {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: var(--scene-resolution);
  transform: translateY(calc(-35% + var(--resolution-y)));
}
.perspective-resolution span { color: rgba(255,255,255,0.68); }
.perspective-resolution strong {
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 5.8rem);
  line-height: 1.02;
  text-wrap: balance;
}
.perspective-scene.is-resolved .perspective-copy > .eyebrow,
.perspective-scene.is-resolved .perspective-copy > h2,
.perspective-scene.is-resolved .perspective-questions { opacity: 0; transform: translateY(-24px); transition: 0.45s ease; }
.perspective-meter {
  position: absolute;
  z-index: 3;
  right: 28px;
  top: 50%;
  width: 2px;
  height: 28vh;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
}
.perspective-meter span { display: block; width: 100%; height: var(--scene-meter); background: var(--pink); }
.perspective-scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

/* Beitrag — "Was bringst du mit?": editorial, interactive living sentence */
.contribution { background: var(--paper); }
.contribution-inner { max-width: 920px; }
.contribution-thesis { font-size: clamp(2.2rem, 4.8vw, 4rem); margin: 6px 0 22px; }
.contribution-lead { margin: 0 auto; color: var(--ink-soft); }
.contribution-prompt {
  margin: 52px 0 0;
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--ink);
}
.contribution-choices { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.contribution-chip {
  font: 600 0.92rem/1 var(--sans);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.contribution-chip:hover { transform: translateY(-2px); border-color: var(--ink); }
.contribution-chip[aria-pressed="true"] { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -16px rgba(0,0,0,.45); }
.contribution-chip[aria-pressed="true"][data-color="green"]  { background: var(--green);     border-color: var(--green); }
.contribution-chip[aria-pressed="true"][data-color="green2"] { background: var(--green-ink); border-color: var(--green-ink); }
.contribution-chip[aria-pressed="true"][data-color="pink"]   { background: var(--pink);      border-color: var(--pink); }
.contribution-chip[aria-pressed="true"][data-color="pink2"]  { background: var(--pink-ink);  border-color: var(--pink-ink); }
.contribution-chip[aria-pressed="true"][data-color="blue"]   { background: var(--blue);      border-color: var(--blue); }
.contribution-chip[aria-pressed="true"][data-color="yellow"] { background: var(--yellow);    border-color: var(--yellow); color: var(--ink); }

.contribution-sentence {
  margin: 44px auto 0; max-width: 22ch; min-height: 1.3em;
  font-family: var(--display); font-weight: 400; font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.22;
  color: var(--ink-soft); text-wrap: balance;
  transition: color .3s ease;
}
.contribution-sentence em { font-style: italic; font-weight: 500; }
.contribution-sentence.is-empty { color: var(--ink-soft); opacity: .55; }
@keyframes processOrbit { to { transform: rotate(360deg); } }

/* Editorial, less card-like image rhythm */
.gallery-grid { grid-template-columns: repeat(12, 1fr); gap: 22px; align-items: end; }
.gallery-grid img { height: auto; aspect-ratio: 4 / 5; }
.gallery-grid img:nth-child(1) { grid-column: 1 / span 5; }
.gallery-grid img:nth-child(2) { grid-column: 7 / span 6; aspect-ratio: 5 / 4; margin-bottom: 12vh; }
.gallery-grid img:nth-child(3) { grid-column: 2 / span 4; margin-top: -7vh; }
.gallery-grid img:nth-child(4) { grid-column: 7 / span 5; aspect-ratio: 1; margin-top: 5vh; }

/* Split-word headline reveal */
.split-head .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-head .wi { display: inline-block; transform: translateY(112%); transition: transform 0.85s cubic-bezier(.2,.8,.2,1); }
.split-head.in .wi { transform: translateY(0); }

/* Card tilt light sweep */
.tilt { transform-style: preserve-3d; }
.tilt::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--px, 50%) var(--py, 50%), rgba(255,255,255,0.32), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.tilt:hover::after { opacity: 1; }
.news-card, .team-card, .event-card { position: relative; }

/* Doc chapters (was-uns-bewegt) */
.chapter .video-card { position: sticky; top: 110px; }
.big-stat { margin: 34px 0 6px; }
.big-stat-number {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.big-stat-suffix {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--ink);
  margin-left: 10px;
}
.big-stat-label { color: var(--ink-soft); font-size: 1rem; margin-top: 8px; }

/* Particle number canvas */
.particle-holder { position: relative; width: 100%; height: 320px; margin: 30px 0 10px; }
.particle-holder canvas { position: absolute; inset: 0; }

/* Tandem constellation */
.constellation-section { position: relative; overflow: hidden; }
.constellation-holder { position: relative; width: 100%; height: 400px; margin-top: 30px; }
.constellation-holder canvas { position: absolute; inset: 0; }

/* Stat trio inside the dark constellation section */
.constellation-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(28px, 6vw, 80px);
  margin-top: 36px;
}
.cstat { display: flex; flex-direction: column; gap: 8px; }
.cstat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  color: #fff;
}
.cstat-num em { font-style: normal; color: var(--pink); }
.cstat-label { max-width: 18ch; color: rgba(255,255,255,0.66); font-size: 0.92rem; line-height: 1.45; }

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-viewport { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .logo-marquee-track { animation: none; }
  .voice-slide { transition: none; }
  .split-head .wi { transform: none; transition: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .life-thread { display: none; }
  .perspective-scene { height: auto; }
  .perspective-sticky { position: relative; min-height: 760px; }
  .perspective-media { transform: none !important; }
  .perspective-media-a { left: 3vw; }
  .perspective-media-b { right: 3vw; }
  .perspective-resolution { display: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .split,
  .concept-block,
  .concept-block-reverse,
  .hero-emotional .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-block-reverse .split-image,
  .concept-block-reverse .concept-text { order: initial; }
  .hero-emotional .hero-lede { max-width: none; }
  .voice-slide { grid-template-columns: 1fr; gap: 18px; }
  .voice-slide blockquote { max-width: none; font-size: clamp(2.25rem, 7.6vw, 4rem); }
  .voice-attribution { grid-column: 1; }

  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  .main-nav.open ul { flex-direction: column; gap: 0; padding: 12px 28px 24px; }
  .main-nav.open li { border-bottom: 1px solid var(--line); }
  .main-nav.open a { display: block; padding: 15px 0; }
  .home-page .main-nav.open a,
  .home-page .site-header:not(.is-compact) .main-nav.open a { color: var(--ink); }
  .home-page .site-header { top: 32px; }
  .home-page .site-header.is-compact { top: 8px; }
  .home-page .site-header.is-compact .header-inner { margin: 0 10px; }
  .story-nav { display: none; }

  .opening-story-heading,
  .opening-story-bottom { grid-template-columns: 1fr; }
  .opening-story-heading { gap: 18px; }
  .opening-story-heading .eyebrow { margin-top: 0; }
  .opening-story-heading h2 { font-size: clamp(3.25rem, 12vw, 6rem); }
  .opening-story-bottom { gap: 34px; }
  .opening-story-statement { max-width: 30ch; }

  .life-thread { display: none; }
  .perspective-scene { height: 170vh; }
  .perspective-sticky { min-height: 620px; }
  .perspective-media { top: 5vh; bottom: 5vh; width: 68vw; opacity: 0.7; }
  .perspective-media-a { left: -18vw; }
  .perspective-media-b { right: -18vw; }
  .perspective-copy h2 { font-size: clamp(2.7rem, 11vw, 5rem); }
  .perspective-meter { right: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-grid img:nth-child(n) { grid-column: auto; margin: 0; aspect-ratio: 4 / 5; }
  .gallery-grid img:nth-child(even) { margin-top: 54px; }
}

@media (max-width: 560px) {
  .logo-marquee { padding: 22px 0 28px; }
  .logo-marquee-heading { margin-bottom: 18px; font-size: 0.57rem; }
  .logo-marquee-item { flex-basis: 126px; height: 54px; }
  .logo-marquee-item img { max-height: 38px; }
  .logo-marquee-item--faz { flex-basis: 155px; }
  .logo-marquee-item--journal { flex-basis: 82px; }
  .logo-marquee-item--journal img { max-height: 48px; }
  .logo-marquee-item--frankfurt-blick { flex-basis: 148px; }
  .logo-marquee-item--frankfurt-blick img { max-width: 132px; max-height: 22px; }
  .logo-marquee-item--idw { flex-basis: 112px; }
  .voices-section { padding-top: 100px; }
  .voices-heading { padding-bottom: 20px; }
  .voices-controls button { width: 42px; height: 42px; }
  .voices-stage { min-height: 590px; }
  .voice-slide { align-content: center; }
  .voice-slide blockquote { font-size: clamp(2rem, 9.2vw, 2.65rem); line-height: 1.05; }
  .opening-story { padding: 86px 0 100px; }
  .opening-story-heading h2 { font-size: clamp(2.9rem, 14.2vw, 4.2rem); line-height: 0.96; }
  .opening-story-figure { margin-top: 48px; }
  .opening-story-figure figcaption { align-items: flex-start; font-size: 0.6rem; }
  .opening-story-figure figcaption span:last-child { max-width: 17ch; text-align: right; }
  .opening-story-bottom { margin-top: 50px; padding-top: 22px; }
  .opening-story-statement { font-size: 1.8rem; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(1.72rem, 7.2vw, 2.55rem); letter-spacing: -0.035em; }
  .perspective-media { width: 84vw; border-radius: 20px; }
  .perspective-media-a { left: -34vw; }
  .perspective-media-b { right: -34vw; }
  .perspective-resolution { left: 20px; right: 20px; }
  .contribution-choices { gap: 8px; }
  .contribution-chip { padding: 10px 14px; font-size: 0.8rem; }
}

/* =========================================================
   Homepage narrative refinement
   Clear chapters, quieter transitions and editorial proof.
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.pathways-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(12,131,250,0.07), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(255,63,164,0.07), transparent 30%),
    #f6f4ef;
}
.pathways-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  gap: clamp(44px, 9vw, 140px);
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 84px);
}
.pathways-heading h2 { max-width: 10ch; font-size: clamp(3.7rem, 7vw, 7rem); }
.pathways-heading > p { max-width: 45ch; margin: 0 0 10px; color: var(--ink-soft); font-size: 1.05rem; }
.pathways-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.pathway-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,33,38,.11);
  border-radius: clamp(24px, 3vw, 38px);
  background: rgba(255,255,255,.82);
  box-shadow: 0 30px 70px -54px rgba(24,29,26,.42);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.pathway-card:hover { transform: translateY(-7px); box-shadow: 0 38px 80px -48px rgba(24,29,26,.5); }
.pathway-media { position: relative; height: clamp(260px, 30vw, 410px); margin: 0; overflow: hidden; background: var(--paper-2); }
.pathway-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,16,14,.34), transparent 54%); }
.pathway-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.02); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.pathway-card:hover .pathway-media img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.pathway-media > span { position: absolute; z-index: 2; left: 26px; bottom: 22px; color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .18em; }
.pathway-copy { display: flex; min-height: 380px; flex-direction: column; align-items: flex-start; padding: clamp(30px, 4vw, 54px); }
.pathway-copy .eyebrow { margin-bottom: 18px; }
.pathway-copy h3 { max-width: 10ch; font-family: var(--display); font-size: clamp(2.45rem, 4vw, 4rem); font-weight: 500; line-height: .98; }
.pathway-copy > p:not(.eyebrow) { max-width: 46ch; color: var(--ink-soft); }
.pathway-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 9px 0 28px; }
.pathway-meta span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .68rem; font-weight: 600; }
.pathway-copy .btn { margin-top: auto; }
.pathway-card--knowledge { --path-accent: var(--blue); }
.pathway-card--community { --path-accent: var(--pink); }
.pathway-card::before { content: ""; position: absolute; z-index: 3; top: 0; left: 0; width: 100%; height: 4px; background: var(--path-accent); }
.pathways-gateway {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(30,33,38,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.62);
}
.pathways-gateway-mark { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--yellow); font-family: var(--display); font-size: 1.8rem; font-style: italic; }
.pathways-gateway p { display: flex; flex-direction: column; gap: 3px; margin: 0; }
.pathways-gateway p span { color: var(--ink-soft); font-size: .86rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: .84rem; font-weight: 700; border-bottom: 1px solid rgba(30,33,38,.3); padding-bottom: 3px; }
.text-link::after { content: "↗"; color: var(--pink-ink); transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px,-3px); }

.impact-gallery { padding-top: clamp(110px, 12vw, 180px); }
.impact-gallery-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 18px clamp(40px, 7vw, 100px);
  align-items: start;
  margin-bottom: clamp(58px, 8vw, 108px);
}
.impact-gallery-heading .eyebrow { grid-column: 1; margin-top: 12px; }
.impact-gallery-heading h2 { grid-column: 2; max-width: 15ch; }
.impact-gallery-heading > p:last-child { grid-column: 2; max-width: 45ch; color: var(--ink-soft); }
.impact-gallery .stats-quiet { margin-top: clamp(78px, 10vw, 130px); padding-top: 28px; border-top: 1px solid var(--ink); }
.impact-gallery .stats-quiet .stat-number { font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: 1; }

.constellation-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 120px);
}
.constellation-heading h2 { max-width: 15ch; color: #fff; }
.constellation-heading > p { max-width: 44ch; margin-bottom: 10px; color: rgba(255,255,255,.68); }
.constellation-holder { margin-top: -20px; }
.constellation-footer { display: flex; justify-content: space-between; gap: 34px; align-items: end; border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; }
.constellation-footer p { max-width: 58ch; margin: 0; color: rgba(255,255,255,.7); }
.text-link-light { color: #fff; border-bottom-color: rgba(255,255,255,.4); white-space: nowrap; }

.home-page #aktuelles .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-page #aktuelles .news-card:nth-child(n+3) { display: none; }

.newsletter-band { padding: clamp(76px, 9vw, 126px) 0; background: var(--paper-2); }
.newsletter-band-inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(48px, 10vw, 150px); align-items: end; }
.newsletter-band-heading h2 { max-width: 12ch; font-size: clamp(2.8rem, 5vw, 5rem); }
.newsletter-band-content > p { max-width: 46ch; color: var(--ink-soft); }
.newsletter-band .newsletter-form { flex-wrap: nowrap; margin-top: 24px; }
.newsletter-band .newsletter-form input { min-width: 0; background: rgba(255,255,255,.72); }

@media (max-width: 1180px) and (min-width: 901px) {
  .main-nav ul { gap: 18px; }
  .header-actions { gap: 10px; }
  .story-nav { right: 14px; }
  .story-nav a { width: 42px; justify-content: center; padding: 0; }
  .story-nav a em { position: absolute; right: 48px; padding: 7px 10px; border-radius: 10px; background: var(--ink); color: #fff; opacity: 0; pointer-events: none; transform: translateX(5px); transition: opacity .2s ease, transform .2s ease; }
  .story-nav a:hover em, .story-nav a:focus-visible em, .story-nav a.is-active em { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .pathways-heading, .impact-gallery-heading, .constellation-heading, .newsletter-band-inner { grid-template-columns: 1fr; }
  .pathways-heading { gap: 18px; }
  .pathways-heading h2 { max-width: 12ch; }
  .pathways-grid { grid-template-columns: 1fr; }
  .pathway-copy { min-height: 0; }
  .impact-gallery-heading .eyebrow, .impact-gallery-heading h2, .impact-gallery-heading > p:last-child { grid-column: 1; }
  .impact-gallery-heading { gap: 14px; }
  .impact-gallery-heading .eyebrow { margin-top: 0; }
  .constellation-heading { gap: 18px; }
  .constellation-footer { align-items: flex-start; flex-direction: column; }
  .home-page #aktuelles .news-grid { grid-template-columns: 1fr; }
  .newsletter-band-inner { align-items: start; }

}

@media (max-width: 560px) {
  .home-page .site-header { top: 24px; }
  .home-page .site-header.is-compact { top: 7px; }
  .home-page .site-header .header-inner { height: 66px; }
  .home-page .site-header.is-compact .header-inner { height: 58px; margin: 0 8px; padding: 0 12px; }
  .logo img, .home-page .site-header.is-compact .logo img { height: 32px; }
  .achievement-banner { max-width: 100%; gap: 8px; padding: 6px 14px 6px 10px; }
  .achievement-banner-logo { height: 18px; }
  .achievement-banner-copy { white-space: normal; font-size: 0.76rem; line-height: 1.3; }
  .header-actions { gap: 8px; }
  .header-actions .lang-switch { display: none; }
  .header-actions .btn-accent { min-width: 0; padding: 11px 14px; font-size: .78rem; }
  .nav-toggle { width: 32px; height: 32px; }
  .hero-line { white-space: normal; }
  .hero-story .hero-inner { padding-top: 104px; padding-bottom: 54px; }
  .hero-story .hero-actions { gap: 9px; }
  .hero-story .hero-actions .btn { width: 100%; }
  .pathway-media { height: 250px; }
  .pathway-copy { padding: 28px 24px 32px; }
  .pathway-copy h3 { font-size: 2.55rem; }
  .pathways-gateway { grid-template-columns: 52px 1fr; padding: 18px; }
  .pathways-gateway-mark { width: 44px; height: 44px; font-size: 1.45rem; }
  .pathways-gateway .text-link { grid-column: 1 / -1; justify-self: start; margin-left: 0; }
  .impact-gallery .stats-quiet { align-items: flex-start; gap: 30px; }
  .constellation-stats { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .constellation-holder { height: 300px; }
  .newsletter-band .newsletter-form { flex-direction: column; }
  .newsletter-band .newsletter-form .btn { width: 100%; }
}

/* =========================================================
   Film story — real-video scroll sequence
   (replaces the "paths" line diagram)
   ========================================================= */
.film-story { position: relative; height: 250vh; background: #000; }
.film-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #000; }
.film-shot { position: absolute; inset: 0; opacity: 0; will-change: opacity, transform; }
.film-shot video { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.05) brightness(1.0); }

.film-grade { position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background:
    radial-gradient(130% 120% at 50% 44%, rgba(0,0,0,0) 42%, rgba(0,0,0,.6) 100%),
    linear-gradient(180deg, rgba(8,5,2,.32) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 60%, rgba(6,4,2,.72) 100%); }
.film-warm { position: absolute; inset: 0; pointer-events: none; z-index: 6; mix-blend-mode: soft-light; opacity: .15;
  background: radial-gradient(120% 120% at 50% 58%, rgba(255,176,80,.55), rgba(120,40,0,.16) 60%, rgba(0,0,0,0) 100%); }
.film-grain { position: absolute; inset: -40%; pointer-events: none; z-index: 7; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.film-bars { position: absolute; inset: 0; pointer-events: none; z-index: 8; }
.film-bars::before, .film-bars::after { content: ""; position: absolute; left: 0; right: 0; height: 6.5vh; background: #000; }
.film-bars::before { top: 0; } .film-bars::after { bottom: 0; }
.film-progress { position: absolute; left: 0; top: 0; height: 2px; width: 100%; z-index: 10; background: rgba(255,255,255,.12); }
.film-progress span { display: block; height: 100%; width: 0; background: var(--yellow, #feb01b); }

.film-credit { position: absolute; left: 8vw; top: calc(6.5vh + 20px); z-index: 9; margin: 0;
  font-family: var(--sans); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.film-connect { position: absolute; left: 50%; top: calc(50% + 3.2rem); transform: translateX(-50%); z-index: 9; margin: 0;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .42em; font-size: clamp(.66rem, 1vw, .78rem); font-weight: 600; color: #ffd58a; opacity: 0; transition: opacity .6s ease; pointer-events: none; white-space: nowrap; }

.film-beats { position: absolute; inset: 0; z-index: 9; pointer-events: none; }
.film-beat { position: absolute; left: 8vw; right: 8vw; bottom: 13vh; margin: 0; max-width: 24ch;
  font-family: var(--display); font-weight: 400; font-style: italic; font-size: clamp(1.5rem, 3.6vw, 3rem); line-height: 1.16;
  color: #fff; text-shadow: 0 3px 50px rgba(0,0,0,.75);
  opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s ease; }
.film-beat.on { opacity: 1; transform: none; }
.film-beat.center { top: 50%; left: 0; right: 0; bottom: auto; max-width: none; text-align: center; padding: 0 8vw;
  transform: translateY(-40%); font-size: clamp(1.7rem, 4.2vw, 3.4rem); }
.film-beat.center.on { transform: translateY(-50%); }

@media (max-width: 720px) {
  .film-story { height: 220vh; }
  .film-bars::before, .film-bars::after { height: 5vh; }
  .film-beat { bottom: 12vh; font-size: clamp(1.4rem, 6vw, 2rem); }
  .film-beat.center { font-size: clamp(1.5rem, 6.6vw, 2.2rem); }
  .founders-stack { gap: 72px; margin-top: 48px; }
  .founder-feature, .founder-feature--reverse { grid-template-columns: 1fr; gap: 28px; }
  .founder-feature--reverse .founder-feature-photo { order: 0; }
  .founder-feature--reverse .founder-feature-copy { order: 0; }
  .founder-feature-photo { max-width: 340px; }
  .founder-feature-copy { max-width: none; }
  .team-voice, .team-voice--reverse { grid-template-columns: 1fr; text-align: center; }
  .team-voice--reverse .team-voice-photo, .team-voice--reverse .team-voice-copy { order: initial; }
  .team-voice-photo img { width: 140px; margin: 0 auto; }
  .about-intro-grid { grid-template-columns: 1fr; align-items: start; }
  .timeline { margin-top: 44px; }
  .timeline::before { left: 8px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; padding-left: 34px; }
  .timeline-year { text-align: left; padding-right: 0; }
  .timeline-body { padding-left: 0; }
  .timeline-body::before { left: -34px; }
  .fixed-band { background-attachment: scroll; min-height: 52vh; }
  .partner-roster { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .film-story { height: auto; }
  .film-sticky { position: relative; height: 78vh; }
  .film-shot { transition: none; }
  .film-beat { transition: none; }
}
