/* ============================================
   STAATSTERRORISTEN.DE — Click Dummy
   Design: Institutional / Judicial Documentation
   ============================================ */

/* Self-hosted fonts — place woff2 files in ../fonts/ */
@font-face {
  font-family: 'Cormorant Garant';
  src: url('../fonts/cormorant-garant-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garant';
  src: url('../fonts/cormorant-garant-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garant';
  src: url('../fonts/cormorant-garant-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garant';
  src: url('../fonts/cormorant-garant-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garant';
  src: url('../fonts/cormorant-garant-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #FAFAF7;
  --bg-dark: #0F1118;
  --bg-card: #FFFFFF;
  --bg-photo: #D8D8D8;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-light: #F5F5F3;
  --text-muted: #9A9A9A;
  --accent-crimson: #7B1818;
  --accent-crimson-light: #9B2C2C;
  --accent-gold: #B8942A;
  --accent-gold-muted: #D4B44A;
  --border-light: #E2E2DE;
  --border-dark: #2A2A3A;
  --serif: 'Cormorant Garant', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
}

a {
  color: var(--accent-crimson);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-crimson-light);
}

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

/* --- Top Bar (Government Style) --- */
.top-bar {
  background: var(--bg-dark);
  padding: 0;
  border-bottom: 3px solid var(--accent-crimson);
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.top-bar-lang {
  display: flex;
  gap: 4px;
  align-items: center;
}

.top-bar-lang a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 243, 0.6);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.top-bar-lang a:hover {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.top-bar-lang a.active {
  color: var(--text-light);
  border-color: var(--accent-gold);
  background: rgba(184, 148, 42, 0.12);
}

.top-bar-lang-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  padding: 0 2px;
}

/* --- Crime Type Category (above charges) --- */
.perp-card-crime-type {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-crimson);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.3;
}

/* --- Charges Section Label --- */
.perp-card-charges-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* --- Crime Type in List View --- */
.perp-list-crime-type {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-crimson);
  line-height: 1.3;
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--bg-dark);
  padding: 0;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px 20px;
}

.site-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.site-subtitle {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.main-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
}

.main-nav a {
  display: block;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
}

.main-nav a.active {
  color: var(--text-light);
  border-bottom-color: var(--accent-crimson);
}

/* --- Hero / Statement Section --- */
.hero {
  background: var(--bg-dark);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Ken Burns Slideshow --- */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
}

/* 12 slides alternating: historical / modern, 5s each = 60s cycle */
/* Historical portraits (odd) */
.hero-slide:nth-child(1)  { background-image: url('../img/hist-freisler.jpg');       background-position: center 15%; }
.hero-slide:nth-child(3)  { background-image: url('../img/hist-himmler.jpg');        background-position: center 10%; }
.hero-slide:nth-child(5)  { background-image: url('../img/hist-eichmann.jpg');       background-position: center 15%; }
.hero-slide:nth-child(7)  { background-image: url('../img/hist-heydrich.jpg');       background-position: center 10%; }
.hero-slide:nth-child(9)  { background-image: url('../img/hist-mielke.jpg');         background-position: center 15%; }
.hero-slide:nth-child(11) { background-image: url('../img/hist-honecker.jpg');       background-position: center 10%; }

/* Modern perpetrator portraits (even) */
.hero-slide:nth-child(2)  { background-image: url('../img/ploog-johannes.jpeg');     background-position: center 20%; }
.hero-slide:nth-child(4)  { background-image: url('../img/koppers-margarete.jpg');   background-position: center 20%; }
.hero-slide:nth-child(6)  { background-image: url('../img/spruss-christian.jpg');    background-position: center 15%; }
.hero-slide:nth-child(8)  { background-image: url('../img/wied-thomas.jpg');         background-position: center 20%; }
.hero-slide:nth-child(10) { background-image: url('../img/sengoez-sinan.jpeg');      background-position: center 15%; }
.hero-slide:nth-child(12) { background-image: url('../img/voelkl-anne.png');         background-position: center 15%; }

/* Stagger animation delays: each slide 5s apart in 60s cycle */
.hero-slide:nth-child(1)  { animation: kb-zoom-in  60s infinite; animation-delay: 0s; }
.hero-slide:nth-child(2)  { animation: kb-zoom-out 60s infinite; animation-delay: 5s; }
.hero-slide:nth-child(3)  { animation: kb-zoom-in  60s infinite; animation-delay: 10s; }
.hero-slide:nth-child(4)  { animation: kb-zoom-out 60s infinite; animation-delay: 15s; }
.hero-slide:nth-child(5)  { animation: kb-zoom-in  60s infinite; animation-delay: 20s; }
.hero-slide:nth-child(6)  { animation: kb-zoom-out 60s infinite; animation-delay: 25s; }
.hero-slide:nth-child(7)  { animation: kb-zoom-in  60s infinite; animation-delay: 30s; }
.hero-slide:nth-child(8)  { animation: kb-zoom-out 60s infinite; animation-delay: 35s; }
.hero-slide:nth-child(9)  { animation: kb-zoom-in  60s infinite; animation-delay: 40s; }
.hero-slide:nth-child(10) { animation: kb-zoom-out 60s infinite; animation-delay: 45s; }
.hero-slide:nth-child(11) { animation: kb-zoom-in  60s infinite; animation-delay: 50s; }
.hero-slide:nth-child(12) { animation: kb-zoom-out 60s infinite; animation-delay: 55s; }

/* Two Ken Burns patterns: zoom-in and zoom-out, alternating for variety */
/* Each slide: ~8.33% = 5s visible in 60s cycle */
@keyframes kb-zoom-in {
  0%      { opacity: 0; transform: scale(1.0); }
  1.5%    { opacity: 1; }
  6.8%    { opacity: 1; }
  8.33%   { opacity: 0; transform: scale(1.12) translate(-1%, 0.5%); }
  100%    { opacity: 0; }
}
@keyframes kb-zoom-out {
  0%      { opacity: 0; transform: scale(1.12) translate(1%, -0.5%); }
  1.5%    { opacity: 1; }
  6.8%    { opacity: 1; }
  8.33%   { opacity: 0; transform: scale(1.0); }
  100%    { opacity: 0; }
}

/* Slide era labels */
.hero-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  padding: 12px 20px;
  z-index: 1;
}

