/* ==========================================================================
   Asghari MdB – main.css  |  Dark Theme
   Design-System: #0f253a (primary) | #ffffff (text/light) | #c0880e (gold)
   ========================================================================== */

/* ──────────────────────────────────────────────
   0. CUSTOM PROPERTIES
   ────────────────────────────────────────────── */
:root {
  /* Farben – Dark Theme */
  --color-primary:       #0f253a;   /* Dunkelblau – Haupthintergrund */
  --color-primary-light: #152e47;   /* Etwas heller – Cards, Elemente */
  --color-primary-dark:  #0a1c2d;   /* Noch dunkler – Footer, Header */
  --color-secondary:     #ffffff;   /* Weiß – Text, Akzente */
  --color-accent:        #c0880e;   /* Gold */
  --color-accent-light:  #d9a32a;
  --color-accent-dark:   #9a6c0b;

  /* Text */
  --color-text:          rgba(255, 255, 255, 0.92);
  --color-text-muted:    rgba(255, 255, 255, 0.58);
  --color-text-faint:    rgba(255, 255, 255, 0.35);

  /* Flächen */
  --color-surface:       #152e47;   /* Karten, erhöhte Flächen */
  --color-surface-2:     #1a3a55;   /* Noch heller */
  --color-border:        rgba(255, 255, 255, 0.10);
  --color-border-accent: rgba(192, 136, 14, 0.35);

  /* Typografie */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  clamp(1rem, 4vw, 2.5rem);
  --header-h:       80px;
  --section-pad:    clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Radius & Schatten */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.5), 0 8px 16px rgba(0,0,0,0.3);
}

/* ──────────────────────────────────────────────
   1. RESET & BASE
   ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-primary);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Barrierefreiheit: Skip-Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; }

/* Focus-Styles (WCAG 2.1 AA) */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ──────────────────────────────────────────────
   2. LAYOUT-HELFER
   ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-pad); }

