/* ============================================================
   dspannagel.de v0.2 — MAGAZINE PRO
   Editorial-luxury Sport Brand
   Design vocabulary: Players' Tribune × Wimbledon × Apple
   ============================================================ */

/* --- Self-hosted fonts (DSGVO) --- */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/cormorant-garamond-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2'); }

/* --- Tokens (v0.2 — gold removed) --- */
:root {
  /* Brand */
  --c-ink: #0A1F44;          /* deep navy — primary */
  --c-ink-2: #14306A;        /* navy 2 */
  --c-ink-deep: #050E20;     /* near-black navy */
  --c-paper: #F4F1EA;        /* warm cream paper */
  --c-paper-soft: #FAF8F2;
  --c-text: #111418;
  --c-text-soft: #4A5260;
  --c-text-on-ink: #EFE8D6;
  --c-text-on-ink-soft: rgba(239, 232, 214, 0.62);
  --c-line: #D9D3C3;
  --c-line-soft: #E8E2D2;
  --c-line-ink: rgba(239, 232, 214, 0.18);
  --c-accent: #B11226;       /* deep championship red (used sparingly) */

  /* Fonts */
  --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  /* Layout */
  --pad-x: clamp(20px, 4.5vw, 64px);
  --max-w: 1380px;
  --max-w-narrow: 1100px;
  --section-y: clamp(80px, 11vw, 180px);

  /* Type-scale (display, magazine) */
  --t-display: clamp(3.4rem, 11vw, 9.5rem);
  --t-h1: clamp(2.8rem, 7vw, 6rem);
  --t-h2: clamp(2.2rem, 5vw, 4.5rem);
  --t-h3: clamp(1.5rem, 2.4vw, 2.2rem);
  --t-lead: clamp(1.15rem, 1.6vw, 1.45rem);
  --t-body: 17px;
  --t-mono-eyebrow: 0.72rem;

  /* Motion */
  --tr-fast: 200ms cubic-bezier(.4,0,.2,1);
  --tr: 380ms cubic-bezier(.4,0,.2,1);
  --tr-slow: 700ms cubic-bezier(.4,0,.2,1);

  --shadow-1: 0 12px 36px rgba(10, 31, 68, 0.10);
  --shadow-2: 0 28px 80px rgba(10, 31, 68, 0.20);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-paper);
  font-feature-settings: 'ss01', 'cv11', 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Selection --- */
::selection { background: var(--c-ink); color: var(--c-paper); }

/* --- Layout utils --- */
.wrap { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--narrow { max-width: var(--max-w-narrow); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
.section--paper { background: var(--c-paper); }
.section--paper-soft { background: var(--c-paper-soft); }
.section--ink { background: var(--c-ink); color: var(--c-text-on-ink); }
.section--ink-deep { background: var(--c-ink-deep); color: var(--c-text-on-ink); }

/* --- Editorial typography --- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--t-mono-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-text-soft);
}
.section--ink .eyebrow,
.section--ink-deep .eyebrow { color: var(--c-text-on-ink-soft); }
.section--ink .eyebrow::before,
.section--ink-deep .eyebrow::before { background: var(--c-text-on-ink-soft); }

.h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  max-width: 18ch;
}
.section--ink .h2,
.section--ink-deep .h2 { color: var(--c-text-on-ink); }

.lead {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--t-lead);
  line-height: 1.4;
  color: var(--c-text-soft);
  max-width: 52ch;
}
.section--ink .lead,
.section--ink-deep .lead { color: var(--c-text-on-ink-soft); }

/* --- Header (transparent over hero, fills on scroll) --- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 22px;
  transition: background var(--tr), border-color var(--tr), padding var(--tr);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--c-line);
  padding-block: 14px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand__name {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.brand__sub {
  margin-top: 4px;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink);
  opacity: 0.78;
}
/* On dark/hero overlay state */
.site-header:not(.is-scrolled) .brand__name,
.site-header:not(.is-scrolled) .brand__sub,
.site-header:not(.is-scrolled) .nav-list a { color: var(--c-paper); }
.site-header:not(.is-scrolled) .brand__sub { opacity: 0.85; }

.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ink);
  position: relative;
  padding-block: 6px;
  transition: opacity var(--tr-fast);
  letter-spacing: -0.005em;
}
.nav-list a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.nav-list a.is-active { font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--c-ink);
  background: var(--c-ink);
  color: var(--c-paper);
  transition: all var(--tr);
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
}
.btn:hover { background: var(--c-ink-2); border-color: var(--c-ink-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-paper); }
.btn--on-dark { border-color: var(--c-paper); background: var(--c-paper); color: var(--c-ink); }
.btn--on-dark:hover { background: transparent; color: var(--c-paper); }
.btn--ghost-on-dark { background: transparent; color: var(--c-paper); border-color: var(--c-paper); }
.btn--ghost-on-dark:hover { background: var(--c-paper); color: var(--c-ink); }
.btn--lg { padding: 18px 36px; font-size: 0.9rem; }
.btn .arrow { display: inline-block; transition: transform var(--tr); }
.btn:hover .arrow { transform: translateX(5px); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  color: var(--c-ink);
}
.site-header:not(.is-scrolled) .menu-toggle { color: var(--c-paper); }
.menu-toggle svg { width: 18px; height: 18px; stroke: currentColor; }