/* Dark overlay on top of slideshow */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 17, 24, 0.88) 0%,
    rgba(15, 17, 24, 0.80) 40%,
    rgba(15, 17, 24, 0.90) 100%
  );
  z-index: 1;
}

/* Subtle crimson radial glow */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(123, 24, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px 72px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: #C53030;
}
.hero-title-since {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(184, 148, 42, 0.4);
  padding: 6px 24px;
  background: rgba(184, 148, 42, 0.1);
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0 auto 28px;
}

.hero-text {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 245, 243, 0.75);
  max-width: 720px;
  margin: 0 auto;
}

/* --- Stats Bar --- */
.stats-bar {
  background: #F2F1EC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  padding: 20px 48px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-crimson);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

/* --- Slider: Neueste Zugänge --- */
.slider {
  background: var(--bg-dark);
  border-bottom: 3px solid var(--accent-crimson);
  position: relative;
  overflow: hidden;
  user-select: none;
}
.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.slider-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 48px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  text-decoration: none;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.2s ease;
}
.slider-slide:hover { background: rgba(255, 255, 255, 0.03); }

.slider-slide-photo {
  width: 220px;
  height: 220px;
  min-width: 220px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(184, 148, 42, 0.5);
  background: var(--bg-dark);
}
.slider-slide-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  display: block;
}
.slider-slide-photo--wanted {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.15);
}
.slider-slide-photo--wanted svg {
  width: 80px;
  height: 80px;
  fill: rgba(255, 255, 255, 0.15);
}

.slider-slide-info {
  flex: 0 1 420px;
  min-width: 0;
}
.slider-slide-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #9B2C2C, #7B1818);
  color: #fff;
  padding: 5px 14px;
  margin-bottom: 12px;
}
.slider-slide-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.slider-slide-position {
  font-size: 1rem;
  color: rgba(245, 245, 243, 0.7);
  margin-top: 4px;
}
.slider-slide-institution {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.slider-slide-crime {
  font-size: 0.85rem;
  font-weight: 500;
  color: #C53030;
  margin-top: 8px;
}
.slider-slide-charges {
  font-size: 0.8rem;
  color: rgba(245, 245, 243, 0.55);
  margin-top: 6px;
  line-height: 1.5;
}
.slider-slide-evidence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 243, 0.5);
  margin-top: 10px;
}
.slider-slide-evidence svg {
  width: 16px;
  height: 16px;
  stroke: rgba(245, 245, 243, 0.5);
}

