/* ========================================================================
   Poradnik Zdrowie - Longform: Statek widmo na Atlantyku
   ======================================================================== */

:root {
  --brand: #E30613;
  --brand-deep: #B30410;
  --brand-soft: #FFE5E7;
  --coral: #FF6B6B;
  --coral-soft: #FFB3B3;
  --amber: #D4A574;
  --ink: #1A1A1A;
  --ink-2: #2D2D2D;
  --ink-3: #5C5C5C;
  --ink-4: #8A8A8A;
  --line: #E5DFD4;
  --line-2: #D7D0C2;
  --cream: #F5F0E8;
  --cream-2: #FAF7F2;
  --paper: #FFFFFF;
  --navy: #0A1628;
  --navy-2: #0E1B33;
  --graphite: #1A1A1A;

  --serif: "Lora", "PT Serif", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(20, 20, 20, 0.04), 0 1px 3px rgba(20, 20, 20, 0.06);
  --shadow: 0 4px 12px rgba(20, 20, 20, 0.06), 0 1px 3px rgba(20, 20, 20, 0.05);
  --shadow-lg: 0 12px 32px rgba(20, 20, 20, 0.08), 0 2px 8px rgba(20, 20, 20, 0.04);

  --max: 1240px;
  --col: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========================================================================
   Reading progress bar
   ======================================================================== */
.read-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.read-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--brand);
  transition: width 0.1s linear;
}

/* ========================================================================
   Nav
   ======================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 60px; width: auto; }
.nav__logo .nav__logo-svg-light { display: block; }
.nav__logo .nav__logo-svg-dark { display: none; }
.nav.is-scrolled .nav__logo-svg-light { display: none; }
.nav.is-scrolled .nav__logo-svg-dark { display: block; }

.nav__crumbs {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.nav.is-scrolled .nav__crumbs { color: var(--ink-3); }
.nav__crumbs span + span {
  margin-left: 16px;
  position: relative;
}
.nav__crumbs span + span::before {
  content: "";
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  vertical-align: middle;
  margin-right: 16px;
}

.nav__right {
  display: flex; align-items: center; gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.nav.is-scrolled .nav__right { color: var(--ink-2); }
.nav__share-btn {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  font: inherit;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav__share-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 1200px 800px at 70% 35%, rgba(227, 6, 19, 0.12), transparent 60%),
    linear-gradient(180deg, #0A1628 0%, #0E1B33 50%, #1A1A1A 100%);
  color: #F5F0E8;
  overflow: hidden;
  padding: 110px 32px 80px;
  display: flex; align-items: center;
}

.hero__waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 33vh;
  pointer-events: none;
  overflow: hidden;
}
.hero__waves svg { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; }
.hero__wave-1 { animation: waveDrift 24s linear infinite; opacity: 0.4; }
.hero__wave-2 { animation: waveDrift 18s linear infinite reverse; opacity: 0.25; }
.hero__wave-3 { animation: waveDrift 32s linear infinite; opacity: 0.6; }
@keyframes waveDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__ship {
  position: absolute;
  right: 6%; bottom: 30vh;
  width: 180px; height: 38px;
  opacity: 0.14;
  pointer-events: none;
  animation: shipBob 8s ease-in-out infinite;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero__ship { display: none; }
}
@keyframes shipBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 32vh;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.18) 70%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.2);
  animation: blip 2s ease-in-out infinite;
}
@keyframes blip {
  0%, 100% { box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(227, 6, 19, 0.05); }
}
.hero__eyebrow .sep { color: rgba(245, 240, 232, 0.4); margin: 0 4px; }
.hero__eyebrow .meta { color: rgba(245, 240, 232, 0.85); font-weight: 500; letter-spacing: 0.12em; }

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--coral-soft);
  font-weight: 500;
}

.hero__deck {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.85);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__byline {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 44px;
  align-items: center;
}
.hero__byline strong { color: rgba(245, 240, 232, 0.92); font-weight: 600; }
.hero__byline .dot { width: 3px; height: 3px; background: rgba(245, 240, 232, 0.4); border-radius: 50%; display: inline-block; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 540px;
}
.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.stat__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.stat__num .unit { font-size: 16px; color: var(--coral); margin-left: 2px; vertical-align: top; }
.stat__caption {
  font-size: 10.5px;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 8px;
}

.hero__virus-col {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 460px;
}
.hero__virus-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.hero__scroll-hint {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.hero__scroll-hint .arrow {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, rgba(245, 240, 232, 0.5));
  animation: scrollArrow 2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ========================================================================
   Virus visualization
   ======================================================================== */