/* --- HERO (full-bleed, magazine) --- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-ink-deep);
  color: var(--c-paper);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(15%) contrast(1.05);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,14,32,0.55) 0%, rgba(5,14,32,0.25) 35%, rgba(5,14,32,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 200px 64px;
}
.hero__kicker {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-paper);
  opacity: 0.78;
  margin-bottom: 28px;
}
.hero__kicker .dot { display: inline-block; margin: 0 14px; opacity: 0.45; }
.hero__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 16ch;
}
/* Hero-Inhalt rechtsbündig (ab Tablet) */
@media (min-width: 768px) {
  .hero__content { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
  .hero__title { margin-left: auto; }
  .hero__kicker { justify-content: flex-end; }
  .hero__row { width: 100%; flex-direction: row-reverse; }
  .hero__sub { margin-left: auto; }
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-paper);
  opacity: 0.85;
}
.hero__title small {
  display: block;
  font-size: 0.4em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  opacity: 0.7;
  margin-top: 12px;
}
.hero__row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.5;
  max-width: 38ch;
  color: var(--c-paper);
  opacity: 0.85;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__meta {
  position: absolute;
  bottom: 32px;
  right: var(--pad-x);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-paper);
  opacity: 0.55;
  display: flex;
  gap: 24px;
  z-index: 1;
}

/* --- STATS — dramatic, oversized --- */
.stats {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding-block: clamp(60px, 8vw, 110px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats__item {
  padding: 0 24px;
  border-right: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stats__item:last-child { border-right: 0; }
.stats__item:first-child { padding-left: 0; }
.stats__num {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(3.6rem, 6.5vw, 6.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-ink);
}
.stats__num small { font-size: 0.4em; font-weight: 400; opacity: 0.6; margin-left: 4px; }
.stats__lbl {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  line-height: 1.4;
}

/* --- STORY (editorial magazine) --- */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story__aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
.story__chapter-no {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 18px;
}
.story__chapter-name {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.story__body { max-width: 60ch; }
.story__h {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 36px;
}
.story__lead {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: var(--c-text);
  margin-bottom: 28px;
}
.story__lead::first-letter {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 5.5rem;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--c-ink);
}
.story__body p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.4em;
  color: var(--c-text);
}
.pull {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--c-ink);
  margin: 56px 0;
  padding: 8px 0 8px 32px;
  border-left: 2px solid var(--c-ink);
  letter-spacing: -0.015em;
}
.pull cite {
  display: block;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-top: 18px;
}

/* --- TIMELINE — vertical, editorial --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--c-line);
}
.timeline__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  padding-block: 36px;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.timeline__year {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.03em;
}
.timeline__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.015em;
}
.timeline__desc {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--c-text-soft);
}

/* --- VIDEOS — equal grid --- */
.videos-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-hero {
  display: flex;
  justify-content: center;
}
/* Hauptseite: elegantes Kino-Format, nicht zu wuchtig */
.video-card--lg {
  aspect-ratio: 21 / 9;
  display: block;
  width: min(840px, 100%);
  border-radius: var(--radius-sm);
}
.video-card--lg .video-card__play svg { width: 72px; height: 72px; }
.video-card--lg .video-card__caption { padding: 24px 32px; }
.video-card--lg .video-card__title {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}
/* Bilder-Seite: großes Lead-Video behält 16:9 */
.vid-lead {
  aspect-ratio: 16 / 9 !important;
  width: 100% !important;
}
.video-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-ink);
  cursor: pointer;
  transition: transform var(--tr);
}
.video-card:hover { transform: translateY(-4px); }
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity var(--tr), transform var(--tr-slow);
}
.video-card:hover img { opacity: 0.85; transform: scale(1.04); }
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-card__play svg { width: 56px; height: 56px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5)); }
.video-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 24px;
  background: linear-gradient(180deg, transparent, rgba(5,14,32,0.95));
  color: var(--c-paper);
}
.video-card__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.video-card__meta {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.consent-note {
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--c-text-soft);
  line-height: 1.55;
  padding: 16px 20px;
  background: var(--c-paper-soft);
  border: 1px solid var(--c-line-soft);
  max-width: 80ch;
}