.slider-slide-right {
  text-align: right;
  flex-shrink: 0;
  min-width: 130px;
}
.slider-slide-date-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 243, 0.65);
}
.slider-slide-date {
  display: block;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-top: 4px;
}
.slider-slide-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 243, 0.5);
  margin-top: 12px;
  transition: color 0.2s;
}
.slider-slide:hover .slider-slide-cta { color: var(--accent-gold); }

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(15, 17, 24, 0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s, opacity 0.25s, transform 0.25s;
  z-index: 2;
  padding: 0;
}
.slider-arrow svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  stroke-width: 2.5;
}
.slider-arrow:hover {
  border-color: var(--accent-gold);
  background: rgba(15, 17, 24, 0.95);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow:disabled {
  opacity: 0.15;
  cursor: default;
  pointer-events: none;
}
.slider-arrow--prev { left: 16px; }
.slider-arrow--next { right: 16px; }

/* Counter */
.slider-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 243, 0.6);
  z-index: 2;
}

/* --- Section Headings --- */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.section-number {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.section-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.section-count {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* --- Perpetrator Grid (Identified — with photos) --- */
.perp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.perp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
}

.perp-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.perp-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-photo);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.perp-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.perp-card:hover .perp-card-photo img {
  filter: grayscale(0%);
}

/* --- Wanted Photo Placeholder --- */
.perp-card-photo--wanted {
  flex-direction: column;
  gap: 12px;
}

.perp-card-wanted-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.perp-card-wanted-icon svg {
  width: 36px;
  height: 36px;
  fill: rgba(255,255,255,0.18);
}

.perp-card-wanted-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
}

.perp-card-wanted-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(184, 148, 42, 0.15);
  border: 1px solid rgba(184, 148, 42, 0.3);
  padding: 6px 14px;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.perp-card:hover .perp-card-wanted-cta {
  background: rgba(184, 148, 42, 0.25);
  border-color: rgba(184, 148, 42, 0.5);
  color: #D4B044;
}

.perp-card-photo-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.perp-card-body {
  padding: 20px 24px 24px;
}

.perp-card-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.2;
}

.perp-card-position {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.perp-card-institution {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.perp-card-charges {
  list-style: none;
  margin-bottom: 16px;
}

.perp-card-charges li {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-crimson);
  padding: 4px 0;
  border-bottom: 1px solid #F5F5F2;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.perp-card-charges li::before {
  content: '\25A0';
  font-size: 0.5rem;
  color: var(--accent-crimson);
  flex-shrink: 0;
}

.perp-card-charges li:last-child {
  border-bottom: none;
}

.perp-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.perp-card-date {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.perp-card-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-crimson);
  display: flex;
  align-items: center;
  gap: 6px;
}

.perp-card-link::after {
  content: '\2192';
  transition: transform 0.2s ease;
}

.perp-card:hover .perp-card-link::after {
  transform: translateX(4px);
}

/* --- Perpetrator List (Unidentified — no photos) --- */
.perp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.perp-list-item {
  display: grid;
  grid-template-columns: 48px 1fr 1fr 1fr 1.2fr 0.7fr 100px;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-bottom: none;
  transition: background 0.15s ease;
}

.perp-list-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.perp-list-item:hover {
  background: #FDFDF8;
}

.perp-list-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-photo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perp-list-avatar svg {
  width: 20px;
  height: 20px;
  opacity: 0.3;
}

.perp-list-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.perp-list-name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 2px;
}

.perp-list-institution {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.perp-list-charge {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-crimson);
}

.perp-list-date {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.perp-list-action {
  text-align: right;
}

.perp-list-action a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- List Header --- */
.perp-list-header {
  display: grid;
  grid-template-columns: 48px 1fr 1fr 1fr 1.2fr 0.7fr 100px;
  gap: 16px;
  padding: 10px 24px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-light);
}

/* --- Quote / Statement Block --- */
.statement-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px;
}

.statement-inner {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  padding: 40px 48px;
  position: relative;
}

.statement-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(184, 148, 42, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.statement-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
}

.statement-note {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.6;
}

/* --- Search Bar --- */
.perp-search {
  margin-bottom: 40px;
}

.perp-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 18px;
}