/* ──────────────────────────────────────────────
   3. TYPOGRAFIE
   ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-secondary);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 60ch;
}

.section-header { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-header--light .section-title  { color: var(--color-secondary); }
.section-header--light .section-intro  { color: rgba(255,255,255,0.65); }
.section-header--light .section-eyebrow { color: var(--color-accent-light); }

/* ──────────────────────────────────────────────
   4. BUTTONS
   ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), color var(--transition-base),
              border-color var(--transition-base), transform var(--transition-fast),
              box-shadow var(--transition-base);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-secondary);
  border: 2px solid var(--color-accent);
}
.btn--primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }

/* Outline-Dunkel (auf dunklem Hintergrund – weiß) */
.btn--outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn--large { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--small { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ──────────────────────────────────────────────
   5. HEADER
   ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background 800ms ease, box-shadow 800ms ease;
  background: transparent;
}

.site-header.is-scrolled {
  background: var(--color-primary-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Auf der Frontpage: immer weiße Nav-Links */
.asghari-frontpage .site-header .nav-link { color: var(--color-secondary); }
.asghari-frontpage .site-header .hamburger-line { background: var(--color-secondary); }

/* Andere Seiten: Header immer dunkel */
body:not(.asghari-frontpage) .site-header { background: var(--color-primary-dark); }
body:not(.asghari-frontpage) .site-header .nav-link { color: var(--color-secondary); }
body:not(.asghari-frontpage) .site-header .hamburger-line { background: var(--color-secondary); }
body:not(.asghari-frontpage) .site-main { padding-top: var(--header-h); }

/* Archiv + Einzelbeitrag: kein extra padding-top – Hero-Sektionen übernehmen den Abstand selbst */
body.archive .site-main,
body.single  .site-main { padding-top: 0; }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo img {
  height: 56px;
  width: auto;
  transition: opacity var(--transition-fast);
}
.site-logo img:hover { opacity: 0.85; }

.primary-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-secondary);
  padding-block: 0.25rem;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.hamburger-line {
  height: 2px; width: 100%;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────────
   6. SCROLL-OVERLAY ANIMATION + SCROLL SNAP
   Hero bleibt sticky, nachfolgende Sektionen
   schieben sich von unten darüber.
   ────────────────────────────────────────────── */
.section--hero {
  position: sticky;
  top: 0;
  z-index: 0;
}

/* Alle Sektionen nach Hero liegen darüber */
.section--slogan,
.section--press,
.section--kernbotschaften,
.section--timeline,
.section--gallery,
.section--contact-teaser {
  position: relative;
  z-index: 1;
}


/* ──────────────────────────────────────────────
   7. HERO – SEKTION 1
   ────────────────────────────────────────────── */
.section--hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, 0.5%); }
  100% { transform: scale(1.04) translate(0.5%, -0.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 110% at 50% 50%, transparent 0%, rgba(10, 28, 45, 0.52) 100%),
    linear-gradient(
      135deg,
      rgba(10, 28, 45, 0.60) 0%,
      rgba(10, 28, 45, 0.32) 60%,
      rgba(10, 28, 45, 0.12) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}

.hero-text {
  max-width: 640px;
  color: var(--color-secondary);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(192,136,14,0.5);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  animation: fadeInLeft 1s ease 0.5s both;
}

/* "Prof. Dr." kleiner als Name */
.hero-title--prefix {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.80);
  margin-bottom: 0.2em;
}

.hero-title--name {
  display: block;
  color: var(--color-secondary);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  animation: fadeInLeft 1s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

/* Scroll-Pfeil (ohne Label) */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: fadeInUp 1s ease 1.2s both;
}
.hero-scroll__arrow { animation: bounce 2s ease-in-out infinite; }
.hero-scroll__arrow svg { width: 24px; height: 24px; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ──────────────────────────────────────────────
   8. SLOGAN – SEKTION 2
   ────────────────────────────────────────────── */
.section--slogan {
  /* Sektionen 2+3 teilen einen Verlauf dunkel → hell */
  background: linear-gradient(180deg,
    #0a1c2d 0%,
    #1a3a55 100%
  );
  text-align: center;
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(0.5rem, 1.5vw, 1.5rem);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.6);
}

.slogan-content { max-width: 860px; margin: 0 auto; }

.slogan-heading {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-secondary);
}

.slogan-word {
  display: block;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slogan-word.is-visible { opacity: 1; transform: translateY(0); }
.slogan-word--1 { transition-delay: 0ms; }
.slogan-word--2 { transition-delay: 300ms; color: var(--color-accent-light); }
.slogan-word--3 { transition-delay: 600ms; }
.slogan-word--subtitle { transition-delay: 700ms; }

.slogan-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.6vw, 1.1875rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.slogan-accent { color: var(--color-accent-light); }

/* ──────────────────────────────────────────────
   9. PRESS CAROUSEL – SEKTION 3
   ────────────────────────────────────────────── */
.section--press {
  /* Fortsetzung des Verlaufs von Sektion 2: hell → noch heller */
  background: linear-gradient(180deg,
    #1a3a55 0%,
    #1e4a6e 100%
  );
}

.press-carousel { position: relative; overflow: hidden; }

.press-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.press-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base),
              border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}
.press-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-border-accent);
}

.press-card__img-wrap { aspect-ratio: 3/2; overflow: hidden; }
.press-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.press-card:hover .press-card__img { transform: scale(1.04); }

.press-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.press-card__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
}

.press-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}
.press-card__title-link { transition: color var(--transition-fast); }
.press-card__title-link:hover { color: var(--color-accent); }

.press-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}
.press-card__more:hover { gap: 0.5rem; color: var(--color-accent-light); }

/* Carousel Controls (Mobile) */
.carousel-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.carousel-btn:hover { background: var(--color-accent); border-color: var(--color-accent); }
.carousel-btn svg  { width: 16px; height: 16px; }

.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}
.carousel-dot.is-active { background: var(--color-accent); transform: scale(1.3); }

.section-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ──────────────────────────────────────────────
   10. KERNBOTSCHAFTEN – SEKTION 4
   ────────────────────────────────────────────── */