/* --- PRESS — editorial cards --- */
.press {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--c-line-ink);
  border-bottom: 1px solid var(--c-line-ink);
}
.press__item {
  padding: 48px 40px;
  border-right: 1px solid var(--c-line-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.press__item:last-child { border-right: 0; }
.press__source {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
  margin-bottom: 28px;
}
.press__quote {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  line-height: 1.25;
  color: var(--c-text-on-ink);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
/* quote mark removed — interfered with text flow */

/* ============================================================
   ARTIKEL / BEITRÄGE (Presse-Berichte mit Text + Bild + Galerie-Link)
   ============================================================ */
.articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--c-line);
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.article:nth-child(even) .article__media { order: 2; }
.article__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-paper-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.article__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.article__media:hover img { transform: scale(1.05); }
/* Volles Bild zeigen (kein Crop) — z.B. Plakate/Hochformat */
.article__media--full { aspect-ratio: auto; background: var(--c-ink-deep); }
.article__media--full img { height: auto; object-fit: contain; }
.article__media--full:hover img { transform: none; }
.article__media-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(5,14,32,0.82);
  color: var(--c-paper);
  padding: 7px 13px;
}
.article__source {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.article__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 18px;
}
.article__body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--c-text);
}
.article__body p { margin-bottom: 0.8em; }
.article__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-ink);
  border-left: 2px solid var(--c-accent);
  padding-left: 20px;
  margin: 18px 0;
  line-height: 1.45;
}
.article__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 4px;
  transition: gap var(--tr-fast);
}
.article__link:hover { gap: 16px; }
@media (max-width: 760px) {
  .article { grid-template-columns: 1fr; gap: 20px; }
  .article:nth-child(even) .article__media { order: 0; }
  .article__media { max-width: 480px; }
}

/* ============================================================
   ARTICLE PAGE (interne Beitrags-Unterseiten /b/)
   ============================================================ */
.article-page { padding-top: clamp(120px, 16vw, 180px); padding-bottom: var(--section-y); }
.article-page__back {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 32px;
  transition: color var(--tr-fast);
}
.article-page__back:hover { color: var(--c-ink); }
.article-page__kicker {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.article-page__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 0;
}
.article-page__hero {
  margin: clamp(40px, 6vw, 72px) auto;
  max-width: 900px;
  padding-inline: var(--pad-x);
}
.article-page__hero img {
  width: 100%;
  border-radius: var(--radius-sm);
  background: var(--c-paper-soft);
}
.article-page__body {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--c-text);
  max-width: 68ch;
  margin-inline: auto;
}
.article-page__body p { margin-bottom: 1.3em; }
.article-page__body p:first-of-type {
  font-size: 1.32rem;
  line-height: 1.6;
  color: var(--c-ink);
  font-family: var(--ff-serif);
}
.article-page__source-link {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  font-family: var(--ff-mono);
  font-size: 0.82rem !important;
  letter-spacing: 0.04em;
  color: var(--c-text-soft) !important;
}
.article-page__source-link a { color: var(--c-ink); border-bottom: 1px solid currentColor; }
.article-page__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 68ch;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}