.perp-search-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.perp-search-input:focus {
  border-color: var(--accent-crimson);
  box-shadow: 0 0 0 3px rgba(123, 24, 24, 0.08);
}

.perp-search-count {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 10px;
  text-transform: uppercase;
}

.perp-search-no-results {
  display: none;
  text-align: center;
  padding: 48px 20px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Visual Breaker (between card rows) --- */
.grid-breaker {
  grid-column: 1 / -1;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.grid-breaker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border-light);
}

.grid-breaker-content {
  display: inline-block;
  position: relative;
  background: var(--bg-primary);
  padding: 0 24px;
}

.grid-breaker-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.grid-breaker-source {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.grid-breaker--stat {
  padding: 32px 0;
}

.grid-breaker--stat::before {
  display: none;
}

.grid-breaker-stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-crimson);
  line-height: 1;
}

.grid-breaker-stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* --- Call to Action --- */
.cta-section {
  background: var(--bg-dark);
  padding: 56px 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.cta-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(245, 245, 243, 0.6);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-email {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--accent-gold-muted);
  padding: 12px 32px;
  border: 1px solid rgba(184, 148, 42, 0.3);
  transition: all 0.2s ease;
}

.cta-email:hover {
  background: rgba(184, 148, 42, 0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 32px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

/* =============================================
   DETAIL PAGE — Individual Perpetrator Profile
   ============================================= */

.profile-hero {
  background: var(--bg-dark);
  padding: 48px 0 56px;
}

.profile-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-photo-frame {
  background: #1A1A2A;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.profile-photo-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.profile-photo-label {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

.profile-info {
  padding-top: 8px;
}

.profile-breadcrumb {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.profile-breadcrumb a {
  color: var(--text-muted);
}

.profile-breadcrumb a:hover {
  color: var(--text-light);
}

.profile-name {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 8px;
}

.profile-position {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(245, 245, 243, 0.6);
  margin-bottom: 4px;
}

.profile-institution {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold-muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.profile-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.profile-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid;
}

.profile-badge--charges {
  color: var(--accent-crimson-light);
  border-color: rgba(155, 44, 44, 0.3);
  background: rgba(155, 44, 44, 0.08);
}

.profile-badge--identified {
  color: var(--accent-gold-muted);
  border-color: rgba(184, 148, 42, 0.3);
  background: rgba(184, 148, 42, 0.08);
}

.profile-summary {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 245, 243, 0.75);
  max-width: 600px;
}

/* --- Profile Content Sections --- */
.profile-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

.charge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.charge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-crimson);
}

.charge-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.charge-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.charge-date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.charge-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-crimson);
  margin-bottom: 8px;
}

.charge-paragraph {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.charge-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.charge-detail-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.charge-detail-value {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-primary);
}

.charge-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 22px;
  background: rgba(34, 120, 60, 0.08);
  border: 1px solid rgba(34, 120, 60, 0.35);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #2D7A3F;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  text-decoration: none;
}

.charge-pdf-link:hover {
  background: rgba(34, 120, 60, 0.14);
  border-color: #2D7A3F;
  color: #1B5E2B;
}

.charge-pdf-link.disabled {
  background: rgba(100, 100, 100, 0.04);
  border: 1px solid rgba(100, 100, 100, 0.15);
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.72rem;
  padding: 8px 16px;
  opacity: 0.6;
}

/* Badge: Akte öffentlich verfügbar */
.profile-badge--pdf-public {
  color: #2D7A3F;
  border-color: rgba(34, 120, 60, 0.4);
  background: rgba(34, 120, 60, 0.1);
}

/* Badge: Akte unter Verschluss */
.profile-badge--pdf-sealed {
  color: rgba(245, 245, 243, 0.4);
  border-color: rgba(245, 245, 243, 0.15);
  background: rgba(245, 245, 243, 0.04);
}

/* --- Victim Info Box --- */
.victim-box {
  background: #F8F7F2;
  border: 1px solid var(--border-light);
  padding: 24px 32px;
  margin-bottom: 48px;
}

