/* Try to use Druk Super Condensed if available locally; fall back to Anton */
@font-face {
  font-family: 'Druk Super Condensed';
  src: local('Druk Super Condensed'),
       local('Druk-SuperCondensed'),
       local('DrukSuperCondensed'),
       local('Druk Super Condensed Heavy');
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #ebe6da;
  --ink-soft: #b8b2a6;
  --ink-strong: #ffffff;
  --paper: #181b22;
  --paper-dim: #1f232b;
  --paper-deep: #07080a;
  --rule: rgba(255,255,255,0.10);
  --red: #e85a1a;
  --red-deep: #a83a0e;
  --muted: #8a8580;
  --muted-dark: #555;
  --display: 'Druk Super Condensed', 'Anton', 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --serif: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay oscuro encima del video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}


/* Degradado inferior para legibilidad del título */
.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(24,27,34,0) 0%,
    rgba(24,27,34,1) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Contenedor del contenido: ocupa toda la altura, logos arriba, título abajo */
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 28px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 0;
  width: 100%;
}
.hero-logos a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.hero-logos a:hover { opacity: 0.85; transform: translateY(-1px); }
.hero-logos img {
  display: block;
  height: 45px;
  max-height: 45px;
  width: auto;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(47px, 10.4vw, 182px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
}
.hero-title span { display: block; }
.hero-title .line-2 { color: var(--red); }
.hero-title .line-3 { color: var(--red); }
/* Desktop: line-2 and line-3 share one line */
.hero-title .line-2, .hero-title .line-3 { display: inline; }
.hero-title .line-2::after { content: ' '; }

/* ===== IMAGE STRIP / MARQUEE ===== */
.image-strip {
  position: relative;
  width: calc(100% + 56px);
  margin: 0 -28px 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.strip-caption {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
  color: #888;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.01em;
}
.image-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-left 90s linear infinite;
  will-change: transform;
}
.strip-frame {
  flex: 0 0 auto;
  width: 216px;
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}
.strip-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.strip-frame:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
  transform: scale(1.04);
}
@keyframes scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .image-track { animation: none; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}
.hero-meta-item { text-align: center; }
.hero-meta-item .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #666;
  margin-bottom: 6px;
}
.hero-meta-item .value {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== LEAD / INTRO ===== */
.lead-section {
  color: #fff;
  padding: 120px 28px 120px;
}
.container { max-width: 760px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }
.lead-paragraph {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 28px;
  color: #e8e4dc;
}
.lead-paragraph strong { font-weight: 700; color: #fff; }
.lead-byline {
  margin: 0 0 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.lead-byline .sep { margin: 0 10px; color: var(--red); font-weight: 400; }
@media (max-width: 768px) {
  .lead-byline .sep { display: none; }
  .lead-byline .byline-date, .lead-byline .byline-author { display: block; }
}

/* ===== DROP CAP ===== */
.prose p.dropcap::first-letter {
  font-family: var(--display);
  font-size: 5.2em;
  line-height: 0.85;
  float: left;
  margin: -8px 10px -4px 0;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 400;
}

/* ===== SECTION HEADERS ===== */
.section {
  padding: 70px 28px 50px;
}
.section-marker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.section-marker::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(42px, 4.9vw, 77px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 56px;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.section-title .accent { color: var(--red); }

/* ===== BODY TEXT ===== */
.prose p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--ink);
}
.prose p strong { font-weight: 700; color: var(--ink-strong); }
.prose p em { font-style: italic; }
.quote-inline {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 22px;
  margin: 14px 0;
  font-style: italic;
  color: var(--ink-soft);
}

/* ===== PULL QUOTE ===== */
.pullquote {
  margin: 80px auto 50px;
  max-width: 940px;
  padding: 0;
  text-align: left;
}
.pullquote-text {
  font-family: var(--display);
  font-size: clamp(21px, 3.16vw, 45px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.pullquote-text::before {
  content: '\201C';
  color: var(--red);
  font-family: var(--serif);
  /* font-style: italic; */
  margin-right: 8px;
  font-size: 3em;
  line-height: 0;
  vertical-align: -0.18em;
  position: absolute;
  top: 12px;
  left: -5px;
}
.pullquote-author {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 28px;
  display: block;
  text-align: right;
}

/* ===== STATS BLOCKS ===== */
.stats-block {
  background: var(--paper-deep);
  color: #fff;
  padding: 100px 28px;
}
.stats-block.alt { background: var(--paper-dim); color: var(--ink); }
.stats-block.paper { background: var(--paper-dim); color: var(--ink); }
.stats-block.paper .stats-headline { max-width: 1280px; }
.stats-block.alt .stats-sumario,
.stats-block.paper .stats-sumario { color: var(--ink-soft); }
.stats-block-inner { max-width: 1280px; margin: 0 auto; }
.stats-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--red);
}
.stats-headline {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 900px;
  letter-spacing: 1px;
}
.stats-sumario {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.125em;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  margin-bottom: 64px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 56px 32px;
}
.stat { border-top: 2px solid currentColor; padding-top: 22px; }
.stat-number {
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.stats-block .stat-number { color: #fff; }
.stats-block.alt .stat-number { color: var(--ink); }
.stat-number .unit { font-size: 0.42em; color: var(--red); margin-left: 4px; font-weight: 400; }
.stat-label {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: inherit;
  opacity: 0.85;
  max-width: 280px;
}
.stat-label strong { font-weight: 700; opacity: 1; }

/* ===== HISTORICAL BARS ===== */
.timeline-wrap, .map-wrap { margin: 56px 0 24px; }
.map-embed { background: transparent; }
.timeline {
  margin: 80px 0 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
  height: 280px;
}
.tl-bar {
  background: rgba(255,255,255,0.18);
  position: relative;
  transition: background 0.3s;
  min-height: 4px;
}
.tl-bar.peak { background: var(--red); }
.tl-bar.peak-2 { background: rgba(232, 90, 26, 0.7); }
.tl-bar:hover { background: rgba(255,255,255,0.4); }
.tl-bar .v {
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.tl-bar.peak .v { font-weight: 700; }
.tl-bar .y {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.tl-bar .note {
  position: absolute;
  bottom: calc(100% + 66px);
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
}
.tl-bar .note.note-2024 {
  left: auto; right: 0; transform: none;
  text-align: right; padding-right: 8px;
}
.tl-bar .note.note-2024::after { left: 78%; right: auto; transform: none; }
.tl-bar .note::after {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.3);
}

/* ===== STACKED CAUSAS DE MUERTE ===== */
.causes-chart-wrap { margin: 56px 0 24px; }
.causes-chart-wrap .causes-caption{margin-top:36px;}
.causes-title {
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 900px;
}
p.causes-sumario {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.125em;
  color: var(--ink-soft);
  max-width: 760px;
  margin: -12px 0 28px;
}
.causes-chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
  height: 460px;
  padding-top: 132px;
}
.cc-bar { display: flex; flex-direction: column-reverse; position: relative; min-height: 2px; }
.cc-seg { width: 100%; min-height: 1px; }
.cc-seg.naturales     { background: #f5642a; }
.cc-seg.indeterminada { background: #7d1200; }
.cc-seg.violencia     { background: #e8e2d4; }
.cc-seg.suicidios     { background: #b0aa9d; }
.cc-seg.accidental    { background: #7a7567; }
.cc-seg.fuera         { background: #4d4a44; }
.cc-bar .v {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.cc-bar .y {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.cc-bar .note {
  position: absolute;
  bottom: 100%;
  margin-bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
}
.cc-bar .note::after {
  content: "";
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
}
.cc-bar .note.note-2025 {
  left: auto; right: 0; transform: none;
  text-align: right; padding-right: 8px; width: 260px;
}
.cc-bar .note.note-2025::after { left: auto; right: 8px; transform: none; }
.causes-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 -200px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  align-items: flex-start;
}
.causes-legend .item { display: inline-flex; align-items: center; gap: 8px; }
.causes-legend .sw { width: 14px; height: 14px; display: inline-block; flex: 0 0 14px; }
.causes-legend .sw.naturales     { background: #f5642a; }
.causes-legend .sw.indeterminada { background: #7d1200; }
.causes-legend .sw.violencia     { background: #e8e2d4; }
.causes-legend .sw.suicidios     { background: #b0aa9d; }
.causes-legend .sw.accidental    { background: #7a7567; }
.causes-legend .sw.fuera         { background: #4d4a44; }
.causes-caption { margin-top: 12px; font-family: var(--sans); font-size: 12px; color: var(--muted); letter-spacing: 0.03em; line-height: 1.3em;}


/* ===== ANOTACIONES LATERALES — barra 2025 ===== */
.note-left {
  position: absolute;
  right: calc(100% + 14px);
  font-family: var(--sans);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
  pointer-events: none;
  color: rgba(255,255,255,0.72);
}
.note-left::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}
/* Centro de naturales: 16.9% + 46.4%/2 = 40.1% desde abajo */
.note-naturales-2025 {
  bottom: 58%;
  transform: translateY(50%);
  width: 180px;
}
/* Centro de indeterminada: 63.3% + 36.7%/2 = 81.65% desde abajo */
.note-indeterminada-2025 {
  bottom: 81.65%;
  transform: translateY(50%);
}

@media (max-width: 768px) {
  .causes-chart { height: 340px; padding-top: 110px; gap: 4px; }
  .causes-title { margin-bottom: 20px; }
  p.causes-sumario { font-size: 15px; }
  .cc-bar .v { font-size: 11px; }
  .cc-bar .y { font-size: 11px; }
  .cc-bar .note { font-size: 9px; width: 170px; margin-bottom: 36px; }
  .cc-bar .note::after { height: 28px; }
  .cc-bar .note.note-2025 { width: 190px; }
}

.timeline-caption {
  margin-top: 56px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.125em;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}

/* ===== CALLOUT ===== */
.callout {
  background: transparent;
  border: none;
  padding: 0;
  margin: 48px 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 2;
  color: var(--ink);
  font-weight: 500;
}
.callout-mark {
  background: rgba(232, 90, 26, 0.15);
  border-left: 5px solid rgba(232, 90, 26, 1);
  padding: 0.12em 0.3em 0.12em 10px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* ===== RANKING / TABLE ===== */
.ranking { margin: 48px 0; }
.ranking-head {
  display: grid;
  grid-template-columns: 32px 1fr 100px;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 2px solid var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.ranking-row {
  display: grid;
  grid-template-columns: 32px 1fr 100px;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.ranking-row.top {
  background: linear-gradient(90deg, rgba(232,90,26,0.10), transparent);
  padding-left: 12px;
  margin-left: -12px;
}
.ranking-pos { font-family: var(--display); font-size: 28px; color: var(--red); line-height: 1; }
.ranking-name { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink); }
.ranking-row.top .ranking-name { font-size: 18px; font-weight: 700; }
.ranking-num { font-family: var(--display); font-size: 32px; color: var(--ink); text-align: right; line-height: 1; }
.ranking-row.top .ranking-num { font-size: 44px; color: var(--red); }

/* ===== END / CREDITS ===== */
.end-mark { margin: 60px 0 40px; text-align: center; }
.end-mark::before { content: '\25A0'; color: var(--red); font-size: 14px; }

.credits {
  background: var(--paper);
  color: var(--ink);
  padding: 100px 28px 60px;
}
.credits-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  margin-bottom: 48px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.credits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 56px;
  padding-bottom: 56px;
}
.credits-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 32px;
}
.credit-block { text-align: left; }
.credit-block .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 10px;
}
.credit-block .value { font-family: var(--serif); font-size: 18px; line-height: 1.45; color: var(--ink); }

@media (max-width: 480px) {
  .credits-title {white-space: initial;}
  .credits-title span{display: block;}
  .credits-grid { gap: 28px; }
  .credit-block .label { margin-bottom: 0px; }
}

/* ===== VIDEO EMBED ===== */
.video-figure {
  margin-bottom: 40px;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 32px 0 0;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ===== UTILITY ===== */
.divider { width: 60px; height: 3px; background: var(--red); margin: 56px auto; }

/* ===== PHOTO FIGURE ===== */
.photo-figure { margin: 0; padding: 0 28px; background: transparent; }
.photo-figure-inner { max-width: 1280px; margin: 0 auto; }
.photo-figure img { width: 100%; height: auto; display: block; background: #1a1a1a; }
.photo-figure figcaption {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  letter-spacing: 0.01em;
  font-style: italic;
  max-width: 860px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section .container .photo-figure{padding:0;margin:40px 0;}
@media (max-width: 768px) {
  .photo-figure { padding: 0 22px; }
  .photo-figure figcaption { font-size: 12px; text-align: left; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body { font-size: 17px; }
  .hero { padding: 18px 22px 18px; }
  .hero-title { font-size: 18vw; padding-bottom: 60px;}
  .hero-title .line-2, .hero-title .line-3 { display: inline; }
  .hero-inner{padding:30px 0;}
  .image-strip { width: calc(100% + 44px); margin: 0 -22px 20px; }
  .strip-caption { font-size: 12px; }
  .strip-frame { width: 158px; height: 264px; }
  .hero-logos { gap: 24px; margin-bottom: 36px; }
  .hero-logos img { height: 36px; }
  .hero-meta { gap: 28px 36px; }
  .lead-section, .section { padding: 70px 22px 50px; }
  .stats-block { padding: 70px 22px; }
  .stats-grid { gap: 40px 20px; }
  .credits { padding: 70px 22px 50px; }
  .timeline { height: 200px; gap: 4px; }
  .tl-bar .v { font-size: 11px; top: -22px; }
  .tl-bar .y { font-size: 11px; }
  .tl-bar .note { font-size: 8.5px; width: 90px; bottom: calc(100% + 54px); }
  .tl-bar .note::after { height: 38px; }
  .tl-bar .note.note-2024 { display: none; }
  .prose p { font-size: 19px; line-height: 1.45; }
  .prose p.quote-inline { font-size: 17px; line-height: 1.35; font-weight: 100; }
  .pullquote { margin: 60px auto; padding: 0; }
  .pullquote-text { font-size: 28px; position: relative; padding: 0; }
  .pullquote-text::before { font-size: 3em; top: 10px; left: -2px; }
  .ranking-head, .ranking-row { grid-template-columns: 28px 1fr 70px; gap: 10px; }
  .ranking-num { font-size: 24px; }
  .ranking-row.top .ranking-num { font-size: 32px; }
}

@media (max-width: 768px) {
  .prose p.dropcap::first-letter,
  .lead-paragraph:first-of-type::first-letter {
    font-family: var(--display);
    font-size: 4.8em;
    line-height: 0.85;
    float: left;
    margin: -4px 8px -4px 0;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 400;
  }
}

/* ===== INFOGRAFÍA: COSTOS DE SOBREVIVIR EN PRISIÓN ===== */
.costos-bloque {
  padding: 48px 0 32px;
  margin: 0;
}
.costos-inner {
  max-width: 100%;
}
.costos-header {
  margin-bottom: 28px;
}
/* costos-eyebrow y costos-titulo eliminados — usa .causes-title */

/* Tabla de ítems */
.costos-tabla {
}
.costos-fila {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.costos-fila--destacada {
  background: rgba(232,90,26,0.06);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}
.costos-fila--alerta .costos-nombre {
  color: var(--red);
}
.costos-concepto {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.costos-nombre {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3em;
  color: #fff;
  text-transform: uppercase;
}
.costos-nota {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
}
.costos-monto {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.costos-cifra {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 0.9;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.costos-monto--doble {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-end;
  justify-content: flex-end;
}
.costos-par {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.costos-signo {
  font-size: 0.55em;
  vertical-align: 0.1em;
  opacity: 0.8;
}
.costos-unidad {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  text-align: right;
}
/* costos-fuente eliminado — usa .causes-caption */
@media (max-width: 600px) {
  .costos-fila {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .costos-monto {
    text-align: left;
    order: -1;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .costos-cifra { font-size: 36px; }
  .costos-monto--doble {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    text-align: left;
    justify-content: flex-start;
    order: -1;
  }
  .costos-monto--doble .costos-par {
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
  }
}

/* ===== MEDIOS ALIADOS ===== */
.aliados-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.aliados-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
  margin-top: 24px;
}
.aliados-grid img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.aliados-grid img:hover { opacity: 1; }
@media (max-width: 768px) {
  .aliados-grid {
    gap: 20px 28px;
  }
  .aliados-grid img {
    height: 28px;
    max-width: 110px;
  }
}