/* ============================================================
   ARCHIV-LISTE (alle Beiträge)
   ============================================================ */
.archive-list {
  display: flex;
  flex-direction: column;
}
.archive-year {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-ink);
}
.archive-year:first-child { margin-top: 0; }
.archive-year__num {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

/* Archiv-Karten-Grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.acard {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--tr);
}
.acard:hover { transform: translateY(-5px); }
.acard__cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-paper-soft);
  border-radius: var(--radius-sm);
}
.acard__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.acard:hover .acard__cover img { transform: scale(1.06); }
.acard__cover::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,14,32,0.5));
  opacity: 0; transition: opacity var(--tr);
}
.acard:hover .acard__cover::after { opacity: 1; }
.acard__type {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.acard__type--gallery { background: var(--c-ink); color: var(--c-paper); }
.acard__type--video { background: var(--c-accent); color: var(--c-paper); }
.acard__type--article { background: var(--c-paper); color: var(--c-ink); border: 1px solid var(--c-ink); }
.acard__play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.acard__play svg {
  width: 56px; height: 56px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
  transition: transform var(--tr);
}
.acard:hover .acard__play svg { transform: scale(1.1); }
.acard__body { padding: 18px 2px 0; }
.acard__meta {
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}
.acard__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
@media (max-width: 560px) {
  .archive-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .acard__title { font-size: 1.05rem; }
}
.archive-row {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr) auto auto;
  gap: 28px;
  align-items: baseline;
  padding-block: 22px;
  border-bottom: 1px solid var(--c-line);
  text-decoration: none;
  color: inherit;
  transition: background var(--tr-fast), padding-left var(--tr-fast);
}
.archive-row:hover { background: var(--c-paper); padding-left: 12px; }
.archive-row__date {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--c-text-soft);
  white-space: nowrap;
}
.archive-row__title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.015em;
}
.archive-row__excerpt {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-text-soft);
  margin-top: 6px;
  max-width: 65ch;
}
.archive-row__tag {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  text-align: right;
  white-space: nowrap;
}
.archive-row__type {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.archive-row--gallery .archive-row__type { background: var(--c-ink); color: var(--c-paper); }
.archive-row--video .archive-row__type { background: var(--c-accent); color: var(--c-paper); }
.archive-row--article .archive-row__type { border: 1px solid var(--c-line); color: var(--c-text-soft); }
@media (max-width: 760px) {
  .archive-row { grid-template-columns: 1fr auto; gap: 6px 16px; }
  .archive-row__date { grid-row: 1; grid-column: 1; }
  .archive-row__type { grid-row: 1; grid-column: 2; }
  .archive-row__main { grid-row: 2; grid-column: 1 / -1; }
  .archive-row__tag { grid-row: 3; grid-column: 1 / -1; text-align: left; }
}

.press__meta {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
  padding-top: 20px;
  border-top: 1px solid var(--c-line-ink);
}

/* --- GALLERY PREVIEW (bento) --- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 36vh);
  gap: 12px;
  margin-top: 56px;
}
.bento__tile {
  position: relative;
  overflow: hidden;
  background: var(--c-paper-soft);
  cursor: pointer;
}
.bento__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.bento__tile:hover img { transform: scale(1.05); }
.bento__tile--lg { grid-column: span 2; grid-row: span 2; }
.bento__tile--md { grid-column: span 2; }
.bento__tile-cap {
  position: absolute;
  left: 24px; bottom: 24px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-paper);
  background: rgba(5,14,32,0.7);
  padding: 6px 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--tr), transform var(--tr);
}
.bento__tile:hover .bento__tile-cap { opacity: 1; transform: translateY(0); }
.bento__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 4px;
  transition: gap var(--tr);
}
.bento__more:hover { gap: 18px; }

/* --- FINAL CTA (replaces sponsors) --- */
.final-cta {
  background: var(--c-ink);
  color: var(--c-text-on-ink);
  padding-block: clamp(100px, 14vw, 200px);
  text-align: center;
}
.final-cta__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 28px;
}
.final-cta__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.final-cta__title em { font-style: italic; opacity: 0.75; }
.final-cta__lead {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.5;
  max-width: 52ch;
  margin: 0 auto 48px;
  opacity: 0.85;
}