.victim-box-title {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.victim-box-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.victim-box-role {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Evidence Type Badges on Cards --- */
.perp-card-evidence-type {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 17, 24, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 1;
}

.perp-card-evidence-type svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.perp-card-evidence-type--video {
  background: rgba(123, 24, 24, 0.9);
}

.perp-card-evidence-type--akte {
  background: rgba(60, 60, 60, 0.7);
  font-size: 0.55rem;
  padding: 3px 8px;
  opacity: 0.7;
}

.perp-card-evidence-type--akte-public {
  background: rgba(34, 100, 50, 0.92);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  gap: 6px;
  letter-spacing: 0.1em;
}

.perp-card-evidence-type--akte-public svg {
  width: 15px;
  height: 15px;
}

/* --- Video Thumbnail on Card --- */
.perp-card-video {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  position: relative;
  overflow: hidden;
}

.perp-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.perp-card:hover .perp-card-video video {
  filter: grayscale(0%);
}

.perp-card-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(123, 24, 24, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.perp-card:hover .perp-card-video-play {
  background: var(--accent-crimson);
  transform: translate(-50%, -50%) scale(1.08);
}

.perp-card-video-play svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 3px;
}

/* --- Profile Page: Video Evidence Block --- */
.evidence-video {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.evidence-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-crimson);
  z-index: 1;
}

.evidence-video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border-light);
}

.evidence-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-crimson);
}

.evidence-video-label svg {
  width: 16px;
  height: 16px;
}

.evidence-video-date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.evidence-video-player {
  background: #000;
  width: 100%;
}

.evidence-video-player video {
  width: 100%;
  display: block;
  max-height: 540px;
}

.evidence-video-caption {
  padding: 20px 32px;
  border-top: 1px solid var(--border-light);
}

.evidence-video-caption-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.evidence-video-caption-text {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Evidence badge on profile page --- */
.profile-badge--video {
  color: var(--accent-crimson-light);
  border-color: rgba(155, 44, 44, 0.3);
  background: rgba(155, 44, 44, 0.08);
}

/* --- No-Photo Placeholder --- */
.no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E0E0DC 0%, #CCCCC8 100%);
}

.no-photo svg {
  width: 64px;
  height: 64px;
  opacity: 0.25;
}

/* --- Floating Side Share --- */
.floating-share {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  background: var(--bg-dark);
  border-radius: 6px 0 0 6px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
}

.floating-share-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.floating-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.floating-share-btn:hover {
  color: var(--accent-gold);
  background: rgba(255,255,255,0.08);
}

.floating-share-btn svg {
  width: 19px;
  height: 19px;
}

.floating-share-btn.copied svg { color: var(--accent-gold); }

/* --- Download Bar --- */
.download-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.download-bar-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.download-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-crimson);
  background: rgba(123, 24, 24, 0.06);
  border: 1px solid rgba(123, 24, 24, 0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-bar-btn:hover {
  background: rgba(123, 24, 24, 0.12);
  border-color: var(--accent-crimson);
  color: var(--accent-crimson);
}

.download-bar-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- Evidence Submission Page --- */
.submit-hero {
  background: var(--bg-dark);
  padding: 56px 0 48px;
  text-align: center;
}

.submit-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.submit-hero-title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.submit-hero-text {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 245, 243, 0.65);
  max-width: 540px;
  margin: 0 auto;
}

.submit-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 40px 64px;
}

.submit-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 40px 40px 48px;
  position: relative;
}

.submit-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-crimson);
}