.section--kernbotschaften {
  position: relative;
  /* Feste Höhe verhindert Höhensprünge beim Panel-Wechsel */
  min-height: max(620px, 75vh);
  padding: 0;
  overflow: hidden;
  color: var(--color-secondary);
}

.kb-background { position: absolute; inset: 0; z-index: 0; }
.kb-bg-img {
  position: absolute; inset: 0;
  opacity: 0;
  /* Längere Überblendung: 1400ms */
  transition: opacity 1400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.kb-bg-img.is-active { opacity: 1; }
.kb-bg-img img {
  width: 100%;
  height: 100%;
  /* cover + mittige Ausrichtung sorgt für konsistente Höhe aller Bilder */
  object-fit: cover;
  object-position: center center;
}
.kb-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 28, 45, 0.94) 0%,
    rgba(10, 28, 45, 0.78) 50%,
    rgba(10, 28, 45, 0.55) 100%
  );
}

.kb-container {
  position: relative;
  z-index: 1;
  padding-block: var(--section-pad);
}

.kb-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.kb-bars {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.kb-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: rgba(255,255,255,0.55);
  border-left: 3px solid rgba(255,255,255,0.15);
  transition: color var(--transition-base), border-color var(--transition-base),
              background var(--transition-base);
  overflow: hidden;
}
.kb-bar:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }
.kb-bar.is-active {
  color: var(--color-secondary);
  border-left-color: var(--color-accent);
  background: rgba(192,136,14,0.10);
}

.kb-bar__icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.kb-bar__label {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.kb-bar__indicator {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%) translateX(100%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent var(--color-accent);
  transition: transform var(--transition-base);
}
.kb-bar.is-active .kb-bar__indicator { transform: translateY(-50%) translateX(0); }

/* Feste min-height verhindert Höhensprünge des Wrappers beim Textwechsel */
.kb-panels { position: relative; min-height: 380px; }

.kb-panel {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
  position: absolute; width: 100%;
}
.kb-panel.is-active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.kb-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.kb-panel__title::before {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--color-accent);
  margin-bottom: 1rem;
}

.kb-panel__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 65ch;
}

/* ──────────────────────────────────────────────
   11. TIMELINE – SEKTION 5
   ────────────────────────────────────────────── */
.section--timeline {
  /* Sektionen 5+6 teilen einen Verlauf dunkel → hell → dunkel */
  background: linear-gradient(180deg,
    #0a1c2d 0%,
    #1e4a6e 100%
  );
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

/* Ohne Scroll-Buttons: Track nimmt vollen Platz */
.timeline-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 2rem;
}
.timeline-track-wrap::-webkit-scrollbar { display: none; }

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 600px;
}

/* Einzelne Station */
.timeline-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.25rem;
}

.station-dot-line {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
}

.station-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  transition: background var(--transition-base);
}
.timeline-station:first-child .station-line--before { background: transparent; }
.timeline-station:last-child  .station-line--after  { background: transparent; }
.timeline-station.is-active   .station-line         { background: var(--color-accent); }

.station-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base),
              transform var(--transition-base), box-shadow var(--transition-base);
  z-index: 1;
}
.timeline-station.is-active .station-dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(192,136,14,0.2);
}
.timeline-station:not(.is-active):hover .station-dot {
  border-color: var(--color-accent-light);
  transform: scale(1.05);
}

.station-icon { font-size: 1.375rem; line-height: 1; }

.station-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.5rem;
  gap: 0.375rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  width: 100%;
}
.timeline-station.is-active   .station-btn { color: var(--color-secondary); }
.timeline-station:not(.is-active):hover .station-btn { color: rgba(255,255,255,0.8); }

.station-period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.station-headline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
}