/* --- FOOTER (compact, premium) --- */
.site-footer {
  background: var(--c-ink-deep);
  color: var(--c-text-on-ink);
  padding-block: clamp(56px, 7vw, 96px) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-line-ink);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__brand-name {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-paper);
}
.footer__brand-sub {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: flex-end;
}
.footer__nav a {
  font-size: 0.92rem;
  color: var(--c-text-on-ink);
  transition: opacity var(--tr-fast);
  position: relative;
  padding-block: 4px;
}
.footer__nav a:hover { opacity: 0.6; }
.footer__nav a::after {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr);
}
.footer__nav a:hover::after { transform: scaleX(1); }

.footer__mid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding-block: 32px;
  border-bottom: 1px solid var(--c-line-ink);
}
.footer__contact {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--c-text-on-ink);
  line-height: 1.7;
}
.footer__contact a {
  color: var(--c-paper);
  border-bottom: 1px solid currentColor;
  text-underline-offset: 4px;
}
.footer__contact-lbl {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line-ink);
  color: var(--c-text-on-ink);
  transition: all var(--tr-fast);
}
.footer__social a:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: var(--c-paper); }
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a { border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color var(--tr-fast); }
.footer__legal a:hover { border-bottom-color: currentColor; }

/* --- Cookie banner (mock) --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: var(--c-ink);
  color: var(--c-text-on-ink);
  padding: 28px 32px;
  z-index: 200;
  box-shadow: var(--shadow-2);
}
.cookie-banner h4 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-paper);
  margin-bottom: 8px;
}
.cookie-banner p { font-size: 0.88rem; margin-bottom: 18px; opacity: 0.85; line-height: 1.55; }
.cookie-banner__row { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 20px; font-size: 0.78rem; }

/* --- Inner page hero --- */
.page-hero {
  padding: clamp(160px, 20vw, 240px) 0 clamp(48px, 6vw, 80px);
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}
.page-hero__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  max-width: 14ch;
  margin-top: 24px;
}
.page-hero__title em { font-style: italic; opacity: 0.7; }
.page-hero__lead {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--c-text-soft);
  max-width: 56ch;
  margin-top: 28px;
}

/* --- Page-Hero MIT Banner-Bild (Medaillen-Motiv shapka, Motiv links) --- */
.page-hero--image {
  position: relative;
  background: var(--c-ink-deep);
  border-bottom: 0;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: clamp(150px, 18vw, 210px) 0 clamp(52px, 6vw, 80px);
}
.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero--image .page-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.page-hero--image .page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Motiv (Medaillen) sitzt links — dort verankern, damit es immer sichtbar bleibt */
  object-position: left center;
  filter: saturate(1.05) contrast(1.05);
}
/* Verlauf: dunkel an den Rändern, Medaillen links durchscheinend, Text rechts lesbar */
.page-hero--image .page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,14,32,0.30) 0%, rgba(5,14,32,0.20) 22%, rgba(5,14,32,0.78) 60%, rgba(5,14,32,0.92) 100%),
    linear-gradient(180deg, rgba(5,14,32,0.55) 0%, rgba(5,14,32,0.25) 40%, rgba(5,14,32,0.80) 100%);
}
.page-hero--image .wrap { position: relative; z-index: 1; width: 100%; }
.page-hero--image .eyebrow { color: var(--c-accent-soft); }
.page-hero--image .eyebrow::before { background: var(--c-accent-soft); }
.page-hero--image .page-hero__title { color: var(--c-paper); }
.page-hero--image .page-hero__title em { opacity: 0.82; }
.page-hero--image .page-hero__lead { color: rgba(244,241,234,0.85); }
/* Text rechts ausrichten, damit er nicht auf den Medaillen liegt */
@media (min-width: 768px) {
  .page-hero--image .wrap { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
  .page-hero--image .page-hero__title { max-width: 16ch; }
  .page-hero--image .page-hero__lead { margin-left: auto; }
  .page-hero--image .eyebrow { flex-direction: row-reverse; }
  .page-hero--image .eyebrow::before { margin-left: 12px; margin-right: 0; }
}

/* --- Bio layout --- */
.bio {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.bio__media {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bio__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--c-paper-soft);
}
.bio__media-cap {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.bio__text { max-width: 62ch; }
.bio__text > p:first-of-type {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--c-ink);
  margin-bottom: 40px;
}
.bio__text h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--c-ink);
  margin: 56px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  letter-spacing: -0.015em;
}
.bio__text h3:first-of-type { margin-top: 0; }
.bio__text p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.2em; }