.submit-steps-intro {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.submit-step {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}

.submit-step-legend {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.submit-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.submit-field {
  margin-bottom: 20px;
}

.submit-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.submit-input,
.submit-textarea,
.submit-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  border: 1px solid #d0cfc8;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.submit-input:focus,
.submit-textarea:focus,
.submit-select:focus {
  border-color: var(--accent-crimson);
  box-shadow: 0 0 0 3px rgba(123, 24, 24, 0.08);
}

.submit-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-upload {
  display: block;
  border: 2px dashed #c0bfb8;
  background: white;
  padding: 36px 24px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.submit-upload:hover {
  border-color: var(--accent-crimson);
  background: rgba(123, 24, 24, 0.02);
}

.submit-upload-icon {
  margin-bottom: 10px;
}

.submit-upload-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--text-muted);
}

.submit-upload-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.submit-upload-hint {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.submit-upload-error {
  color: var(--accent-crimson);
  font-family: var(--sans);
  font-size: 0.8rem;
  margin-top: 8px;
}

.submit-action {
  text-align: center;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 48px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  max-width: 360px;
}

.submit-btn:hover {
  background: var(--accent-crimson-light);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.submit-action-note {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.submit-email-hint {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* --- Hero CTA Button --- */
.hero-cta {
  margin-top: 32px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hero-cta-btn:hover {
  background: var(--accent-crimson-light);
  color: white;
}

.hero-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Nav CTA (Evidence highlight) --- */
.main-nav a.nav-cta {
  background: var(--accent-crimson);
  color: white;
  border-radius: 2px;
  margin: 6px 0;
  padding: 8px 18px;
  border-bottom: none;
}

.main-nav a.nav-cta:hover {
  background: var(--accent-crimson-light);
  color: white;
}

/* --- Mobile Sticky Share --- */
.mobile-sticky-share {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
}

.mobile-sticky-share-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-sticky-share-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-right: 8px;
  white-space: nowrap;
}

.mobile-sticky-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-sticky-share-btn:hover {
  color: var(--accent-gold);
  background: rgba(255,255,255,0.08);
}

.mobile-sticky-share-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-sticky-share-btn.copied svg { color: var(--accent-gold); }

/* --- Grid Breaker CTA Variant --- */
.grid-breaker--cta {
  padding: 48px 0;
}

.grid-breaker--cta::before {
  display: none;
}

.grid-breaker-cta-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.grid-breaker-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease;
}

.grid-breaker-cta-btn:hover {
  background: var(--accent-crimson-light);
  color: white;
}

.grid-breaker-cta-btn svg {
  width: 16px;
  height: 16px;
}

.grid-breaker-form-link {
  display: block;
  margin-top: 8px;
}

.grid-breaker-form-link a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Bridge Section (between content and CTA) --- */
.bridge-section {
  background: #F2F1EC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
  text-align: center;
}

.bridge-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.bridge-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.bridge-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Section II Background Differentiation --- */
.section--alt {
  background: #F5F4EF;
}

/* --- Submit Form: Inline Validation Errors --- */
.submit-field-error {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--accent-crimson);
  margin-top: 6px;
  line-height: 1.4;
}

/* --- Submit Form: Metadata Warning --- */
.submit-metadata-warning {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 10px 14px;
  margin-top: 12px;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}

/* --- CTA Section: Fill Button (crimson bg) --- */
.cta-btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-bottom: 12px;
}

.cta-btn-fill:hover {
  background: var(--accent-crimson-light);
  color: white;
}

.cta-btn-fill svg {
  width: 18px;
  height: 18px;
}

/* --- Focus Visible States --- */
.perp-card:focus-visible,
.download-bar-btn:focus-visible,
.floating-share-btn:focus-visible,
.main-nav a:focus-visible,
.hero-cta-btn:focus-visible,
.mobile-sticky-share-btn:focus-visible,
.grid-breaker-cta-btn:focus-visible,
.cta-btn-fill:focus-visible,
.submit-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.perp-search-input:focus-visible,
.submit-input:focus-visible,
.submit-textarea:focus-visible,
.submit-select:focus-visible {
  outline: none;
  border-color: var(--accent-crimson);
  box-shadow: 0 0 0 3px rgba(123, 24, 24, 0.08);
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none !important;
  }
  .hero-slide:first-child {
    opacity: 1;
  }
  html {
    scroll-behavior: auto;
  }
  .perp-card,
  .perp-card-photo img,
  .perp-card-video video,
  a,
  .submit-upload,
  .submit-btn,
  .floating-share-btn {
    transition: none !important;
  }
}

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--accent-crimson);
  color: white;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-to-content:focus {
  top: 0;
  color: white;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .perp-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
  }

  .perp-list-item,
  .perp-list-header {
    grid-template-columns: 40px 1fr 1fr 1fr 1fr 80px;
  }

  .perp-list-date {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-title-since {
    font-size: 1.1rem;
    padding: 5px 18px;
    letter-spacing: 0.2em;
  }

  .slider-slide {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px 48px;
    gap: 16px;
  }
  .slider-slide-photo {
    width: 140px;
    height: 140px;
    min-width: 140px;
  }
  .slider-slide-photo img {
    width: 140px;
    height: 140px;
  }
  .slider-slide-photo--wanted svg {
    width: 52px;
    height: 52px;
  }
  .slider-slide-name {
    font-size: 1.4rem;
  }
  .slider-slide-position {
    font-size: 0.9rem;
  }
  .slider-slide-right {
    text-align: center;
    min-width: auto;
  }
  .slider-slide {
    padding: 36px 60px 48px;
  }
  .slider-slide-info {
    flex: 1 1 auto;
  }
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
  .slider-arrow--prev { left: 6px; }
  .slider-arrow--next { right: 6px; }

  .stats-bar-inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    padding: 16px 24px;
  }

  .section {
    padding: 40px 20px;
  }

  .perp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .perp-list-item,
  .perp-list-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }

  .perp-list-header {
    display: none;
  }

  .perp-list-avatar {
    display: none;
  }

  .profile-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profile-photo-frame {
    max-width: 240px;
  }

  .profile-name {
    font-size: 2rem;
  }

  .header-inner,
  .main-nav-inner,
  .top-bar-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-nav-inner {
    overflow-x: auto;
  }

  .statement-inner {
    padding: 28px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-share {
    display: none;
  }

  .mobile-sticky-share {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .submit-form {
    padding: 24px 20px 32px;
  }

  .submit-content {
    padding: 24px 16px 48px;
  }

  .submit-hero-title {
    font-size: 1.8rem;
  }

  .submit-btn {
    width: 100%;
    max-width: none;
  }

  .download-bar {
    flex-direction: column;
    gap: 10px;
  }

  /* iOS auto-zoom prevention */
  .submit-input,
  .submit-textarea,
  .submit-select,
  .perp-search-input {
    font-size: max(16px, 0.9rem);
  }

  /* Touch targets minimum 44px */
  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .top-bar-lang a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .download-bar-btn {
    min-height: 44px;
  }

  .about-methodology-grid {
    grid-template-columns: 1fr !important;
  }

  .about-contact-grid {
    grid-template-columns: 1fr !important;
  }

  .about-timeline-item {
    padding-left: 24px !important;
  }

  .evidence-item {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .evidence-item-action {
    align-self: flex-start !important;
  }

  .victim-profile-header {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .victim-profile-stats {
    flex-direction: column !important;
  }
}

/* =============================================
   VERFOLGTE PAGE — Victim Profiles
   ============================================= */

.victim-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.victim-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-crimson);
}

.victim-profile-card--redacted::before {
  background: var(--text-muted);
}

.victim-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 0;
  gap: 24px;
}