/* Content-Panels */
.timeline-content-wrap {
  margin-top: 3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.station-content {
  padding: 2.5rem 3rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.station-content.is-active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.station-content__period {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent);
  display: block; margin-bottom: 0.625rem;
}

.station-content__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.station-content__subtitle {
  font-size: 1rem; font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.station-content__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ──────────────────────────────────────────────
   12. GALERIE – SEKTION 6
   ────────────────────────────────────────────── */
.section--gallery {
  /* Fortsetzung: hell → dunkel (Rückkehr zur Ausgangsdunkelheit) */
  background: linear-gradient(180deg,
    #1e4a6e 0%,
    #0a1c2d 100%
  );
  padding-top: clamp(2rem, 4vw, 4rem);
}

/* ── Galerie: Horizontales Scroll-Band ── */
.gallery-scroll-outer {
  position: relative;
}

/* Scrollleiste dezent stylen */
.gallery-h-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  /* Dezente Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) rgba(255,255,255,0.08);
}
.gallery-h-track::-webkit-scrollbar { height: 4px; }
.gallery-h-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 2px; }
.gallery-h-track::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 2px; }

/* Nav-Buttons links/rechts */
.gallery-scroll-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.gallery-scroll-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}
.gallery-scroll-btn:hover { background: var(--color-accent); border-color: var(--color-accent); }
.gallery-scroll-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.gallery-scroll-btn svg { width: 16px; height: 16px; }

/* Einzelne Galerie-Karte im Track */
.gallery-item {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 240px;
  max-width: 340px;
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  scroll-snap-align: start;
}

/* Lazy-hidden: Bilder die noch nicht sichtbar sind */
.gallery-item[data-lazy="pending"] .gallery-img {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item[data-lazy="loaded"] .gallery-img {
  opacity: 1;
}

.gallery-trigger {
  display: block; width: 100%;
  position: relative; overflow: hidden;
}

.gallery-img {
  width: 100%; aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity 0.4s ease;
  display: block;
}
.gallery-trigger:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,28,45,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: #fff;
}
.gallery-trigger:hover .gallery-overlay { opacity: 1; }

/* Rückwärtskompatibilität: gallery-grid bleibt für Archivseite */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid .gallery-item {
  flex: unset; min-width: unset; max-width: unset;
  scroll-snap-align: none;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,12,20,0.94);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.lightbox-content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; gap: 1rem;
}

.lightbox-figure { max-width: min(900px, 80vw); }

.lightbox-img {
  max-height: 80vh; max-width: 80vw;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  text-align: center; padding: 0.75rem;
  color: rgba(255,255,255,0.65); font-size: 0.875rem;
}

.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-nav {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  transition: background var(--transition-fast);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav svg { width: 20px; height: 20px; }

.lightbox-counter {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────
   13. KONTAKT-TEASER – SEKTION 7
   ────────────────────────────────────────────── */
.section--contact-teaser {
  background: linear-gradient(180deg,
    #0a1c2d 0%,
    #152e47 60%,
    #0a1c2d 100%
  );
}

.contact-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.contact-teaser__img-wrap { position: relative; }
.contact-teaser__img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.contact-teaser__img-deco {
  position: absolute;
  inset: -1.5rem -1.5rem 1.5rem 1.5rem;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: 0; opacity: 0.35;
}

.contact-teaser__text {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-quick-list {
  margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.contact-quick-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; }
.contact-quick-icon { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }
.contact-quick-link {
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition-fast);
}
.contact-quick-link:hover { color: var(--color-accent-light); }

.contact-teaser__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ──────────────────────────────────────────────
   14. FOOTER
   ────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary-dark);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-office__title {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-icon { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }

.footer-office__address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.footer-link { color: rgba(255,255,255,0.75); transition: color var(--transition-fast); }
.footer-link:hover { color: var(--color-accent-light); }

/* Footer Bottom */
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.footer-bundestag-logo {
  height: 40px; width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast);
}
.footer-bundestag-logo:hover { opacity: 0.85; }

.social-list { display: flex; gap: 1rem; align-items: center; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--color-border);
  transition: background var(--transition-fast), transform var(--transition-fast),
              border-color var(--transition-fast);
}
.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.social-link img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }

