/* ─────────────────────────────────────────
   VOICES OF COURAGE — Midnight Purple Theme
   Deep immersive purple · Premium advocacy
───────────────────────────────────────── */

/* ── DESIGN TOKENS ── */
:root {
  /* Light Violet palette — bright & breathable */
  --cream: #F0EBF5;
  --paper: #FAFAFD;
  --ink: #1a0b2e;
  --slate: #1a0b2e;
  --steel: #2D1B4E;
  --gunmetal: #3D2B5E;

  /* Text hierarchy — dark on light */
  --text-primary: #2A1836;
  --text-secondary: #5C4D6E;
  --text-muted: #8878A0;
  --text-faint: #B0A4C0;

  /* Primary brand — Vivid Violet */
  --amber: #7C3AED;
  --amber-glow: #9461F7;
  --ember: #6D28D9;

  /* Neutrals */
  --ash: #8878A0;
  --mist: #B0A4C0;
  --cloud: #DDD5EA;
  --snow: #EDE7F5;
  --white: #FAFAFD;

  /* Semantic */
  --sentenced: #6D28D9;
  --on-trial: #7C3AED;
  --urgent: #9333EA;

  /* Borders */
  --border: #DDD5EA;
  --border-light: #EDE7F5;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Libre Baskerville', Georgia, serif;

  /* Spacing — generous for breathing room */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Shadows — soft purple-tinted on light bg */
  --shadow-sm: 0 1px 3px rgba(124,58,237,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(124,58,237,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(124,58,237,0.10), 0 4px 12px rgba(0,0,0,0.05);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
html.ready { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #7C3AED; color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #EDE7F5; }
::-webkit-scrollbar-thumb { background: #7C3AED; border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #2A1836;
}

h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
  color: #2A1836;
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--amber);
  z-index: 300;
  width: 0%;
  transition: none;
}

/* Breaking banner removed */

/* ─────────────────────────────────────────
   NAVIGATION — Dark inverted header
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  background: rgba(240,235,245,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: height 0.3s var(--ease-out), background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

/* banner-dismissed class no longer needed */

#navbar.scrolled {
  height: 56px;
  background: rgba(240,235,245,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(124,58,237,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.logo .logo-voices { color: #2A1836; }
.logo .logo-courage { color: #7C3AED; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5C4D6E;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: #2A1836; }
.nav-links a.active { color: #7C3AED; }

.btn-nav {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav:hover {
  background: var(--amber-glow) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2A1836;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  list-style: none;
  position: fixed;
  inset: 0;
  background: rgba(240,235,245,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: #2A1836;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--amber); }

/* ─────────────────────────────────────────
   HERO — Dark immersive band (kept)
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #E8E0F0;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: url('photos/hero-arrest.jpg') center 30% / cover no-repeat;
  filter: brightness(0.9) contrast(1.05) saturate(0.9);
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124,58,237,0.15) 0%, rgba(90,50,163,0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
  padding-top: 7rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #2A1836;
  letter-spacing: -0.02em;
}

.hero-title .accent { color: #7C3AED; display: block; }

/* Stagger animation */
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordFadeUp 0.6s var(--ease-out) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }

@keyframes wordFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.15rem;
  color: #4A3D5E;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.btn-primary {
  display: inline-block;
  background: #7C3AED;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(124,58,237,0.25);
}

.btn-primary:hover {
  background: #9461F7;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124,58,237,0.45), 0 6px 20px rgba(124,58,237,0.3);
}

.btn-ghost {
  display: inline-block;
  background: #F97316;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(249,115,22,0.25);
}

.btn-ghost:hover {
  background: #EA580C;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(249,115,22,0.4), 0 6px 20px rgba(249,115,22,0.25);
}

/* Detention Counter Strip */
.counter-strip {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.counter-item { text-align: center; }

.counter-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #2A1836;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.counter-num.accent { color: #7C3AED; }
.counter-denom { font-size: 0.5em; color: #8878A0; }

.counter-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5C4D6E;
  font-weight: 600;
}

.counter-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-arrow {
  animation: scrollArrowBounce 2s ease-in-out infinite;
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.8; }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ─────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────── */
section {
  padding: 4.5rem var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: #2A1836;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ─────────────────────────────────────────
   ABOUT ("Why This Matters") — White band
───────────────────────────────────────── */
#about {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.about-quote {
  background: var(--snow);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.about-quote blockquote {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-quote cite {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ─────────────────────────────────────────
   TIMELINE — "The Crackdown" (Compact Grid) — Cream band
───────────────────────────────────────── */
#timeline {
  background: var(--cream);
  color: var(--text-primary);
}

#timeline .section-tag { color: var(--amber); }
#timeline .section-header h2 { color: #2A1836; }
#timeline .section-desc { color: var(--text-secondary); }

.timeline-vertical {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.tl-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tl-row {
  display: grid;
  grid-template-columns: 4px 100px 1fr;
  gap: 0;
  background: var(--paper);
  transition: background 0.2s;
  align-items: center;
}

.tl-row:hover { background: var(--snow); }

.tl-row-marker {
  width: 4px;
  align-self: stretch;
}

.tl-row-marker.arrest { background: var(--ember); }
.tl-row-marker.sentence { background: #7f1d1d; }
.tl-row-marker.international { background: #2563eb; }
.tl-row-marker.letter { background: var(--amber); }
.tl-row-marker.urgent { background: var(--urgent); }

.tl-row-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-faint);
  padding: 1rem;
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.02em;
}

.tl-row-content {
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tl-row-content strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tl-row-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  flex-basis: 100%;
}

.tl-type-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.tl-type-badge.arrest { background: rgba(126,87,194,0.1); color: var(--ember); }
.tl-type-badge.sentence { background: rgba(127,29,29,0.1); color: #b91c1c; }
.tl-type-badge.international { background: rgba(37,99,235,0.1); color: #2563eb; }
.tl-type-badge.letter { background: rgba(124,58,237,0.1); color: var(--amber); }
.tl-type-badge.urgent { background: rgba(168,32,32,0.1); color: #dc2626; }

@media (max-width: 680px) {
  .tl-row { grid-template-columns: 4px 1fr; }
  .tl-row-date { display: none; }
  .tl-row-content::before {
    content: attr(data-date);
    font-size: 0.68rem;
    color: var(--text-faint);
    flex-basis: 100%;
    order: -1;
  }
}

/* ─────────────────────────────────────────
   JOURNALISTS GRID — White band
───────────────────────────────────────── */
#journalists {
  background: var(--paper);
}

.outlet-group-header {
  max-width: var(--max-width);
  margin: 2.5rem auto 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.outlet-group-header:first-of-type { margin-top: 0; }

.outlet-marker {
  width: 4px;
  height: 40px;
  border-radius: 2px;
  flex-shrink: 0;
}

.outlet-marker.sentenced { background: var(--sentenced); }
.outlet-marker.on-trial { background: var(--on-trial); }

.outlet-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.outlet-group-header h3 {
  font-size: 1rem;
  color: var(--text-primary);
}

.outlet-group-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.journalists-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.journalist-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.journalist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cloud);
}

/* Photo wrapper */
.journalist-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.journalist-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out);
}

.journalist-card:hover .journalist-photo-wrap::after { opacity: 0.5; }

.journalist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05) brightness(0.95);
  transition: filter 0.7s var(--ease-out);
}

.journalist-card:hover .journalist-photo {
  filter: grayscale(0%) contrast(1) brightness(1);
}

/* Placeholder when no photo */
.journalist-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
}

.journalist-placeholder .first-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 4px;
  z-index: 2;
}

.status-detained { background: var(--sentenced); color: #fff; }
.status-on-trial { background: var(--on-trial); color: #fff; }

.card-body {
  padding: 1.75rem;
}

.card-outlet {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: var(--snow);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.card-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-days {
  font-size: 0.75rem;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-days .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  animation: pulse 2s ease-in-out infinite;
}

.card-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-card {
  background: none;
  border: none;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, gap 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-card:hover { color: var(--amber-glow); gap: 0.6rem; }

/* Compact card: hide bio by default, show on expand */
.card-bio { display: none; }
.journalist-card.expanded .card-bio { display: -webkit-box; }
.journalist-card.expanded .btn-card .btn-expand-text::after { content: 'Show Less'; }
.journalist-card:not(.expanded) .btn-card .btn-expand-text::after { content: 'Show Bio'; }

/* ─────────────────────────────────────────
   MODAL — Already light, refine
───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(30px);
  transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--snow);
  border: 1px solid var(--cloud);
  color: var(--ash);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.modal-close:hover { background: var(--ember); color: #fff; }

.modal-header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--gunmetal);
}

.modal-avatar .avatar-photo { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }

.modal-header-text { flex: 1; }

.modal-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background: rgba(126,87,194,0.08);
  color: var(--ember);
  border: 1px solid rgba(126,87,194,0.15);
  margin-bottom: 0.5rem;
}

.modal-header-text h2 { font-size: 1.8rem; margin-bottom: 0.15rem; color: var(--text-primary); }

.modal-role {
  font-size: 0.82rem;
  color: var(--ash);
  font-weight: 500;
}

.modal-body { color: var(--text-secondary); line-height: 1.85; }
.modal-body p { margin-bottom: 1rem; }
.modal-body h4 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; color: var(--text-primary); }

.modal-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   LETTERS — Cream band
───────────────────────────────────────── */
#letters {
  background: var(--cream);
  color: var(--text-primary);
}

#letters .section-tag { color: var(--amber); }
#letters .section-header h2 { color: #2A1836; }
#letters .section-desc { color: var(--text-secondary); }

/* Filter bar */
.letter-filters {
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.letter-filter-btn {
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.letter-filter-btn:hover,
.letter-filter-btn.active {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.letters-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.letter-card {
  background: var(--paper);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.letter-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.letter-card.featured {
  grid-column: span 2;
  border-left-width: 6px;
  border-left-color: var(--ember);
  background: rgba(126,87,194,0.03);
}

.letter-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.letter-author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.92rem;
}

.letter-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.letter-icon {
  font-size: 1.5rem;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.letter-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.letter-card.featured .letter-text {
  font-size: 1.1rem;
  -webkit-line-clamp: 6;
}

.letter-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.letter-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(124,58,237,0.1);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-read-more:hover { color: var(--amber); }

.letters-cta {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--text-muted);
}

.letters-cta a { color: var(--amber); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Pull quote */
.pull-quote {
  max-width: 700px;
  margin: var(--space-md) auto;
  text-align: center;
  position: relative;
  padding: var(--space-md) 0;
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto var(--space-sm);
}

.pull-quote::after { margin: var(--space-sm) auto 0; }

.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 700;
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--amber);
  font-style: normal;
}

/* ─────────────────────────────────────────
   DASHBOARD — Dark accent band (contrast)
───────────────────────────────────────── */
#dashboard {
  background: #1C2233;
  color: #fff;
}

#dashboard .section-tag { color: #B2914F; }
#dashboard .section-header h2 { color: #fff; }
#dashboard .section-desc { color: rgba(255,255,255,0.65); }

.dash-grid {
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dash-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.dash-stat-card:hover { border-color: rgba(255,255,255,0.2); }

.dash-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.dash-stat-num small {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

.dash-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Bar chart */
.dash-timeline-wrap {
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.dash-timeline-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.dash-timeline-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.tl-name {
  width: 85px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: right;
  flex-shrink: 0;
}

.tl-bar-wrap {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}

.tl-bar {
  height: 100%;
  border-radius: 4px;
  min-width: 8px;
  transition: width 1s var(--ease-out);
}

.tl-bar.sentenced { background: linear-gradient(90deg, var(--ember), #d9534f); }
.tl-bar.on-trial { background: linear-gradient(90deg, var(--amber), var(--amber-glow)); }

.tl-days {
  width: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Organization badges */
.dash-orgs {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.dash-orgs h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.dash-org-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.dash-org-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.dash-org-tag:hover { border-color: var(--amber); color: #fff; }

.org-logo-img {
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}

.org-badge-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────
   UPDATES (Consolidated News/Statements/Videos) — White band
───────────────────────────────────────── */
#updates {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.updates-tabs {
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--text-primary); border-bottom-color: var(--amber); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.updates-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.update-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}

.update-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--cloud); }

.update-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.update-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--snow);
}

.update-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--snow), var(--cloud));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-cover-icon {
  font-size: 3.5rem;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.news-cover-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(10);
}

.update-card.featured .update-img,
.update-card.featured .update-img-placeholder { height: 100%; min-height: 260px; }

.update-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
}

.update-body { padding: 1.75rem; }

.update-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.update-body h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.update-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.update-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber);
  transition: color 0.2s;
}

.update-link:hover { color: var(--amber-glow); }

/* Statements in tab */
.statements-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.statement-org-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}

.statement-org-card:hover { transform: translateY(-2px); border-color: var(--cloud); }

.org-name-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.org-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.org-name-row .org-name { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.org-statements { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.org-statements li { display: flex; flex-direction: column; gap: 0.2rem; }

.stmt-date {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.org-statements a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.org-statements a:hover { color: var(--amber); }

/* Videos in tab */
.videos-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.video-lazy {
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.video-lazy:hover { opacity: 0.9; }
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.video-info { padding: 1.25rem; }

.video-journalist {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
  display: block;
}

.video-info h3 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.4rem; line-height: 1.35; }
.video-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ─────────────────────────────────────────
   COALITION OF SUPPORT — Cream band
───────────────────────────────────────── */
#coalition {
  background: var(--cream);
  color: var(--text-primary);
}

#coalition .section-tag { color: var(--amber); }
#coalition .section-header h2 { color: #2A1836; }
#coalition .section-desc { color: var(--text-secondary); }

.coalition-grid {
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.coalition-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.coalition-card:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: var(--shadow); }

.coalition-info h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.coalition-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.coalition-join { text-align: center; padding-top: var(--space-sm); }
.coalition-join p { color: var(--text-muted); margin-bottom: 1rem; }

/* ─────────────────────────────────────────
   TAKE ACTION — White band
───────────────────────────────────────── */
#act {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.act-inner { max-width: var(--max-width); margin: 0 auto; }

/* Action tabs */
.action-tabs {
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.act-tab-panel { display: none; }
.act-tab-panel.active { display: block; }

/* Accordion */
.action-accordion {
  margin-bottom: var(--space-md);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s;
}

.accordion-header:hover { background: var(--snow); }

.accordion-header .arrow {
  margin-left: auto;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.accordion-item.open .accordion-header .arrow { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--snow);
}

.accordion-item.open .accordion-body { display: block; }

.template-textarea {
  width: 100%;
  min-height: 200px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.7;
  resize: vertical;
  margin-bottom: 1rem;
  background: var(--paper);
}

.template-textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover { background: var(--amber-glow); }

/* Action cards grid */
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.act-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.act-card:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: var(--shadow); }

.act-icon { font-size: 2rem; margin-bottom: 1rem; }

.act-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.act-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.25rem; }

.btn-act {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-act:hover { background: var(--amber); color: #fff; transform: translateY(-2px); }

.share-btns { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }

.btn-share {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-share:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-twitter { background: #000; color: #fff; }
.btn-facebook { background: #1877f2; color: #fff; }
.btn-linkedin { background: #0a66c2; color: #fff; }
.btn-telegram { background: #0088cc; color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-bluesky { background: #0085ff; color: #fff; }
.btn-reddit { background: #ff4500; color: #fff; }

.btn-share svg { flex-shrink: 0; }

/* Share section */
.share-section {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: var(--space-md);
}

.share-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.share-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.share-message-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.share-message-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.share-platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-form input,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-faint); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.contact-form textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  padding: 1rem;
  background: rgba(22,163,74,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(22,163,74,0.12);
  margin-top: 1rem;
}

/* ─────────────────────────────────────────
   ABOUT THIS PROJECT — Cream band
───────────────────────────────────────── */
#about-project {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.about-project-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-project-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-project-content .about-project-cta {
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
}

.about-project-content .about-project-cta a {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────
   FOOTER — Dark band (kept)
───────────────────────────────────────── */
footer {
  background: #E0D8EC;
  color: #5C4D6E;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: inline-flex;
  color: #2A1836;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #5C4D6E;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8878A0;
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; color: #5C4D6E; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

.footer-disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem var(--space-md) 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: #8878A0;
  font-style: italic;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.78rem; color: #8878A0; }
.footer-bottom a { color: #5C4D6E; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #7C3AED; }

/* ─────────────────────────────────────────
   VIDEO GRID — YouTube embeds
───────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.video-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #E0D8EC;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card h4 {
  padding: 1rem 1.25rem 0.25rem;
  font-size: 1rem;
  color: #2A1836;
}

.video-card .video-meta {
  padding: 0 1.25rem 1rem;
  font-size: 0.78rem;
  color: #8878A0;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; max-width: 450px; }
}

/* ─────────────────────────────────────────
   VIDEO SCROLL GALLERY (legacy) — Light
───────────────────────────────────────── */
.video-scroll-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 var(--space-md) var(--space-md);
}

.video-scroll-wrap::-webkit-scrollbar { height: 4px; }
.video-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.video-scroll-wrap::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

.video-scroll-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 calc((100vw - var(--max-width)) / 2);
}

.video-scroll-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.video-scroll-card:hover {
  border-color: var(--cloud);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.video-scroll-card .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-scroll-card .video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.video-scroll-info {
  padding: 1rem 1.25rem;
}

.video-scroll-info .video-journalist {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
  display: block;
}

.video-scroll-info h3 {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.35;
}

@media (max-width: 680px) {
  .video-scroll-card { width: 300px; }
  .video-scroll-track { padding: 0 1rem; }
}

/* ─────────────────────────────────────────
   STICKY CTA BAR — Dark
───────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(240,235,245,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.75rem var(--space-md);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta-text {
  font-size: 0.88rem;
  color: #2A1836;
  font-weight: 500;
}

.sticky-cta-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .sticky-cta-text { display: none; }
  .sticky-cta-inner { justify-content: center; }
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-child.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* On sub-pages (no hero), show content immediately */
body.subpage .reveal-on-scroll,
body.subpage .stagger-child {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .stagger-child,
  .hero-title .word {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .journalists-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .update-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .coalition-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  section { padding: var(--space-lg) 1.25rem; }
  .section-header { margin-bottom: 2.5rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .counter-strip { gap: 1rem; padding: 1.25rem; }
  .counter-divider { display: none; }
  .counter-item { min-width: 80px; }

  .about-inner { padding: var(--space-md) 1.25rem; }
  .about-quote { padding: 1.5rem; }
  .about-quote blockquote { font-size: 1.1rem; }

  .journalists-grid { grid-template-columns: 1fr; }
  .journalist-photo-wrap { aspect-ratio: 16/9; }

  .letters-grid { grid-template-columns: 1fr; }
  .letter-card.featured { grid-column: span 1; }

  .updates-grid { grid-template-columns: 1fr; }
  .update-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .statements-grid { grid-template-columns: 1fr; }

  .dash-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .dash-stat-num { font-size: 2rem; }
  .tl-name { width: 55px; font-size: 0.7rem; }

  .act-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .videos-grid { grid-template-columns: 1fr; }

  .modal { padding: 1.25rem; gap: 1rem; }
  .modal-avatar { width: 56px; height: 56px; font-size: 1.1rem; }
  .modal-header-text h2 { font-size: 1.4rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: var(--space-md) 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* carousel mobile handled below main carousel styles */

  .conditions-grid, .legal-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   FACE STRIP — Below Hero (Dark band)
───────────────────────────────────────── */
/* Photo Carousel — infinite marquee */
.photo-carousel-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--cloud);
  overflow: hidden;
  position: relative;
  padding: 2.5rem 0;
}

/* Gradient fade on edges */
.photo-carousel-wrap::before,
.photo-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.photo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.photo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.photo-carousel-track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.photo-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.photo-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.photo-card-img {
  width: 180px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--cloud);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.photo-card:hover .photo-card-img {
  border-color: var(--amber);
  transform: scale(1.06);
  box-shadow: 0 8px 30px rgba(124,58,237,0.2);
}

.photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

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

.photo-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-card:hover .photo-card-overlay {
  opacity: 1;
}

.photo-card-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.photo-card:hover .photo-card-name {
  color: var(--amber);
}

@media (prefers-reduced-motion: reduce) {
  .photo-carousel-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
  }
  .photo-card[aria-hidden="true"] { display: none; }
}

@media (max-width: 680px) {
  .photo-carousel-wrap { padding: 1.5rem 0; }
  .photo-card-img { width: 120px; height: 160px; }
  .photo-card { gap: 0.3rem; }
  .photo-card-name { font-size: 0.65rem; }
  .photo-carousel-track { gap: 1rem; }
}

/* ─────────────────────────────────────────
   PRISON CONDITIONS — Cream band (light)
───────────────────────────────────────── */
#prison-conditions {
  background: var(--cream);
  color: var(--text-primary);
  padding: var(--space-xl) var(--space-md);
}

#prison-conditions .section-tag { color: var(--ember); }
#prison-conditions .section-header h2 { color: #2A1836; }
#prison-conditions .section-desc { color: var(--text-secondary); }

.prison-stats {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.prison-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.prison-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ember);
  line-height: 1.2;
}

.prison-stat-num small { font-size: 0.5em; color: var(--text-muted); }

.prison-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
}

.conditions-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.condition-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.condition-card:hover {
  box-shadow: var(--shadow);
  border-left-color: var(--amber);
}

.condition-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.condition-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.condition-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.condition-source {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-faint);
  font-style: italic;
}

/* Accordion body text in light sections */
#prison-conditions .accordion-body p { color: var(--text-secondary); line-height: 1.75; }
#prison-conditions .accordion-body { border-top-color: var(--border); }

.prison-cta {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   LEGAL EXPLAINER — White band (light)
───────────────────────────────────────── */
#legal {
  background: var(--paper);
  padding: var(--space-xl) var(--space-md);
}

#legal .section-header h2 { color: #2A1836; }
#legal .section-tag { color: var(--amber); }
#legal .section-desc { color: var(--text-secondary); }

.legal-cases {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.legal-case-block {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.legal-case-header {
  padding: 1.5rem;
  position: relative;
}

.legal-case-header.abzas { background: linear-gradient(135deg, var(--ember), #8B2E1A); color: #fff; }
.legal-case-header.meydan { background: linear-gradient(135deg, var(--steel), var(--gunmetal)); color: #fff; }

.legal-case-badge {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  margin-bottom: 0.5rem;
}

.legal-case-badge.on-trial { background: rgba(200,164,78,0.3); }

.legal-case-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.3;
  border-radius: 6px;
}

.legal-case-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.legal-case-who {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.legal-case-body { padding: 1.5rem; }

.legal-charge-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-article {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ember);
  background: rgba(126,87,194,0.06);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.legal-verdict {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--snow);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-verdict p { margin-bottom: 0.4rem; }
.legal-verdict p:last-child { margin-bottom: 0; }

.legal-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.legal-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.legal-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.legal-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.legal-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* Legal section accordion text */
#legal .accordion-body p { color: var(--text-secondary); line-height: 1.75; }
#legal .accordion-body { border-top-color: var(--border); }
#legal .legal-case-body { color: var(--text-secondary); }

/* ─────────────────────────────────────────
   SEND LETTER TO PRISON — Light
───────────────────────────────────────── */
.send-letter-section {
  margin-bottom: var(--space-lg);
}

.send-letter-section h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.send-letter-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
  line-height: 1.7;
}

.send-letter-form {
  max-width: 680px;
  margin: 0 auto;
}

.letter-recipient-select { margin-bottom: 1.5rem; }
.letter-recipient-select label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.recipient-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.recipient-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.recipient-chip:hover {
  border-color: var(--amber);
  color: var(--text-primary);
}

.recipient-chip.selected {
  border-color: var(--amber);
  background: rgba(124,58,237,0.1);
  color: var(--text-primary);
  box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
}

.chip-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.prison-letter-form textarea {
  width: 100%;
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  resize: vertical;
  min-height: 160px;
  transition: border-color 0.2s;
  background: var(--paper);
  color: var(--text-primary);
}

.prison-letter-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.letter-sender-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.letter-sender-row input[type="text"] {
  flex: 1;
  min-width: 160px;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--paper);
  color: var(--text-primary);
}

.letter-sender-row input[type="text"]:focus {
  outline: none;
  border-color: var(--amber);
}

.letter-anon-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.letter-anon-toggle input[type="checkbox"] {
  accent-color: var(--amber);
}

.letter-privacy-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-faint);
  line-height: 1.6;
}

.prison-letter-form .btn-primary {
  margin-top: 1rem;
  width: 100%;
}

.prison-letter-form .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--cloud);
  color: var(--text-muted);
}

.letter-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-lg);
}

.letter-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.letter-success h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────
   AUDIENCE ACTIONS (kept) — Light
───────────────────────────────────────── */
.audience-actions {
  margin-bottom: var(--space-lg);
}

.audience-actions h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-cases { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: repeat(2, 1fr); }
  .prison-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .prison-stats { grid-template-columns: repeat(2, 1fr); }
  .letter-sender-row { flex-direction: column; }
}

/* ─────────────────────────────────────────
   HERO ENHANCEMENTS
───────────────────────────────────────── */
.eyebrow-urgent {
  color: var(--ember);
  animation: urgentPulse 2.5s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-breaking-alert {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  justify-content: center;
  flex-wrap: wrap;
}

.breaking-label {
  background: var(--ember);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.breaking-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
}

/* ─────────────────────────────────────────
   STICKY CTA COUNTER
───────────────────────────────────────── */
.sticky-cta-counter {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  line-height: 1.2;
}

.sticky-cta-counter small {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5C4D6E;
  display: block;
  line-height: 1;
}

@media (max-width: 680px) {
  .sticky-cta-counter { display: none; }
}

/* ─────────────────────────────────────────
   SWIPER VIDEO CAROUSEL
───────────────────────────────────────── */
.video-swiper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) 3rem;
  overflow: hidden;
  position: relative;
}

.video-swiper .swiper-slide {
  width: 380px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.video-swiper .swiper-slide:hover {
  border-color: var(--cloud);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
  color: var(--amber);
  background: rgba(255,255,255,0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.video-swiper .swiper-button-next::after,
.video-swiper .swiper-button-prev::after {
  font-size: 1rem;
}

.video-swiper .swiper-pagination-bullet-active {
  background: var(--amber);
}

@media (max-width: 680px) {
  .video-swiper .swiper-slide { width: 300px; }
  .video-swiper .swiper-button-next,
  .video-swiper .swiper-button-prev { display: none; }
}

/* ─────────────────────────────────────────
   "BEFORE THEY WERE SILENCED" — Dark accent band
───────────────────────────────────────── */
#before-silenced {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.silenced-bg {
  position: absolute;
  inset: 0;
  background: url('photos/hero-arrest.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  filter: brightness(0.15) grayscale(0.5);
}

@supports (-webkit-touch-callout: none) {
  .silenced-bg { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  .silenced-bg { background-attachment: scroll; }
}

.silenced-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,31,61,0.85) 0%, rgba(42,31,61,0.7) 50%, rgba(42,31,61,0.9) 100%);
  z-index: 1;
}

.silenced-content {
  position: relative;
  z-index: 2;
  padding: 5rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.silenced-header {
  text-align: center;
  margin-bottom: 3rem;
}

.silenced-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.silenced-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.silenced-sub {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.silenced-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.silenced-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.silenced-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.silenced-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.5s;
}

.silenced-card:hover .silenced-photo {
  filter: grayscale(0%) brightness(1);
}

.silenced-card-body {
  padding: 1.5rem;
}

.silenced-status {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(126,87,194,0.2);
  color: #7E57C2;
  margin-bottom: 0.6rem;
}

.silenced-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.silenced-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.silenced-card-body blockquote {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.silenced-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.silenced-detail strong { color: var(--amber); }

.silenced-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .silenced-cards { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}


/* ══════════════════════════════════════
   QUESTIONS SECTION — "The Questions They Were Asking"
   Cinematic dark interrogation aesthetic
══════════════════════════════════════ */

#questions-section {
  background: #E8E0F0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

/* Subtle vignette + ambient glow */
#questions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(124,58,237,0.05) 0%, transparent 70%),
    radial-gradient(ellipse at 0% 100%, rgba(126,87,194,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Scanline texture */
#questions-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.07) 3px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 0;
}

.questions-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ── Eyebrow ── */
.questions-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 4.5rem;
  opacity: 0;
  animation: q-fadein 0.9s ease forwards 0.4s;
}

.q-eyebrow-line {
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124,58,237,0.5));
}
.q-eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(124,58,237,0.5));
}

.q-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.75;
  white-space: nowrap;
}

/* ── Question Stage ── */
.question-stage {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.question-text-wrap {
  display: inline;
}

.question-display {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #2A1836;
  line-height: 1.38;
  letter-spacing: -0.015em;
  display: inline;
}

/* ── Word redaction ── */
.q-word {
  display: inline-block;
  position: relative;
  margin: 0 0.05em;
}

.q-word::after {
  content: '';
  position: absolute;
  top: 6px;
  left: -3px;
  right: -3px;
  bottom: 5px;
  background: #DDD5EA;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.q-word.q-redacted::after {
  transform: scaleX(1);
}

/* ── Blinking cursor ── */
.q-cursor {
  display: inline-block;
  width: 2.5px;
  height: 1.1em;
  background: var(--amber);
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -0.08em;
  border-radius: 1px;
  animation: q-blink 0.9s step-end infinite;
}

.q-cursor.q-cursor-hidden {
  display: none;
}

@keyframes q-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Attribution ── */
.question-attr {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(124,58,237,0.58);
  font-style: italic;
  margin-top: 1.6rem;
  min-height: 1.3rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  letter-spacing: 0.015em;
}

.question-attr.q-attr-visible {
  opacity: 1;
}

/* ── Progress dots ── */
.q-progress {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: q-fadein 0.9s ease forwards 0.8s;
}

.q-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  transition: background 0.35s ease, transform 0.35s ease;
}

.q-dot.q-dot-active {
  background: var(--amber);
  transform: scale(1.4);
}

.q-dot.q-dot-done {
  background: rgba(124,58,237,0.45);
}

/* ── Finale ── */
.q-finale {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
}

.q-finale.q-finale-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.q-finale-rule {
  width: 48px;
  height: 1px;
  background: rgba(124,58,237,0.35);
  margin: 0 auto 2rem;
}

.q-finale-numbers {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  color: #2A1836;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.q-num {
  font-size: 1.35em;
  font-weight: 800;
  color: var(--amber);
}

.q-num-zero {
  color: var(--ember);
}

.q-finale-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #5C4D6E;
  margin-bottom: 2.2rem;
  letter-spacing: 0.025em;
}

@keyframes q-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

@media (max-width: 640px) {
  .question-display { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .questions-eyebrow { margin-bottom: 3rem; }
  .q-eyebrow-line { max-width: 30px; }
}


/* ══════════════════════════════════════
   "WHY THIS MATTERS" — Stats Strip + Dark Quote
══════════════════════════════════════ */

.about-stats-strip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.about-stat {
  padding: 2.75rem 2rem;
  text-align: center;
  border-right: 1px solid var(--cloud);
  transition: background 0.2s;
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: rgba(124,58,237,0.04); }

.about-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.about-stat-num small {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.6;
}
.about-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Quote card — light editorial */
.about-quote {
  background: var(--paper) !important;
  border-left: 4px solid var(--amber) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.about-quote::before {
  display: none;
}
.about-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.15;
  line-height: 0.7;
  margin-bottom: 1rem;
  display: block;
  user-select: none;
}
.about-quote blockquote {
  color: var(--text-primary) !important;
  font-size: 1.15rem !important;
  line-height: 1.75 !important;
  margin-bottom: 1.25rem !important;
}
.about-quote cite {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .about-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .about-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .about-stat-num { font-size: 2.2rem; }
}


/* ══════════════════════════════════════
   "DISCOVER THEIR STORIES" — Editorial Cards
══════════════════════════════════════ */

#explore {
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.explore-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.25rem 2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.explore-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--amber), var(--ember));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.explore-card:hover::after { transform: scaleY(1); }
.explore-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.explore-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(124,58,237,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.explore-card:hover .explore-card-icon {
  background: rgba(124,58,237,0.18);
}
.explore-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber);
}

.explore-card-body { flex: 1; }

.explore-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: left;
}
.explore-card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: left;
}
.explore-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.02em;
  display: inline-block;
  transition: letter-spacing 0.2s;
}
.explore-card:hover .explore-card-link {
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { padding: 1.75rem 1.5rem; }
}


/* ══════════════════════════════════════
   "ABOUT THIS PROJECT" — Mission Pillars
══════════════════════════════════════ */

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3.5rem;
  padding: 0 var(--space-md);
}

.mission-pillar {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mission-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.mission-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--ember));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  transition: opacity 0.2s;
}
.mission-pillar:hover::after { opacity: 1; }

.mission-icon {
  width: 60px;
  height: 60px;
  background: rgba(124,58,237,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.mission-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--amber);
}

.mission-pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.mission-pillar p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mission-pillars { grid-template-columns: 1fr; }
}