.victim-profile-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.victim-profile-role {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.victim-profile-location {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.victim-profile-badges {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.victim-profile-body {
  padding: 24px 32px 32px;
}

.victim-profile-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.victim-profile-stats {
  display: flex;
  gap: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.victim-profile-stat-number {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-crimson);
  line-height: 1;
}

.victim-profile-stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

.victim-profile-charges {
  margin-bottom: 20px;
}

.victim-profile-charges-title {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.victim-profile-charges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.victim-charge-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent-crimson);
  background: rgba(123, 24, 24, 0.06);
  border: 1px solid rgba(123, 24, 24, 0.15);
  padding: 5px 12px;
}

.victim-profile-taeter-link {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.victim-profile-taeter-link a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-crimson);
  letter-spacing: 0.02em;
}

.victim-profile-redacted-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 16px 20px;
  background: #F8F7F2;
  border: 1px solid var(--border-light);
}

.victim-profile-redacted-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--text-muted);
}

/* =============================================
   BEWEISMITTEL PAGE — Evidence Archive
   ============================================= */

.evidence-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.evidence-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-bottom: none;
  transition: background 0.15s ease;
}

.evidence-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.evidence-item:hover {
  background: #FDFDF8;
}

.evidence-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(123, 24, 24, 0.06);
  border: 1px solid rgba(123, 24, 24, 0.12);
}

.evidence-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-crimson);
}

.evidence-item-body {
  flex: 1;
  min-width: 0;
}

.evidence-item-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.evidence-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.evidence-item-sep {
  color: var(--border-light);
  font-size: 0.5rem;
}

.evidence-item-perpetrator {
  color: var(--accent-crimson);
  font-weight: 500;
}

.evidence-item-date {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.evidence-item-paragraph {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.evidence-item-action {
  flex-shrink: 0;
}

.evidence-item-dl {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-crimson);
  display: flex;
  align-items: center;
  gap: 6px;
}

.evidence-item-dl::after {
  content: '\2192';
  transition: transform 0.2s ease;
}

.evidence-item:hover .evidence-item-dl::after {
  transform: translateX(4px);
}

/* =============================================
   UEBER PAGE — About Sections
   ============================================= */

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 40px 48px;
}