.legal-list { display: flex; gap: 1.5rem; }
.legal-link {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  transition: color var(--transition-fast);
}
.legal-link:hover { color: var(--color-accent-light); }

.footer-copyright { font-size: 0.8125rem; color: var(--color-text-faint); text-align: center; }

/* ──────────────────────────────────────────────
   15. ARCHIV-SEITE
   ────────────────────────────────────────────── */
.archive-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
}
.archive-hero__title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--color-secondary); margin-bottom: 0.75rem; }
.archive-hero__sub   { color: var(--color-text-muted); font-size: 1.0625rem; }

.archive-container { padding-top: 3rem; padding-bottom: 5rem; }

.press-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.archive-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base),
              border-color var(--transition-base);
  display: flex; flex-direction: column;
}
.archive-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-border-accent);
}

.archive-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.archive-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.archive-card:hover .archive-card__img { transform: scale(1.04); }
.archive-card__img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--color-primary);
}

.archive-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; gap: 0.75rem; }
.archive-card__date  { font-size: 0.8125rem; font-weight: 600; color: var(--color-accent); }
.archive-card__title { font-family: var(--font-heading); font-size: 1.375rem; color: var(--color-secondary); }
.archive-card__title a:hover { color: var(--color-accent); }
.archive-card__excerpt { flex: 1; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.65; }

.archive-pressebilder { margin-top: 5rem; }

/* Archiv: Beiträge nachladen */
.archive-load-more {
  text-align: center;
  margin: 3rem 0;
}
#archive-load-more[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Archiv: Pressebilder-Grid (alle sichtbar, kein Scrollen) */
.archive-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.archive-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.archive-gallery-item .gallery-trigger {
  display: block;
  width: 100%;
}
.archive-gallery-item .gallery-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.archive-gallery-item .gallery-trigger:hover .gallery-img { transform: scale(1.05); }

/* ──────────────────────────────────────────────
   16. EINZELBEITRAG
   ────────────────────────────────────────────── */
.single-hero {
  position: relative;
  min-height: clamp(340px, 50vh, 520px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.single-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,28,45,0.92) 0%, rgba(10,28,45,0.45) 60%, transparent 100%);
}
.single-hero__content {
  position: relative; z-index: 1;
  padding-bottom: 3rem;
  padding-top: calc(var(--header-h) + 2rem);
}
.single-hero--no-img {
  background: var(--color-primary-dark);
  min-height: calc(var(--header-h) + 200px);
  align-items: flex-end;
}
.single-hero--no-bg {
  background: transparent;
  min-height: 0;
}

.single-meta { margin-bottom: 0.75rem; }
.single-date {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--color-accent-light);
}
.single-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--color-secondary);
  line-height: 1.15; max-width: 800px;
}

/* Beitragsbild unterhalb des Heroes */
.single-featured-img {
  max-width: 512px;
  margin: 2rem auto 0;
  padding: 0 var(--container-pad);
}
.single-featured-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.single-container { padding-top: 3rem; padding-bottom: 5rem; }
.single-layout    { display: grid; max-width: 760px; margin: 0 auto; }

.entry-content { font-size: 1.0625rem; line-height: 1.8; color: var(--color-text); }
.entry-content h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; color: var(--color-secondary); }
.entry-content h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; color: var(--color-secondary); }
.entry-content p  { margin-bottom: 1.5rem; }
.entry-content a  { color: var(--color-accent-light); text-decoration: underline; }

.post-navigation {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 3rem 0 2rem;
}
.post-nav-link {
  display: flex; flex-direction: column; gap: 0.375rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.post-nav-link:hover { color: var(--color-accent-light); }
.post-nav-link--next { text-align: right; }
.post-nav-label { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.post-nav-title { font-family: var(--font-heading); font-size: 1.125rem; color: var(--color-secondary); }

.back-to-archive { margin-top: 1.5rem; }

/* ──────────────────────────────────────────────
   17. STATISCHE SEITEN
   ────────────────────────────────────────────── */
.page-hero {
  background: var(--color-primary-dark);
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  border-bottom: 1px solid var(--color-border);
}
.page-hero__title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--color-secondary); }