.virus {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.virus__float {
  width: 100%; height: 100%;
  animation: virusFloat 5s ease-in-out infinite;
  position: relative;
}
@keyframes virusFloat {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
}

/* glow */
.virus__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 107, 107, 0.55) 0%,
      rgba(227, 6, 19, 0.35) 20%,
      rgba(227, 6, 19, 0.15) 38%,
      transparent 65%);
  filter: blur(20px);
  animation: glowPulse 3.5s ease-in-out infinite 0.5s;
  z-index: 1;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 0.95; }
}

/* envelope pulse wrapper */
.virus__body {
  position: absolute;
  inset: 14%;
  animation: virusPulse 3.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes virusPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* 3D rotation wrapper */
.virus__spin {
  width: 100%; height: 100%;
  position: relative;
  animation: virusRotate 22s linear infinite;
  transform-style: preserve-3d;
}
@keyframes virusRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* orbital particles */
.virus__orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.8);
  transform-origin: 0 0;
}
.particle.small { width: 4px; height: 4px; opacity: 0.7; background: var(--coral-soft); }
.particle.amber { background: var(--amber); box-shadow: 0 0 8px rgba(212, 165, 116, 0.6); }

@keyframes orbit-a {
  from { transform: rotate(0deg) translateX(190px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(190px) rotate(-360deg); }
}
@keyframes orbit-b {
  from { transform: rotate(0deg) translateX(220px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(220px) rotate(360deg); }
}
@keyframes orbit-c {
  from { transform: rotate(0deg) translateX(170px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
}

.particle:nth-child(1) { animation: orbit-a 14s linear infinite; }
.particle:nth-child(2) { animation: orbit-a 14s linear infinite -3s; }
.particle:nth-child(3) { animation: orbit-a 14s linear infinite -7s; }
.particle:nth-child(4) { animation: orbit-b 19s linear infinite; }
.particle:nth-child(5) { animation: orbit-b 19s linear infinite -6s; }
.particle:nth-child(6) { animation: orbit-b 19s linear infinite -12s; }
.particle:nth-child(7) { animation: orbit-c 11s linear infinite; }
.particle:nth-child(8) { animation: orbit-c 11s linear infinite -4s; }
.particle:nth-child(9) { animation: orbit-c 11s linear infinite -8s; }

/* virus hover speeds things up */
.hero__virus-wrap:hover .virus__spin { animation-duration: 14s; }
.hero__virus-wrap:hover .virus__glow { animation-duration: 2s; }

/* ========================================================================
   Mini-virus return-to-top
   ======================================================================== */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 40;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top svg { width: 36px; height: 36px; }
.to-top:hover { transform: translateY(-2px); }

/* ========================================================================
   Section wrappers
   ======================================================================== */
.wrap {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.section-tag::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--brand);
}

.section-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-h + .section-lede {
  font-size: 18px; line-height: 1.6; color: var(--ink-3);
  max-width: 640px;
  margin-bottom: 36px;
}

/* ========================================================================
   Lead section
   ======================================================================== */
.lead {
  padding: 96px 0 64px;
  background: var(--cream-2);
}
.lead__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.lead__body { max-width: 720px; }
.lead__body p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 400;
}
.lead__body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 5.6em;
  font-weight: 600;
  float: left;
  line-height: 0.82;
  margin: 8px 12px -4px 0;
  color: var(--brand);
}
.lead__body p + p {
  font-size: 18px;
  font-family: var(--sans);
  color: var(--ink-2);
  line-height: 1.7;
}

.pull-quote {
  border-left: 3px solid var(--brand);
  padding: 8px 0 8px 22px;
  position: sticky;
  top: 100px;
}
.pull-quote__mark {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.6;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}
.pull-quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 14px;
}
.pull-quote__attr {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* ========================================================================
   Map section (sticky route)
   ======================================================================== */
.route {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.route__header {
  max-width: var(--max);
  margin: 0 auto 48px;
  padding: 0 24px;
}

.route__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.route__map {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.route__map-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.route__map-title .legend {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
}
.route__map-title .legend span { display: inline-flex; align-items: center; gap: 5px; color: var(--ink-3); font-weight: 500; }
.route__map-title .legend i {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
}
.route__map-title .legend i.port { background: var(--brand); }
.route__map-title .legend i.disp { background: var(--amber); }

.route__map svg { width: 100%; height: auto; }

.route__text-col { padding-top: 8px; }
.route__step {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.route__step:last-child { border-bottom: 0; }
.route__step h4 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.route__step h4 .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  vertical-align: middle;
}
.route__step p { font-size: 16.5px; line-height: 1.65; color: var(--ink-2); }

/* ========================================================================
   Timeline
   ======================================================================== */
.timeline {
  padding: 100px 0 60px;
  background: var(--cream-2);
}
.timeline__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.timeline__cards {
  position: relative;
  display: flow-root;
}
.timeline__line {
  position: absolute;
  left: 143px;
  top: 14px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg, var(--line), var(--brand) 4%, var(--brand) 96%, var(--line));
}
.tl-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 70px;
  margin-bottom: 56px;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tl-card.is-out { opacity: 0; transform: translateY(30px); }

.tl-card__date {
  text-align: right;
  padding-top: 4px;
}
.tl-card__date .d {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--brand);
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: block;
}
.tl-card__date .m {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.tl-card__dot {
  position: absolute;
  left: 132px;
  top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--brand);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.tl-card__dot::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.tl-card.is-in .tl-card__dot {
  box-shadow: 0 0 0 6px rgba(227, 6, 19, 0.1);
}

.tl-card__body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.tl-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 16px;
}
.tl-card__icon svg { width: 22px; height: 22px; stroke: currentColor; }

.tl-card__num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.tl-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.tl-card__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.tl-card__text + .tl-card__text { margin-top: 12px; }

.tl-card__pullout {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--brand);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.tl-card__pullout .big {
  font-family: var(--serif);
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  color: var(--brand);
  display: block;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

/* ========================================================================
   Fact box
   ======================================================================== */
.factbox-wrap {
  background: var(--cream-2);
  padding: 32px 0 80px;
}
.factbox {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px clamp(28px, 5vw, 56px);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--brand);
  box-shadow: var(--shadow);
  position: relative;
}
.factbox__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 8px;
}
.factbox__badge {
  width: 48px; height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.factbox__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.factbox h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.factbox__intro {
  color: var(--ink-3);
  margin-bottom: 36px;
  max-width: 620px;
  font-size: 16px;
}

.factbox__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 28px;
}
.fact {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.fact__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.fact__icon svg { width: 20px; height: 20px; stroke: currentColor; }
.fact h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.fact p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.fact .em { color: var(--brand); font-weight: 600; }

.factbox__sources {
  border-top: 1px solid var(--line-2);
  margin-top: 12px;
  padding-top: 22px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
}
.factbox__sources strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-right: 4px;
  font-weight: 700;
}
.src-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
a.src-chip:hover {
  background: var(--brand-deep, #8a1a1a);
  color: #fff;
  border-color: var(--brand-deep, #8a1a1a);
  transform: translateY(-1px);
}
a.src-chip:focus-visible {
  outline: 2px solid var(--coral, #E30613);
  outline-offset: 2px;
}

/* ========================================================================
   Data section
   ======================================================================== */
.data {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.data__header {
  max-width: var(--max);
  margin: 0 auto 48px;
  padding: 0 24px;
}

.data__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.data-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
}
.data-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.data-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.data-card p.lede { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin-bottom: 22px; }

/* mortality */
.mortality__bar {
  position: relative;
  height: 60px;
  border-radius: 10px;
  background: var(--line);
  overflow: hidden;
  margin: 8px 0 18px;
}
.mortality__fill {
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 16px;
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  transition: width 1.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mortality__scale {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.mortality__compare {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mort-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}
.mort-row .label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin-bottom: 4px; }
.mort-row .val { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); }
.mort-row .val span { color: var(--brand); }

/* incubation */
.incub {
  position: relative;
  margin-top: 18px;
}
.incub__track {
  height: 14px;
  background: linear-gradient(90deg, #FFE5E7 0%, #FFB3B3 30%, #FF6B6B 60%, #E30613 100%);
  border-radius: 999px;
  position: relative;
}
.incub__tick {
  position: absolute;
  top: -6px;
  width: 2px; height: 26px;
  background: var(--ink);
  transform: translateX(-1px);
}
.incub__tick::after {
  content: attr(data-label);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 600;
  white-space: nowrap;
}
.incub__legend {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-4);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.incub__note {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--brand-soft);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.incub__note strong { color: var(--brand-deep); }

/* country list (heatmap-ish) */
.countries {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 14px;
}
.country {
  display: grid;
  grid-template-columns: 28px 90px 1fr 40px;
  gap: 14px;
  align-items: center;
  font-size: 15px;
}
.country__flag {
  width: 28px; height: 20px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line-2);
  position: relative;
}
.country__flag img,
.country__flag svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.country__bar {
  position: relative;
  height: 10px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.country__fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--brand);
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.country__name { font-weight: 500; color: var(--ink-2); }
.country__val { text-align: right; font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 16px; }

/* ========================================================================
   FAQ
   ======================================================================== */
.faq {
  padding: 100px 0;
  background: var(--cream-2);
}
.faq__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  text-align: left;
  font: inherit;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-item__btn:hover { color: var(--brand); }
.faq-item__plus {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--ink);
}
.faq-item.is-open .faq-item__plus {
  transform: rotate(45deg);
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.faq-item__plus svg { width: 14px; height: 14px; }

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__body > div { overflow: hidden; }
.faq-item__body p {
  padding-bottom: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 680px;
}
.faq-item__body p + p { padding-top: 8px; }

/* ========================================================================
   CTA + footer
   ======================================================================== */
.outro {
  padding: 56px 0 40px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.outro__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.outro__summary {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 720px;
}

.cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}
.cta h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 18px; }
.cta__form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 4px;
  overflow: hidden;
}
.cta__form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font: inherit;
  color: #fff;
  font-size: 14px;
}
.cta__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta__form input:focus { outline: none; }
.cta__form button {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.cta__form button:hover { background: var(--brand-deep); }

.cta__share {
  display: flex; align-items: center; gap: 10px;
  flex-direction: column;
  align-items: stretch;
}
.cta__share .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 4px;
}
.cta__share-row { display: flex; gap: 8px; }
.share-btn {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.share-btn:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.share-btn svg { width: 18px; height: 18px; }

/* author */
.author {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 36px;
  align-items: center;
}
.author__avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #E30613);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 36px; color: #fff;
}
.author__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}
.author__role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 8px;
}
.author__bio {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

.sources {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.sources h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 700;
  margin-bottom: 14px;
}
.sources ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.sources li {
  font-size: 14px;
  color: var(--ink-3);
  display: flex; gap: 8px;
}
.sources li::before {
  content: "-";
  color: var(--ink-4);
}

.footer {
  padding: 36px 24px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-4);
}
.footer a { color: var(--ink-3); text-decoration: underline; }