.about-section {
  margin-bottom: 56px;
}

.about-section-number {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.about-section-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.about-section-body p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-section-body p:last-child {
  margin-bottom: 0;
}

/* Methodology Grid */
.about-methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.about-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  position: relative;
}

.about-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-crimson);
}

.about-method-icon {
  margin-bottom: 16px;
}

.about-method-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-crimson);
}

.about-method-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-method-text {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Timeline */
.about-timeline {
  position: relative;
  padding-left: 2px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.about-timeline-item {
  position: relative;
  padding-left: 36px;
  padding-bottom: 40px;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--text-muted);
}

.about-timeline-item--current::before {
  border-color: var(--accent-crimson);
  background: rgba(123, 24, 24, 0.15);
}

.about-timeline-era {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-timeline-label {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-timeline-item--current .about-timeline-label {
  color: var(--accent-crimson);
}

.about-timeline-text {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Principles */
.about-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-principle {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.about-principle:last-child {
  border-bottom: none;
}

.about-principle-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-crimson);
  flex-shrink: 0;
  width: 32px;
}

.about-principle-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-principle-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Grid */
.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 24px;
}

.about-contact-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.about-contact-value {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  word-break: break-all;
}

.about-contact-value a {
  color: var(--accent-crimson);
  font-weight: 500;
}

/* ============================
   Share Bar
   ============================ */

.share-section {
  padding: 48px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.share-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.share-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.share-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  line-height: 1;
}

.share-btn:hover {
  border-color: var(--accent-crimson);
  color: var(--accent-crimson);
  background: rgba(123, 24, 24, 0.03);
}

.share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.share-btn--copy {
  background: transparent;
  border-style: dashed;
}

.share-btn--copy.copied {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Inline share (for Taeter detail pages) */
.profile-share {
  margin-top: 40px;
  padding: 28px;
  background: rgba(123, 24, 24, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  text-align: center;
}

.profile-share-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.profile-share-text {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.profile-share .share-buttons {
  gap: 10px;
}

/* Profile CTA section (after charges on detail page) */
.profile-cta-section {
  margin-top: 40px;
  padding: 32px;
  background: rgba(123, 24, 24, 0.03);
  border: 1px solid rgba(123, 24, 24, 0.12);
  border-radius: 2px;
  text-align: center;
}

.profile-cta-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.profile-cta-text {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .share-section {
    padding: 36px 0;
  }

  .share-inner {
    padding: 0 20px;
  }

  .share-title {
    font-size: 1.3rem;
  }

  .share-buttons {
    gap: 8px;
  }

  .share-btn {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .profile-share {
    padding: 20px 16px;
  }

  .profile-cta-section {
    padding: 24px 16px;
  }
}

/* ======================================
   PRINT STYLESHEET
   ====================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 11pt;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }

  /* Hide non-essential UI */
  .top-bar,
  .main-nav,
  .floating-share,
  .mobile-sticky-share,
  .share-section,
  .share-buttons,
  .cta-section,
  .profile-cta-section,
  .profile-share,
  .skip-to-content,
  .perp-search,
  .nav-cta,
  .slider-section,
  .download-bar,
  .top-bar-lang,
  video,
  .video-section {
    display: none !important;
  }

  /* Header minimal */
  .site-header {
    border-bottom: 2px solid #000;
    padding: 8pt 0;
    margin-bottom: 16pt;
  }

  .site-title {
    font-size: 18pt;
  }

  .site-subtitle {
    font-size: 10pt;
  }

  /* Content */
  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #555 !important;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after,
  .site-title a::after,
  .header-inner a::after {
    content: "";
  }

  /* Cards */
  .perp-card,
  .victim-profile-card,
  .evidence-item,
  .charge-card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 8pt;
    padding: 8pt;
  }

  /* Profile photos */
  .profile-photo-frame img,
  .perp-card-photo img {
    max-width: 120px;
    filter: grayscale(100%);
  }

  /* Footer */
  .site-footer {
    border-top: 1px solid #ccc;
    padding-top: 8pt;
    margin-top: 16pt;
    font-size: 9pt;
  }

  /* Page breaks */
  h1, h2, h3 {
    page-break-after: avoid;
  }

  .section {
    page-break-before: auto;
  }
}