.page-container { padding-top: 3rem; padding-bottom: 5rem; }
.page-layout    { max-width: 800px; margin: 0 auto; }
.page-content   { font-size: 1.0625rem; line-height: 1.8; }

.legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--color-secondary); }
.legal-content h3 { font-size: 1.25rem; margin: 1.75rem 0 0.75rem; color: var(--color-secondary); }
.legal-content p  { margin-bottom: 1.25rem; color: var(--color-text-muted); }
.legal-content ul { margin: 1rem 0 1.25rem 1.5rem; list-style: disc; }
.legal-content li { margin-bottom: 0.375rem; color: var(--color-text-muted); }
.legal-content a  { color: var(--color-accent-light); text-decoration: underline; }
.legal-updated    { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: 2rem; }

/* ──────────────────────────────────────────────
   18. PAGINATION
   ────────────────────────────────────────────── */
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.nav-links  { display: flex; gap: 0.5rem; align-items: center; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: background var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast);
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
}

/* ──────────────────────────────────────────────
   19. SCROLL-REVEAL
   ────────────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item:nth-child(2) { transition-delay: 80ms; }
.reveal-item:nth-child(3) { transition-delay: 160ms; }

/* ──────────────────────────────────────────────
   20. HERO-ANIMATIONEN
   ────────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────
   21. RESPONSIVE – TABLET (≤ 1024px)
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .press-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .press-track { grid-template-columns: repeat(2, 1fr); }
  .kb-layout   { grid-template-columns: 1fr; gap: 2rem; }
  .kb-bars     { flex-direction: row; overflow-x: auto; gap: 0.5rem; }
  .kb-bar {
    flex: 1; min-width: 140px;
    flex-direction: column; text-align: center;
    border-left: none; border-bottom: 3px solid rgba(255,255,255,0.15);
  }
  .kb-bar.is-active { border-bottom-color: var(--color-accent); }
  .kb-bar__indicator { display: none; }
  .contact-teaser-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-teaser__img-wrap { max-width: 480px; margin: 0 auto; }
}

/* ──────────────────────────────────────────────
   22. RESPONSIVE – MOBIL (≤ 768px)
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .primary-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--color-primary-dark);
    padding: 2rem var(--container-pad);
    transform: translateY(-110%); opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    pointer-events: none;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list   { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .nav-link   { font-size: 1.25rem; }
  .nav-toggle { display: flex; }

  /* Press */
  .press-track { grid-template-columns: 1fr; }
  .press-card  { display: none; }
  .press-card.is-active { display: flex; }
  .carousel-controls { display: flex; }

  /* Timeline */
  .timeline-track { grid-template-columns: repeat(4, minmax(160px, 1fr)); }
  .station-content { padding: 1.75rem; }
  .station-headline { font-size: 0.875rem; }

  /* Footer */
  .footer-offices { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .archive-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Lightbox */
  .lightbox-nav { display: none; }
  .lightbox-img { max-width: 95vw; max-height: 80vh; }

  /* Kernbotschaften */
  .kb-bars { flex-wrap: wrap; }
  .kb-bar  { min-width: 120px; font-size: 0.875rem; padding: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .press-archive-grid { grid-template-columns: 1fr; }
  .archive-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .post-navigation { grid-template-columns: 1fr; }
  .post-nav-link--next { text-align: left; }
  .contact-teaser__actions { flex-direction: column; }
  .timeline-track { grid-template-columns: repeat(4, 140px); }
}

/* ──────────────────────────────────────────────
   23. PRINT
   ────────────────────────────────────────────── */
@media print {
  body { background: white; color: black; }
  .site-header, .hero-scroll, .carousel-controls,
  .gallery-grid, .lightbox, .site-footer .social-list { display: none; }
  .section { padding: 1rem 0; }
  h1, h2, h3, h4 { color: black; }
}

/* ──────────────────────────────────────────────
   24. REDUCED MOTION
   ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-img-wrap { animation: none; }
}