/* ========================================================================
   Helpers / reveal animations
   ======================================================================== */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-out { opacity: 0; transform: translateY(20px); }

/* ========================================================================
   ACTION BOX - "Co zrobić, jeśli podejrzewasz objawy"
   ======================================================================== */
.action {
  padding: 56px 0 80px;
  background: var(--cream-2);
}
.action__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.action__card {
  background: var(--cream);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 40px clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  position: relative;
}
.action__header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 14px;
}
.action__badge {
  width: 48px; height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.action__badge svg { width: 24px; height: 24px; }
.action__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.action__card h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.action__intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 12px 0 32px;
  max-width: 640px;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.step__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(227, 6, 19, 0.18);
}
.step__body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.step__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.step__body p + p { margin-top: 8px; }
.step__lead { color: var(--ink-3); }
.step__list {
  list-style: none;
  margin: 8px 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.step__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.step__note {
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--paper);
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  border-left: 2px solid var(--brand);
}
.step__note strong { color: var(--brand-deep); }

.step__alert {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--brand-soft);
  border-radius: 10px;
  border-left: 3px solid var(--brand);
}
.step__alert-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 6px;
}
.step__alert-tag svg { color: var(--brand); }
.step__alert p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 12px;
}
.phone-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.phone-row:hover {
  text-decoration: none;
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.phone-row__sit .t {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.25;
}
.phone-row__sit .s {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
}
.phone-row__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  display: flex; align-items: baseline; gap: 6px;
}
.phone-row__num .org {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-transform: uppercase;
}
.phone-row--alert {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.phone-row--alert .phone-row__sit .t { color: #fff; }
.phone-row--alert .phone-row__sit .s { color: rgba(255,255,255,0.8); }
.phone-row--alert .phone-row__num { color: #fff; font-size: 30px; }
.phone-row--alert:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: #fff;
}

.step__checks {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step__checks li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.step__checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 4px;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.action__footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-3);
  font-style: italic;
}

/* ========================================================================
   TABLET (≤ 1100px) - soften desktop grid before going single-column
   ======================================================================== */
@media (max-width: 1100px) and (min-width: 901px) {
  .hero__inner { gap: 36px; }
  .hero__title { font-size: clamp(40px, 6vw, 64px); }
  .hero__virus-col { max-width: 360px; }

  .lead__grid { grid-template-columns: 1fr 280px; gap: 32px; }

  .route__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

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

  .factbox__grid { gap: 22px 28px; }
}

/* ========================================================================
   MOBILE (≤ 900px)
   ======================================================================== */
@media (max-width: 900px) {
  body { font-size: 17px; line-height: 1.65; }

  /* --- NAV --- */
  .nav { padding: 10px 16px; }
  .nav__logo img { height: 50px; }
  .nav__crumbs { display: none; }
  .nav__right { display: none; }

  /* --- HERO --- */
  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
    background:
      radial-gradient(ellipse 700px 500px at 50% 30%, rgba(227, 6, 19, 0.16), transparent 60%),
      linear-gradient(180deg, #0A1628 0%, #0E1B33 60%, #1A1A1A 100%);
  }
  .hero__horizon, .hero__ship { display: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: left;
  }
  .hero__text { width: 100%; }

  .hero__virus-col {
    order: -1;
    justify-self: center;
    max-width: 240px;
    gap: 16px;
  }
  .hero__virus-wrap { max-width: 220px; }

  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .hero__eyebrow .sep { display: none; }
  .hero__eyebrow .meta:nth-of-type(2) { display: none; } /* hide "globalny alarm" on mobile */

  .hero__title {
    font-size: clamp(38px, 10vw, 52px);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .hero__deck {
    font-size: 16.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero__byline {
    font-size: 12.5px;
    gap: 6px 12px;
    margin-bottom: 28px;
  }
  .hero__byline > span:last-child { width: 100%; } /* update timestamp on own line */

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: none;
  }
  .stat { padding: 14px 16px; }
  .stat__num { font-size: 32px; }
  .stat__label { font-size: 10px; margin-top: 6px; }

  .hero__scroll-hint {
    color: rgba(245, 240, 232, 0.5);
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .hero__scroll-hint .arrow { height: 24px; }

  /* simpler virus animation on mobile (battery) */
  .particle { display: none; }
  .particle:nth-child(-n+5) { display: block; }
  .virus__spin { animation-duration: 30s; }
  .virus__glow { filter: blur(14px); }

  /* --- READING PROGRESS / TO-TOP --- */
  .to-top {
    width: 48px; height: 48px;
    right: 14px; bottom: 14px;
  }
  .to-top svg { width: 30px; height: 30px; }

  /* --- LEAD --- */
  .lead { padding: 56px 0 40px; }
  .lead__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 20px;
  }
  .lead__body p { font-size: 19px; line-height: 1.55; }
  .lead__body p + p { font-size: 17px; }
  .lead__body p:first-child::first-letter {
    font-size: 5em;
    margin: 8px 8px -4px 0;
  }
  .pull-quote {
    position: static;
    padding: 6px 0 6px 18px;
    background: var(--paper);
    border-radius: 0;
    border-left-width: 3px;
  }
  .pull-quote__text { font-size: 18px; }

  /* --- ROUTE / MAP --- */
  .route { padding: 56px 0; }
  .route__header { padding: 0 20px; margin-bottom: 32px; }
  .route__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }
  .route__map {
    position: relative;
    top: 0;
    padding: 18px;
    border-radius: 12px;
  }
  .route__map-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }
  .route__map-title .legend { font-size: 10px; gap: 10px; flex-wrap: wrap; }
  .route__map-title > span:first-child { font-size: 10.5px; }
  /* Make map text labels bigger on mobile so they're legible */
  #routeMap text { font-size: 11px !important; }
  .route__step h4 { font-size: 19px; }
  .route__step h4 .num { width: 22px; height: 22px; font-size: 11px; }
  .route__step p { font-size: 15.5px; }
  .route__step { padding: 18px 0; }

  /* --- TIMELINE --- */
  .timeline { padding: 56px 0 30px; }
  .timeline__inner { padding: 0 20px; }
  .timeline__line {
    left: 28px;
    top: 4px;
    bottom: 40px;
  }

  .tl-card {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 36px;
    padding-left: 56px;
    position: relative;
  }
  .tl-card__date {
    text-align: left;
    padding-top: 0;
    margin-bottom: 2px;
  }
  .tl-card__date .d {
    font-size: 18px;
    display: inline;
    margin-right: 8px;
    line-height: 1.2;
  }
  .tl-card__date .d br { display: none; }
  .tl-card__date .m {
    display: inline;
    font-size: 10.5px;
    color: var(--ink-4);
    letter-spacing: 0.12em;
    margin-top: 0;
  }
  .tl-card__dot {
    left: 18px;
    top: 4px;
    width: 20px; height: 20px;
  }
  .tl-card__dot::after { width: 8px; height: 8px; }
  .tl-card__body { padding: 22px 20px; border-radius: 10px; }
  .tl-card__icon { width: 34px; height: 34px; margin-bottom: 12px; }
  .tl-card__icon svg { width: 20px; height: 20px; }
  .tl-card__num { font-size: 11.5px; margin-bottom: 4px; }
  .tl-card__title { font-size: 21px; line-height: 1.2; margin-bottom: 10px; }
  .tl-card__text { font-size: 16px; line-height: 1.6; }
  .tl-card__pullout { margin-top: 14px; padding: 12px 14px; font-size: 14.5px; }
  .tl-card__pullout .big { font-size: 26px; }

  /* timeline section header */
  .timeline > .timeline__inner > div[style*="max-width:760px"] {
    max-width: 100%;
  }

  /* --- FACT BOX --- */
  .factbox-wrap { padding: 12px 16px 56px; }
  .factbox {
    padding: 28px 20px;
    border-left-width: 4px;
    border-radius: 12px;
  }
  .factbox__header {
    gap: 12px;
    margin-bottom: 12px;
  }
  .factbox__badge {
    width: 40px; height: 40px;
    border-radius: 8px;
  }
  .factbox__badge svg { width: 18px; height: 18px; }
  .factbox h2 { font-size: 24px; line-height: 1.18; }
  .factbox__eyebrow { font-size: 10.5px; }
  .factbox__intro { font-size: 15px; margin-bottom: 26px; }
  .factbox__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .fact { grid-template-columns: 32px 1fr; gap: 12px; }
  .fact__icon { width: 32px; height: 32px; }
  .fact__icon svg { width: 18px; height: 18px; }
  .fact h4 { font-size: 16px; }
  .fact p { font-size: 14.5px; line-height: 1.5; }
  .factbox__sources {
    gap: 10px 14px;
    padding-top: 18px;
    margin-top: 12px;
  }
  .src-chip { font-size: 11px; padding: 4px 9px; }

  /* --- DATA --- */
  .data { padding: 56px 0; }
  .data__header { padding: 0 20px; margin-bottom: 32px; }
  .data__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .data-card { padding: 22px 20px; border-radius: 12px; }
  .data-card h3 { font-size: 20px; }
  .data-card p.lede { font-size: 14px; }
  .mortality__bar { height: 48px; }
  .mortality__fill { font-size: 22px; padding-right: 12px; }
  .mortality__compare {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .mort-row { padding: 10px; }
  .mort-row .label { font-size: 9.5px; }
  .mort-row .val { font-size: 17px; }

  .country {
    grid-template-columns: 24px 80px 1fr 32px;
    gap: 10px;
    font-size: 14px;
  }
  .country__flag { width: 24px; height: 17px; }
  .country__val { font-size: 14px; }

  .incub__tick::after { font-size: 10px; }
  /* Move middle tick label below the bar to prevent overlap on narrow viewports */
  .incub__tick:nth-child(2)::after {
    top: 28px;
    color: var(--ink);
    background: var(--cream-2);
    padding: 1px 4px;
    border-radius: 3px;
  }
  .incub__legend { font-size: 11px; flex-wrap: wrap; gap: 6px; margin-top: 44px; }
  .incub__note { font-size: 13.5px; padding: 12px 14px; }

  /* --- FAQ --- */
  .faq { padding: 56px 0; }
  .faq__inner { padding: 0 20px; }
  .faq-item__btn {
    font-size: 18px;
    padding: 20px 0;
    gap: 14px;
    line-height: 1.3;
  }
  .faq-item__plus {
    width: 28px; height: 28px;
    flex-shrink: 0;
  }
  .faq-item__plus svg { width: 12px; height: 12px; }
  .faq-item__body p { font-size: 16px; line-height: 1.65; }

  /* --- ACTION BOX --- */
  .action { padding: 12px 0 40px; }
  .action__inner { padding: 0 16px; }
  .action__card {
    padding: 28px 20px;
    border-left-width: 4px;
    border-radius: 12px;
  }
  .action__header { gap: 12px; margin-bottom: 10px; }
  .action__badge { width: 40px; height: 40px; border-radius: 8px; }
  .action__badge svg { width: 20px; height: 20px; }
  .action__card h2 { font-size: 22px; line-height: 1.2; }
  .action__intro { font-size: 16.5px; margin-bottom: 24px; }
  .steps { gap: 22px; }
  .step { grid-template-columns: 36px 1fr; gap: 14px; }
  .step__num {
    width: 32px; height: 32px;
    font-size: 15px;
    box-shadow: 0 0 0 3px var(--cream), 0 0 0 4px rgba(227, 6, 19, 0.18);
  }
  .step__body h3 { font-size: 17px; margin-bottom: 8px; }
  .step__body p { font-size: 15px; }
  .step__list li, .step__checks li { font-size: 14.5px; }
  .step__alert { padding: 12px 14px; }
  .step__alert p { font-size: 14.5px; }
  .step__note { font-size: 13.5px; }

  .phone-row { padding: 12px 14px; }
  .phone-row__sit .t { font-size: 14px; }
  .phone-row__sit .s { font-size: 11.5px; }
  .phone-row__num { font-size: 19px; }
  .phone-row__num .org { font-size: 10px; }
  .phone-row--alert .phone-row__num { font-size: 26px; }

  .action__footer { font-size: 12.5px; padding-top: 18px; margin-top: 22px; }

  /* --- OUTRO / SOURCES / FOOTER --- */
  .outro { padding: 40px 0 24px; }
  .outro__inner { padding: 0 20px; }
  .sources { padding-top: 22px; }
  .sources h4 { font-size: 11px; margin-bottom: 12px; }
  .sources ul { grid-template-columns: 1fr; gap: 6px; }
  .sources li { font-size: 13px; }
  .footer { padding: 28px 20px; font-size: 12px; }

  /* Section heading scale */
  .section-h { font-size: clamp(24px, 6vw, 32px); }
  .section-lede { font-size: 16px; margin-bottom: 28px; }
  .section-tag { font-size: 11px; margin-bottom: 16px; }
}

/* ========================================================================
   SMALL PHONE (≤ 420px) - tightest layout
   ======================================================================== */
@media (max-width: 420px) {
  .hero { padding: 70px 16px 48px; }
  .hero__title { font-size: clamp(34px, 11vw, 44px); }
  .hero__virus-col { max-width: 220px; }
  .hero__virus-wrap { max-width: 200px; }
  .hero__byline { font-size: 11.5px; }

  .stat { padding: 12px 14px; }
  .stat__num { font-size: 28px; }
  .stat__label { font-size: 9.5px; letter-spacing: 0.08em; }

  .lead__grid, .route__header, .route__grid,
  .data__header, .data__grid, .factbox, .faq__inner, .outro__inner {
    padding-left: 16px; padding-right: 16px;
  }
  .factbox-wrap { padding-left: 8px; padding-right: 8px; }
  .factbox { padding: 24px 18px; }

  .timeline__inner { padding: 0 16px; }
  .tl-card { padding-left: 50px; }
  .timeline__line { left: 24px; }
  .tl-card__dot { left: 14px; }
  .timeline__line { left: 24px; }
  .tl-card__body { padding: 20px 18px; }

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

  .country { grid-template-columns: 24px 1fr 32px; }
  .country__bar { display: none; } /* drop bars on tiny screens; numbers do the work */
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .virus__spin { animation: none; }
  .virus__body { animation: none; }
  .virus__glow { animation: none; }
  .virus__float { animation: none; }
  .particle { display: none; }
  .hero__waves svg { animation: none; }
}