.erfolge {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 0.95rem;
}
.erfolge th, .erfolge td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.erfolge th {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  border-bottom: 1px solid var(--c-ink);
}
.erfolge td:first-child {
  font-family: var(--ff-mono);
  font-weight: 500;
  color: var(--c-ink);
  white-space: nowrap;
  width: 130px;
}

/* --- Gallery of galleries (card grid) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gallery-card {
  background: var(--c-paper);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--tr);
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card__cover {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-paper-soft);
  position: relative;
}
.gallery-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.gallery-card:hover .gallery-card__cover img { transform: scale(1.05); }
.gallery-card__cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,14,32,0.55));
}
.gallery-card__count {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(5,14,32,0.78);
  color: var(--c-paper);
  padding: 6px 12px;
}
.gallery-card__body { padding: 24px 0 0; }
.gallery-card__year {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}
.gallery-card__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.018em;
}
.gallery-card__category {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-top: 10px;
}

/* --- Contact page --- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__info { font-size: 1.05rem; line-height: 1.7; }
.contact__info h3 {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin: 32px 0 12px;
}
.contact__info a { color: var(--c-ink); border-bottom: 1px solid currentColor; }
.contact__form { background: var(--c-paper-soft); padding: clamp(28px, 4vw, 48px); border: 1px solid var(--c-line); }
.contact__form label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 22px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-text);
}
.contact__form textarea { min-height: 140px; resize: vertical; }
.contact__form input:focus,
.contact__form textarea:focus { outline: 2px solid var(--c-ink); outline-offset: -1px; border-color: var(--c-ink); }
.contact__legal { font-size: 0.82rem; color: var(--c-text-soft); margin-top: 18px; line-height: 1.5; }

/* --- Filter bar (used on bilder) --- */
.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 56px;
}
.filter button {
  padding: 10px 18px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  background: transparent;
  border: 1px solid var(--c-line);
  transition: all var(--tr-fast);
}
.filter button:hover { color: var(--c-ink); border-color: var(--c-ink); }
.filter button.is-active { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.4,0,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--c-ink-deep);
  color: var(--c-paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
  transform: translateX(100%);
  transition: transform var(--tr);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: var(--pad-x);
  width: 48px; height: 48px;
  font-size: 2rem;
  color: var(--c-paper);
  line-height: 1;
}
.mobile-nav a {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 500;
  color: var(--c-paper);
  padding: 10px 0;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--c-line-ink);
  transition: padding-left var(--tr), opacity var(--tr-fast);
}
.mobile-nav a:hover, .mobile-nav a:focus { padding-left: 16px; opacity: 0.7; }
.mobile-nav__meta {
  margin-top: 40px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--c-text-on-ink-soft);
  line-height: 1.8;
}
.mobile-nav__meta a { font-size: inherit; border-bottom: 1px solid; padding: 0; }
body.nav-open { overflow: hidden; }

/* ============================================================
   VIDEO — facade (click-to-load) + loaded iframe
   ============================================================ */
.yt-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Equal-size video facade grid */
.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.video-row .video-card { aspect-ratio: 16 / 9; }
.vid-lead {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}
@media (max-width: 900px) {
  .video-row { grid-template-columns: 1fr; }
  .vid-lead { aspect-ratio: 16 / 9; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 14, 32, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 64px);
}
.lightbox.is-open { display: flex; animation: lbfade 240ms ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb__stage {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb__stage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb__stage figcaption {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
  text-align: center;
  max-width: 60ch;
}
.lb__close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-paper);
  opacity: 0.7;
  transition: opacity var(--tr-fast);
  z-index: 2;
}
.lb__close:hover { opacity: 1; }
.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px; height: 60px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--c-paper);
  opacity: 0.55;
  transition: opacity var(--tr-fast), background var(--tr-fast);
  border-radius: 50%;
  z-index: 2;
}
.lb__nav:hover { opacity: 1; background: rgba(255,255,255,0.08); }
.lb__prev { left: 16px; }
.lb__next { right: 16px; }
.lb__counter {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--c-text-on-ink-soft);
}
@media (max-width: 580px) {
  .lb__nav { width: 48px; height: 48px; font-size: 2rem; }
  .lb__prev { left: 4px; } .lb__next { right: 4px; }
}

/* ============================================================
   GALLERY (data-driven cards)
   ============================================================ */
.gallery-card__cover { cursor: pointer; }
.gallery-card { cursor: pointer; }

/* ============================================================
   PRESSE — refined editorial (feature + list)
   ============================================================ */
.press-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 8px;
}
.press-feature__quote {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-text-on-ink);
}
.press-feature__quote .src {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
  margin-top: 28px;
}
.press-feature__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ============================================================
   CONTACT — refined
   ============================================================ */
.contact__info h3:first-child { margin-top: 0; }

/* ============================================================
   ÜBER — quote band + media strip
   ============================================================ */
.quote-band {
  background: var(--c-ink);
  color: var(--c-text-on-ink);
  padding-block: clamp(64px, 9vw, 130px);
  text-align: center;
}
.quote-band__text {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto;
}
.quote-band__cite {
  display: block;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-on-ink-soft);
  margin-top: 32px;
}
.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.media-strip figure { margin: 0; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: var(--c-paper-soft); }
.media-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tr-slow); }
.media-strip figure:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .media-strip { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   LEGAL PROSE (Impressum / Datenschutz)
   ============================================================ */
.legal-prose { max-width: 70ch; }
.legal-prose h2 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--c-ink);
  margin: 48px 0 14px;
  letter-spacing: -0.015em;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-ink);
  margin: 28px 0 8px;
}
.legal-prose p, .legal-prose li { font-size: 1rem; line-height: 1.7; color: var(--c-text); }
.legal-prose a { color: var(--c-ink); border-bottom: 1px solid currentColor; }
.legal-prose .todo {
  background: rgba(177,18,38,0.06);
  border-left: 3px solid var(--c-accent);
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--c-accent);
  margin: 8px 0;
}
.legal-prose .muted { color: var(--c-text-soft); font-size: 0.9rem; }

/* --- Mockup flag --- */
.mockup-flag {
  position: fixed;
  top: 12px; right: 12px;
  z-index: 1000;
  background: var(--c-accent);
  color: var(--c-paper);
  padding: 6px 12px;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .bento { grid-template-rows: repeat(2, 28vh); }
}

@media (max-width: 900px) {
  .nav-list { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header__cta { display: none; }
  .hero__row { flex-direction: column; align-items: stretch; }
  .hero__meta { position: static; padding: 24px var(--pad-x) 0; opacity: 0.6; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--c-line); }
  .stats__item:last-child { border-bottom: 0; padding-bottom: 0; }
  .stats__item:first-child { padding-top: 0; }
  .story { grid-template-columns: 1fr; gap: 32px; }
  .story__aside { position: static; }
  .timeline__row { grid-template-columns: 80px 1fr; }
  .timeline__desc { grid-column: 2; grid-row: 2; padding-top: 8px; }
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .videos-head { grid-template-columns: 1fr; gap: 24px; }
  .press { grid-template-columns: 1fr; }
  .press__item { border-right: 0; border-bottom: 1px solid var(--c-line-ink); min-height: auto; }
  .press__item:last-child { border-bottom: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 24vh); }
  .bento__tile--lg { grid-row: span 2; }
  .bio { grid-template-columns: 1fr; }
  .bio__media { position: static; max-width: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .footer__nav { justify-content: flex-start; }
  .footer__mid { grid-template-columns: 1fr; gap: 24px; }
  .footer__social { justify-content: flex-start; }
}

@media (max-width: 580px) {
  :root { --t-body: 16px; }
  .hero__content { padding-block: 160px 48px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .bento { grid-template-rows: repeat(4, 24vh); }
  .bento__tile { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* --- SEO-Prose Block --- */
.seo-prose { max-width: 70ch; }
.seo-prose p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 1.3em;
}
.seo-prose strong { color: var(--c-ink); font-weight: 600; }
