/* ============================================================
   KILOMETRI LAVIRINTA — Detektor.ba / BIRN
   Investigative scrollytelling. FT-inspired editorial system.
   ============================================================ */
:root {
  --ink:    #0a121b;
  --ink2:   #15202c;
  --paper:  #f1e9d6;
  --cream:  #e6ddcb;
  --red:    #c0392b;
  --red-br: #e8503e;
  --gold:   #c9a24b;
  --frost:  #9fb6c7;
  --mid:    #97825f;
  --light:  #b39c78;
  --dim:    #cabd9f;
  --line:   rgba(255,255,255,0.09);
  --line-2: rgba(255,255,255,0.05);
  --maxw:   1180px;
  --serif:  'Source Serif 4', Georgia, serif;
  --display:'Playfair Display', Georgia, serif;
  --mono:   'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  overflow-x: hidden;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
::selection { background: var(--red); color: #fff; }

/* ── TOPBAR ─────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 26px;
  background: rgba(11,10,9,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: transform .4s ease;
}
.topbar-logo {
  font-family: var(--display);
  font-size: 16px; font-weight: 800; letter-spacing: .03em;
  color: var(--paper); text-decoration: none;
}
.topbar-logo span { color: var(--red-br); }
.topbar-right {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--light);
  display: flex; align-items: center; gap: 14px;
}
.topbar-share {
  display:inline-flex; align-items:center; gap:7px;
  color: var(--light); text-decoration:none; border:1px solid var(--line);
  padding: 6px 12px; border-radius: 100px; transition: .25s;
  background:none; cursor:pointer; font:inherit;
  font-family: var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase;
}
.topbar-share:hover { color: var(--paper); border-color: var(--red); }
/* share menu (fallback when the native share sheet isn't available) */
.share-wrap { position: relative; }
.share-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  display: flex; flex-direction: column; min-width: 184px; padding: 6px;
  background: #11100e; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 18px 50px -16px rgba(0,0,0,.7);
  opacity: 0; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease;
}
.share-menu.open { opacity: 1; transform: translateY(0); }
.share-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 10px; border: none; background: none; cursor: pointer;
  font-family: var(--byline, var(--serif)); font-size: 14px; letter-spacing: 0; text-transform: none;
  color: var(--light); text-decoration: none; border-radius: 6px; transition: .16s;
}
.share-item:hover { background: rgba(255,255,255,.05); color: var(--paper); }
.share-item svg { width: 17px; height: 17px; flex: none; opacity: .85; }
.share-item.done { color: var(--gold); }
.sound-toggle {
  display:inline-flex; align-items:center; gap:7px;
  background:none; border:1px solid var(--line); color: var(--light);
  font-family: var(--mono); font-size: 10px; letter-spacing:.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; cursor:pointer; transition:.25s;
}
.sound-toggle:hover { color: var(--paper); border-color: var(--red); }
/* language toggle — segmented BS | EN pill, matches the topbar chrome */
.lang-toggle {
  display:inline-flex; align-items:stretch; gap:0; padding:2px;
  background:none; border:1px solid var(--line); border-radius:100px; cursor:pointer;
  font-family: var(--mono); letter-spacing:.12em; overflow:hidden;
}
.lang-toggle:hover { border-color: var(--red); }
.lang-toggle .lng-opt {
  padding:4px 9px; border-radius:100px; color: var(--light); transition:.2s; line-height:1;
}
.lang-toggle .lng-opt.on { background: var(--gold); color:#0b0a09; }
/* missing-translation marker — visible flag, never silently shows un-edited text as EN */
.tr-badge {
  display:inline-block; margin-left:8px; padding:2px 8px; border-radius:3px;
  font-family: var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  background: rgba(192,57,43,.16); color:#e8857b; border:1px solid rgba(192,57,43,.45);
  vertical-align:middle; white-space:nowrap;
}
html[lang="en"] .tr-missing { outline:1px dashed rgba(192,57,43,.4); outline-offset:4px; }
.sound-toggle .ic-on { display:none; }
.sound-toggle.on { color: var(--gold); border-color: rgba(201,162,75,.5); }
.sound-toggle.on .ic-on { display:block; }
.sound-toggle.on .ic-off { display:none; }
.sound-toggle.hint { animation: soundpulse 2.4s ease-in-out infinite; }
@keyframes soundpulse { 0%,100%{ box-shadow:0 0 0 0 rgba(201,162,75,0);} 50%{ box-shadow:0 0 0 4px rgba(201,162,75,.12);} }
.progress-rail {
  position: fixed; top: 52px; left: 0; right: 0; z-index: 299;
  height: 2px; background: rgba(255,255,255,0.06);
}
.progress-fill { height: 100%; width: 0%; background: var(--red-br); }

/* ── HERO ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 90px 0 70px;
  overflow: hidden;
  background: #0a121b;
}
#forest {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,18,27,0.5) 0%, rgba(10,18,27,0.04) 24%, rgba(10,18,27,0.16) 52%, rgba(10,18,27,0.92) 100%),
    radial-gradient(120% 90% at 12% 100%, rgba(9,15,23,0.66) 0%, rgba(9,15,23,0) 55%);
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(22px,5vw,56px); width: 100%;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--red-br); margin-bottom: 26px;
  display: flex; align-items: center; gap: 14px;
  animation: rise 1s .2s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-kicker::before { content:''; width: 30px; height: 2px; background: var(--red-br); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 900; line-height: 1.09; letter-spacing: -0.015em;
  color: #fff; margin-bottom: 26px; max-width: 23ch;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-deck {
  font-size: clamp(17px, 2vw, 23px); line-height: 1.55;
  color: var(--dim); max-width: 600px; font-weight: 300;
  margin-bottom: 38px;
}
.hero-meta {
  font-family: var(--serif);
  font-size: 16px; letter-spacing: 0; color: var(--light);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 20px; max-width: 600px;
}
.hero-meta strong { color: var(--paper); font-weight: 600; }
.hero-meta .dot { color: var(--mid); }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center;
  animation: fade 1s 1.5s ease backwards;
}
.hero-scroll span {
  display:block; font-family: var(--mono);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--light); margin-bottom: 8px;
}
.hero-scroll i {
  display:block; width:1px; height:42px; margin:0 auto;
  background: linear-gradient(var(--red-br), transparent);
  animation: scrolldrop 2.2s ease-in-out infinite;
}
@keyframes rise { from { transform: translateY(24px); } to { transform: translateY(0); } }
@keyframes fade { from { transform: translateY(14px); } to { transform: translateY(0); } }
@keyframes scrolldrop { 0%,100%{transform:scaleY(.4);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ── GENERIC SECTION ─────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(22px,5vw,56px); }
.measure { max-width: 720px; margin-left:auto; margin-right:auto; }
.sec-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red-br);
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
}
.sec-label::after { content:''; flex:1; height:1px; background: rgba(192,57,43,.3); }

/* ── PULL QUOTE ──────────────────── */
.pull { padding: clamp(48px,7vw,84px) 0; text-align: center; position: relative; overflow: hidden; }
.pull::before {
  content:'\201C'; font-family: var(--display); font-size: 420px; line-height: 1;
  color: rgba(192,57,43,.07);
  position:absolute; top:-90px; left:50%; transform: translateX(-50%); pointer-events:none;
}
.pull blockquote {
  max-width: 860px; margin: 0 auto; padding: 0 24px;
  font-family: var(--display); font-size: clamp(24px,3.6vw,46px);
  font-style: italic; font-weight: 400; line-height: 1.32; color: #fff;
  position: relative; z-index: 1;
}
.pull cite {
  display:block; margin-top: 28px;
  font-family: var(--serif); font-size: 16px; font-style: normal;
  letter-spacing: 0; text-transform: none; color: var(--light);
}
.pull-clip { max-width: 248px; margin: clamp(34px,4vw,50px) auto 0; }
.pull-clip .epi-media { margin-bottom: 12px; }
.pull-clip-cap { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--light); text-align: center; }

/* ── INTRO ───────────────────────── */
.intro { padding: clamp(50px,7vw,90px) 0 clamp(60px,8vw,100px); }
.intro p { font-size: clamp(18px,1.45vw,21px); line-height: 1.78; color: var(--paper); margin-bottom: 26px; }
.intro p.lead { font-size: clamp(20px,1.7vw,25px); }
.intro p:first-of-type::first-letter {
  font-family: var(--display); font-size: 86px; font-weight: 900;
  float: left; line-height: .72; margin: 9px 12px -6px 0; color: var(--red-br);
}

/* ── FULL-BLEED FIGURE ───────────── */
.bleed { position: relative; margin: clamp(14px,2.4vw,32px) 0; }
.bleed-media { position: relative; width: 100%; overflow: hidden; }
.bleed-media img, .bleed-media video { width: 100%; height: clamp(360px,72vh,760px); object-fit: cover; }
.bleed-grad { position:absolute; inset:0; pointer-events:none; background: linear-gradient(to bottom, rgba(10,18,27,1) 0%, rgba(10,18,27,.72) 9%, rgba(10,18,27,.34) 21%, rgba(10,18,27,.1) 34%, rgba(10,18,27,0) 50%, rgba(10,18,27,.34) 73%, rgba(10,18,27,.78) 90%, rgba(10,18,27,.98) 100%); }
@media (prefers-reduced-motion: no-preference) {
  .bleed-media img, .bleed-media video { animation: kenburns 26s ease-in-out infinite alternate; transform-origin: 58% 42%; will-change: transform; }
}
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.12); } }
/* play button on the closing video figure */
.bleed-play {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:88px; height:88px; border-radius:50%; cursor:pointer; z-index:4;
  background: rgba(10,18,27,.42); border:1.5px solid rgba(255,255,255,.85);
  color:#fff; display:flex; align-items:center; justify-content:center;
  backdrop-filter: blur(2px); transition: background .25s, transform .25s, border-color .25s;
}
.bleed-play svg { width:34px; height:34px; margin-left:4px; }
.bleed-play:hover { background: var(--red); border-color: var(--red); transform:translate(-50%,-50%) scale(1.06); }
.bleed-video.playing .bleed-play, .bleed-video.playing .bleed-grad, .bleed-video.playing .credit { opacity:0; pointer-events:none; }
.bleed-video.playing .bleed-media img { opacity:0; }
.bleed-embed { position:absolute; inset:0; z-index:3; width:100%; height:100%; border:0; }
.bleed-ytlink { position:absolute; left:50%; bottom:18px; transform:translateX(-50%); z-index:5;
  font-family: var(--mono); font-size:12px; letter-spacing:.08em; color:#fff;
  background: rgba(10,18,27,.7); border:1px solid rgba(255,255,255,.4); padding:7px 14px; border-radius:100px;
  text-decoration:none; backdrop-filter: blur(3px); }
.bleed-ytlink:hover { background: var(--red); border-color: var(--red); }
@media (max-width:560px){ .bleed-play{ width:66px; height:66px; } .bleed-play svg{ width:26px; height:26px; } }

/* ── INTERLUDE (quiet full-bleed band, faded into the dark) ── */
.interlude { position: relative; margin: clamp(20px,4vw,52px) 0; overflow: hidden; }
.interlude img {
  width: 100%; height: clamp(280px,52vh,540px); object-fit: cover; object-position: 50% 40%;
  display: block;
  filter: saturate(.62) brightness(.82) contrast(1.04) hue-rotate(-12deg);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 72%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 72%, transparent 100%);
  transform: scale(1.04);
}
/* cold wash to marry the warm still to the wintry palette */
.interlude::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, var(--ink) 0%, rgba(10,18,27,0) 30%, rgba(10,18,27,0) 70%, var(--ink) 100%),
    radial-gradient(120% 80% at 50% 50%, rgba(36,61,82,0.16) 0%, rgba(10,18,27,0.36) 100%);
  mix-blend-mode: normal;
}
.interlude .credit { position: absolute; right: clamp(16px,4vw,40px); bottom: 14px; z-index: 2; }
@media (prefers-reduced-motion: no-preference) {
  .interlude img { animation: kenburns 30s ease-in-out infinite alternate; transform-origin: 60% 45%; will-change: transform; }
}
.bleed-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(28px,5vw,64px) clamp(22px,5vw,56px);
}
.bleed-cap .inner { max-width: var(--maxw); margin: 0 auto; }
.bleed-cap h2 {
  font-family: var(--display); font-size: clamp(28px,4.6vw,60px);
  font-weight: 900; line-height: 1.04; color:#fff; max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.6); margin-bottom: 16px;
}
.bleed-cap p { font-size: clamp(15px,1.3vw,19px); color: var(--dim); max-width: 56ch; }

/* Sudan hero: caption + heading/lead pulled BELOW the image as normal flow */
.sudan-bleed .bleed-grad { background: linear-gradient(to bottom, rgba(10,18,27,.55) 0%, rgba(10,18,27,.12) 14%, rgba(10,18,27,0) 32%, rgba(10,18,27,0) 70%, rgba(10,18,27,.55) 100%); }
.sudan-text { padding: clamp(30px,3.6vw,48px) 0 clamp(14px,2vw,28px); }
.bleed-date {
  font-family: var(--mono); font-size: clamp(15px,1.5vw,20px); letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-br); margin: clamp(14px,2vw,28px) auto clamp(20px,2.6vw,34px); display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center;
}
.bleed-date::before, .bleed-date::after { content:''; width: clamp(34px,6vw,72px); height: 2px; background: var(--red-br); opacity: .7; }
.lead-title { font-family: var(--display); font-size: clamp(30px,4.4vw,56px); font-weight: 900; line-height: 1.05; color: #fff; margin: 0 0 22px; max-width: 20ch; }
.sudan-text p { font-size: clamp(18px,1.45vw,21px); line-height: 1.78; color: var(--paper); }
.credit {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  color: var(--light); text-transform: uppercase;
  position:absolute; right: 14px; bottom: 10px; z-index: 4;
  background: rgba(0,0,0,.35); padding: 3px 8px; border-radius: 3px;
}
figcaption.cap {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: var(--light); margin-top: 12px; line-height: 1.5;
}
figcaption.cap b { color: var(--dim); font-weight: 500; }

/* ── PROFILES ────────────────────── */
.profiles { padding: clamp(60px,8vw,100px) 0; background: transparent; }
.profiles .sec-label { font-family: var(--serif); font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--light); }
.pgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3vw,42px); }
.pcard { }
.pcard-photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px;
  background: var(--ink2); margin-bottom: 20px;
}
.pcard-photo img { width:100%; height:100%; object-fit: cover; filter: grayscale(.25) contrast(1.02); transition: .6s; }
.pcard:hover .pcard-photo img { filter: grayscale(0) contrast(1.05); transform: scale(1.03); }
.pcard-photo::after { content:''; position:absolute; inset:0; box-shadow: inset 0 -70px 60px -30px rgba(8,8,9,.7); }
.pcard-tag {
  position: absolute; top: 12px; left: 12px; z-index:2;
  font-family: var(--mono); font-size: 15px; letter-spacing:.12em; text-transform: uppercase;
  background: var(--red); color:#fff; padding: 6px 13px; border-radius: 3px;
}
.pcard h3 { font-family: var(--display); font-size: 28px; font-weight: 800; color:#fff; line-height:1; }
.pcard .age { font-family: var(--serif); font-size: 14.5px; letter-spacing:0; color: var(--light); text-transform: none; margin: 8px 0 14px; }
.pcard p { font-size: 15px; line-height: 1.66; color: var(--light); }
.pcard p + p { margin-top: 10px; }
.pcard .dream { margin-top: 14px; padding-top:14px; border-top:1px solid var(--line-2); font-size:14px; color:var(--dim); font-style: italic; }

/* ── NUMBERS ─────────────────────── */
.numbers { background: transparent; padding: clamp(46px,6.5vw,90px) 0; border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2); }
.ngrid { display:grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat { text-align:center; padding: 4px clamp(12px,2vw,30px); position: relative; }
.stat + .stat::before { content:''; position:absolute; left:0; top:12%; bottom:12%; width:1px; background: var(--line-2); }
.stat .n { font-family: var(--display); font-size: clamp(48px,6.2vw,86px); font-weight:900; color: var(--red-br); line-height:.92; }
.stat .l { font-family: var(--serif); font-size: 14px; letter-spacing:0; text-transform: none; color: var(--light); margin-top: 12px; line-height:1.45; }
/* one-by-one reveal — visible by default; JS adds .pre before revealing */
.numbers .stat .n, .numbers .stat .l { transition: opacity .7s ease, transform .8s cubic-bezier(.22,.7,.3,1); }
.numbers.pre .stat .n, .numbers.pre .stat .l { opacity:0; transform: translateY(20px); }
.numbers.pre.in .stat .n, .numbers.pre.in .stat .l { opacity:1; transform: none; }
.numbers.pre.in .stat:nth-child(1) .n { transition-delay:.05s; } .numbers.pre.in .stat:nth-child(1) .l { transition-delay:.16s; }
.numbers.pre.in .stat:nth-child(2) .n { transition-delay:.25s; } .numbers.pre.in .stat:nth-child(2) .l { transition-delay:.36s; }
.numbers.pre.in .stat:nth-child(3) .n { transition-delay:.45s; } .numbers.pre.in .stat:nth-child(3) .l { transition-delay:.56s; }
.numbers.pre.in .stat:nth-child(4) .n { transition-delay:.65s; } .numbers.pre.in .stat:nth-child(4) .l { transition-delay:.76s; }
@media (prefers-reduced-motion: reduce) { .numbers .stat .n, .numbers .stat .l { opacity:1; transform:none; } }

/* ── MAP SECTIONS ────────────────── */
.mapsec { padding: clamp(60px,8vw,110px) 0; position: relative; overflow-x: clip; }
.mapsec h2 { font-family: var(--display); font-size: clamp(28px,4.4vw,58px); font-weight:900; line-height:1.04; color:#fff; margin-bottom: 18px; max-width: 18ch; }
.mapsec .intro-p { font-size: clamp(16px,1.4vw,20px); color: var(--dim); max-width: 60ch; margin-bottom: 14px; }
.mapsec .intro-p:last-of-type { margin-bottom: clamp(32px,4vw,52px); }
.mapframe {
  position: relative; width: 100%;
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(40,52,66,.35), transparent 70%),
    #0a0c10;
}
.mapframe svg { display:block; width: 100%; height: auto; }

/* sticky-pin: map locks to the viewport, then the route draws as you scroll through */
.pinwrap { position: relative; height: 250vh; }
#bosnia-pin { height: 460vh; }   /* longer = the labyrinth plays slower, with pauses in each city */
.pinsticky {
  position: sticky; top: 0; height: 100vh; min-height: 540px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.pinsticky .wrap { width: 100%; }
/* the map plate: a defined, framed object on the page — it is tied into the
   layout by crop-mark corners and hairlines that bleed OUT of the frame
   (see .map-deco), not by a soft fade. */
.pinsticky .mapstage {
  position: relative;
  width: 100%;
  max-width: min(100%, calc((100vh - 200px) * 1.389));
  height: min(calc(100vh - 210px), 780px); min-height: 430px;
  margin: 0 auto;
}
.pinsticky .mapframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 1px solid rgba(201,162,75,0.24);
  border-radius: 0; background: #0a0c10;
  box-shadow: 0 26px 80px -28px rgba(0,0,0,.8);
}
/* editorial frame furniture — lives outside the clipped map */
.map-deco { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.map-deco .cm { position: absolute; width: 27px; height: 27px; }
.map-deco .cm.tl { top: -6px; left: -6px; border-top: 1px solid rgba(201,162,75,.7); border-left: 1px solid rgba(201,162,75,.7); }
.map-deco .cm.tr { top: -6px; right: -6px; border-top: 1px solid rgba(201,162,75,.7); border-right: 1px solid rgba(201,162,75,.7); }
.map-deco .cm.bl { bottom: -6px; left: -6px; border-bottom: 1px solid rgba(201,162,75,.7); border-left: 1px solid rgba(201,162,75,.7); }
.map-deco .cm.br { bottom: -6px; right: -6px; border-bottom: 1px solid rgba(201,162,75,.7); border-right: 1px solid rgba(201,162,75,.7); }
/* the frame's top & bottom edges continue as hairlines into the page */
.map-deco .frule { position: absolute; height: 1px; }
.map-deco .frule.top-l { top: 0; right: 100%; width: 48vw; background: linear-gradient(90deg, transparent, rgba(201,162,75,.30)); }
.map-deco .frule.top-r { top: 0; left: 100%; width: 48vw; background: linear-gradient(90deg, rgba(201,162,75,.30), transparent); }
.map-deco .frule.bot-l { bottom: 0; right: 100%; width: 48vw; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12)); }
.map-deco .frule.bot-r { bottom: 0; left: 100%; width: 48vw; background: linear-gradient(90deg, rgba(255,255,255,.12), transparent); }
.map-deco .frame-tag { position: absolute; left: 1px; top: -24px;
  font-family: var(--serif); font-size: 14px; letter-spacing: 0; color: var(--light); }
.map-deco .frame-coord { position: absolute; left: 1px; bottom: -26px; white-space: nowrap;
  font-family: var(--serif); font-size: 14px; letter-spacing: 0; color: var(--gold); font-variant-numeric: tabular-nums; }
.map-deco .frame-coord::before { content: '◎'; margin-right: 7px; opacity: .8; font-size: 11px; }
.map-deco .frame-end { position: absolute; right: 1px; bottom: -26px; white-space: nowrap;
  font-family: var(--serif); font-size: 13px; letter-spacing: 0; color: var(--light); }
@media (max-width: 720px) {
  .map-deco .frule { width: 30vw; }
  .map-deco .frame-end { display: none; }
}
.mapframe .maplibregl-canvas { filter: saturate(0.86) brightness(0.86) contrast(1.05) hue-rotate(-4deg); }
.mapframe .maplibregl-ctrl-attrib { font-size: 10px; background: rgba(10,14,20,0.6); color: #9aa6b2; }
.mapframe .maplibregl-ctrl-attrib a { color: #b7c2cd; }
.map-vig { position:absolute; inset:0; pointer-events:none; z-index:2;
  background:
    radial-gradient(120% 95% at 50% 42%, rgba(8,12,18,0) 46%, rgba(7,11,17,0.72) 100%),
    linear-gradient(180deg, rgba(10,14,20,0.5) 0%, rgba(10,14,20,0) 18%, rgba(10,14,20,0) 80%, rgba(10,14,20,0.6) 100%); }
.map-grain { position:absolute; inset:0; pointer-events:none; z-index:2; opacity:0.5; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.map-mk { position:relative; pointer-events:none; }
.map-mk .dot { display:block; width:11px; height:11px; border-radius:50%; border:2px solid #0a0c10; box-shadow:0 1px 4px rgba(0,0,0,.7), 0 0 0 5px rgba(8,10,14,.28); }
.map-mk.big .dot { width:15px; height:15px; }
.map-mk .cap { position:absolute; top:calc(100% + 6px); left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; white-space:nowrap; }
.map-mk .lbl { font-family: var(--display); font-weight:700; font-size:14px; color:#fff; text-shadow:0 1px 5px rgba(0,0,0,.95),0 0 2px rgba(0,0,0,.95); }
.map-mk.big .lbl { font-size:18px; }
.map-mk .sub { font-family: var(--serif); font-size:12px; color:#e2d8c6; text-shadow:0 1px 5px rgba(0,0,0,.9); }
.map-head { position:relative; width:20px; height:20px; }
.map-head .core { position:absolute; inset:6px; border-radius:50%; background:#fff; box-shadow:0 0 10px rgba(255,120,90,.95),0 0 3px #fff; }
.map-head .ring { position:absolute; inset:0; border-radius:50%; border:2px solid rgba(255,106,77,.85); animation: headpulse 1.7s ease-out infinite; }
@keyframes headpulse { 0%{transform:scale(.45);opacity:.95} 100%{transform:scale(1.9);opacity:0} }
@media (prefers-reduced-motion: reduce){ .map-head .ring{ animation:none } }
/* MAP 2 cursor: a vehicle (rescue 4×4 → ambulance) that faces its heading */
.map-head.veh { width:46px; height:30px; filter: drop-shadow(0 3px 6px rgba(0,0,0,.6)); }
.map-head.veh .veh-ic { position:absolute; left:50%; top:50%; transform:translate(-50%,-52%); display:none; z-index:1; }
.map-head.veh.mode-suv .veh-suv { display:block; }
.map-head.veh.mode-amb .veh-amb { display:block; }
.map-head.veh.flip .veh-ic { transform:translate(-50%,-52%) scaleX(-1); }
.map-head.veh .ring { inset:auto; left:50%; top:66%; width:30px; height:30px; margin:-15px 0 0 -15px; border-color: rgba(232,80,62,.9); z-index:0; }
.map-photos { position:absolute; inset:0; pointer-events:none; z-index:3; overflow:hidden; }
.map-photo { position:absolute; width:min(30%,250px); opacity:0; transform:translateY(16px) scale(.95);
  transition:opacity .55s ease, transform .55s ease; border:1px solid rgba(255,255,255,.18); border-radius:6px;
  overflow:hidden; box-shadow:0 18px 44px rgba(0,0,0,.62); background:#0a0c10; }
.map-photo.on { opacity:1; transform:none; }
.map-photo img, .map-photo video { display:block; width:100%; height:auto; filter:saturate(.88); }
.map-photo figcaption { font-family:var(--mono); font-size:9.5px; letter-spacing:.1em; text-transform:uppercase;
  color:#cdd6df; padding:6px 9px; background:rgba(8,12,18,.86); }
@media (max-width:860px){ .map-photo{ width:42%; } }
@media (max-width: 860px) { .pinwrap { height: 200vh; } #bosnia-pin { height: 340vh; } .pinsticky { min-height: 440px; } }
.maplegend {
  display:flex; flex-wrap:wrap; gap: 18px 26px; margin-top: 22px;
  font-family: var(--serif); font-size: 14px; letter-spacing: 0; color: var(--light);
}
.maplegend span { display:inline-flex; align-items:center; gap:8px; }
.maplegend i { width:12px; height:12px; border-radius:50%; display:inline-block; }

/* map text styles */
.m-city { font-family: var(--serif); font-size: 13.5px; letter-spacing:0; fill: var(--paper); }
.m-city-sub { font-family: var(--serif); font-size: 11px; letter-spacing:0; fill: var(--light); text-transform: none; }
.m-country { font-family: var(--display); font-style: italic; font-size: 17px; fill: rgba(255,255,255,.18); letter-spacing:.02em; }
.m-sea { font-family: var(--display); font-style: italic; font-size: 15px; fill: rgba(120,150,175,.35); letter-spacing:.18em; }
.m-km { font-family: var(--serif); font-size: 11.5px; letter-spacing:0; fill: var(--gold); }

/* km counter overlay */
.km-counter {
  position: absolute; top: 18px; right: 18px; z-index: 7;
  text-align: right; pointer-events: none;
}
.km-counter .v { font-family: var(--display); font-weight:900; font-size: clamp(52px,6.5vw,96px); color: var(--gold); line-height:.86; text-shadow: 0 2px 18px rgba(0,0,0,.6); }
.km-counter .u { font-family: var(--mono); font-size: 12px; letter-spacing:.18em; text-transform: uppercase; color: var(--light); }

/* ── SCROLLYTELLING ──────────────── */
.scrolly { position: relative; display: flex; align-items: flex-start; }
.sticky {
  position: sticky; top: 52px; height: calc(100svh - 52px);
  width: 52%; flex: 0 0 52%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #0a121b;
}
.sticky-stage { position: relative; width: 100%; height: 100%; }
.scene {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .85s ease-in-out;
  will-change: opacity;
  pointer-events: none;
}
.scene.active { opacity: 1; pointer-events: auto; }
.scene-media { position:absolute; inset:0; }
.scene-media img, .scene-media video { width:100%; height:100%; object-fit: cover; }
.scene-media.contain img, .scene-media.contain video { object-fit: contain; background:#0a0b0d; }
/* vertical quote videos: show the WHOLE frame (burned-in subtitles intact),
   letterboxed against the same dark navy as the surrounding column so the
   narrower crop blends in seamlessly */
.scene-media.qvid { background:#0a121b; }
.scene-media.qvid::before {
  content:''; position:absolute; inset:0; z-index:0;
  background:#0a121b;
}
.scene-media.qvid video { position:relative; z-index:1; object-fit: contain; transition: opacity .5s ease; }
/* qvid letterbox must match the column exactly — drop the dark tint over it */
.scene-media.qvid + .scene-tint { display:none; }
.scene-tint { position:absolute; inset:0; background: linear-gradient(180deg, rgba(7,8,9,.32), rgba(7,8,9,.16) 45%, rgba(7,8,9,.5)); }
/* scene captions removed from the media stage — the right-hand column carries
   the headline/date/text, so the sticky media stays purely visual */
.scene-body { display: none; }
.scene-body--keep {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(28px,4vw,52px);
}
.scene-date {
  font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform: uppercase;
  color: var(--red-br); margin-bottom: 12px;
  display:inline-flex; align-items:center; gap:9px;
  background: rgba(0,0,0,.35); padding: 5px 11px; border-radius:3px;
}
.scene-h { font-family: var(--display); font-size: clamp(22px,2.7vw,40px); font-weight:800; line-height:1.06; color:#fff; max-width: 18ch; text-shadow: 0 2px 24px rgba(0,0,0,.7); }
.scene-cap { font-family: var(--mono); font-size: 11px; letter-spacing:.04em; color: var(--dim); margin-top: 14px; max-width: 46ch; }
.scene-badge {
  position:absolute; top: 18px; left: 18px; z-index:3;
  font-family: var(--mono); font-size: 10px; letter-spacing:.1em; text-transform: uppercase;
  color:#fff; background: rgba(192,57,43,.85); padding: 5px 10px; border-radius: 3px;
  display:inline-flex; align-items:center; gap:7px;
}
.scene-badge.doc { background: rgba(30,40,55,.85); }
.scene-play {
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); z-index:4;
  width: 72px; height:72px; border-radius:50%; border:1.5px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.3); backdrop-filter: blur(3px);
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.25s;
}
.scene-play:hover { background: var(--red); border-color: var(--red); transform: translate(-50%,-50%) scale(1.06); }
.scene-play svg { width: 26px; height: 26px; margin-left: 3px; fill:#fff; }
.scene-play.hide { display:none; }

/* steps column */
.steps { width: 48%; flex: 0 0 48%; padding: 6vh 0 30vh; }
.step { min-height: 96vh; display:flex; align-items:center; padding: 60px clamp(28px,4vw,60px); }
.step-in { max-width: 540px; }
.step-date {
  font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform: uppercase;
  color: var(--red-br); margin-bottom: 18px; display:flex; align-items:center; gap:10px;
}
.step-date::before { content:''; width:22px; height:2px; background: var(--red-br); }
.step h3, .step-h-date { font-family: var(--display); font-size: clamp(24px,2.9vw,38px); font-weight:800; line-height:1.12; color:#fff; margin-bottom: 20px; }
.step p { font-size: 17px; line-height: 1.74; color: var(--dim); margin-bottom: 16px; }
.step p b { color: var(--paper); font-weight: 600; }
.quote {
  margin: 22px 0; padding: 2px 0 2px 20px; border-left: 3px solid var(--red);
  font-family: var(--display); font-style: italic; font-size: 19px; line-height:1.5; color:#fff;
}
.quote cite {
  display:block; margin-top: 10px; font-style: normal;
  font-family: var(--serif); font-size: 14.5px; letter-spacing:0; text-transform: none; color: var(--light);
}
.alert {
  margin: 22px 0; padding: 16px 18px; border-radius: 4px;
  background: rgba(192,57,43,.1); border:1px solid rgba(192,57,43,.28);
  font-size: 15.5px; line-height:1.62; color:#eebab2;
}
.alert strong { display:block; font-family: var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color: var(--red-br); margin-bottom: 7px; }
.doc-note {
  margin: 22px 0; padding: 16px 18px; border-radius:4px;
  background: rgba(30,40,55,.25); border:1px solid rgba(120,150,180,.2);
  font-size: 14.5px; line-height:1.6; color: var(--dim);
}
.doc-note strong { display:block; font-family: var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color: var(--frost); margin-bottom:7px; }
.clearfix::after { content:''; display:block; clear:both; }

/* sensitive media */
.sensitive .scene-media img { filter: blur(26px) brightness(.7); transition: filter .5s; }
.sensitive.revealed .scene-media img { filter: none; }
.sensitive-warn {
  position:absolute; inset:0; z-index:5; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:14px; text-align:center; cursor:pointer;
  padding: 30px;
}
.sensitive.revealed .sensitive-warn { display:none; }
.sensitive-warn .icon { width:44px; height:44px; opacity:.8; }
.sensitive-warn p { font-family: var(--mono); font-size: 11px; letter-spacing:.08em; color: var(--paper); max-width: 30ch; line-height:1.6; }
.sensitive-warn .btn { font-family: var(--mono); font-size: 10px; letter-spacing:.12em; text-transform: uppercase; border:1px solid rgba(255,255,255,.5); padding: 8px 16px; border-radius:100px; color:#fff; }

/* ── LABYRINTH (integrated map + media + text) ── */
.lab-head { padding-bottom: clamp(18px,2.6vw,34px); }
.labscroll .sticky { background:#0a121b; }
.lab-mapwrap { position:absolute; inset:0; }
.lab-mapwrap .mapframe { position:absolute; inset:0; width:100%; height:100%; border:none; border-radius:0; background:#0a0c10; }
.lab-mapchrome { position:absolute; inset:0; z-index:6; pointer-events:none; }
.lab-mapchrome .frame-tag { position:absolute; left:16px; top:14px; font-family:var(--serif); font-size:13px; color:var(--light); background:rgba(8,12,18,.5); padding:4px 9px; border-radius:3px; }
.lab-mapchrome .frame-coord { position:absolute; left:16px; bottom:14px; font-family:var(--serif); font-size:13px; color:var(--gold); background:rgba(8,12,18,.5); padding:4px 9px; border-radius:3px; font-variant-numeric:tabular-nums; }
.lab-mapchrome .frame-coord::before { content:'◎'; margin-right:6px; opacity:.8; }
.labscroll .km-counter { top:16px; right:18px; }
.lab-legend { position:absolute; left:16px; bottom:44px; right:16px; margin:0; gap:7px 16px; font-size:12px; z-index:6; pointer-events:none; text-shadow:0 1px 4px rgba(0,0,0,.9); }
.lab-ov { position:absolute; inset:0; z-index:8; opacity:0; transition:opacity .55s ease; pointer-events:none; background:#0a0b0d; }
.lab-ov.active { opacity:1; }
.lab-ov-media { position:absolute; inset:0; }
.lab-ov-media img, .lab-ov-media video { width:100%; height:100%; object-fit:cover; }
.lab-ov-cap { position:absolute; left:0; right:0; bottom:0; z-index:2; padding:16px 20px 18px; font-family:var(--mono); font-size:11px; letter-spacing:.03em; line-height:1.5; color:#dce3ea; background:linear-gradient(transparent, rgba(6,9,13,.92)); }
.step-sub { font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--red-br); margin:26px 0 16px; display:flex; align-items:center; gap:10px; }
.step-sub::before { content:''; width:22px; height:2px; background:var(--red-br); }
@media (max-width: 860px) {
  .lab-legend { display:none; }
}

/* ── LABYRINTH single-column dated article ── */
.lab-article { padding: clamp(20px,3vw,40px) 0 clamp(30px,5vw,60px); }
.lab-day { padding: clamp(26px,3.4vw,44px) 0; border-top: 1px solid var(--line-2); }
.lab-day:first-child { border-top: none; }
.lab-day-date {
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-br); margin-bottom: 18px; display:flex; align-items:center; gap:12px;
}
.lab-day-date::before { content:''; width:26px; height:2px; background: var(--red-br); }
.lab-day p { font-size: clamp(16px,1.45vw,19px); line-height: 1.78; color: var(--paper); margin-bottom: 16px; }
.lab-fig { margin: 6px 0 22px; }
.lab-fig img { display:block; width:100%; height:auto; border-radius: 4px; border:1px solid var(--line); }
.lab-fig figcaption { font-family: var(--mono); font-size: 11px; letter-spacing:.03em; line-height:1.5; color: var(--light); margin-top: 10px; }

/* ── EPILOG cards (three boxes with photos + quotes) ── */
.epi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,34px); margin: 0 0 clamp(34px,4.5vw,60px); align-items:start; }
.epi-card { display:flex; flex-direction:column; }
/* photo is the cover/poster; click the play icon to start the clip (true 9:16, no crop) */
.epi-media {
  position:relative; aspect-ratio: 9/16; overflow:hidden; border-radius:4px;
  border:1px solid var(--line); margin-bottom:16px; background:#0a0c10; cursor:pointer;
}
.epi-media video { width:100%; height:100%; object-fit:cover; display:block; background:#0a0c10; }
.epi-media::after { /* subtle vignette so the play icon reads on bright posters */
  content:''; position:absolute; inset:0; pointer-events:none; opacity:1; transition:opacity .35s;
  background: radial-gradient(circle at 50% 46%, rgba(8,10,14,.18) 0%, rgba(8,10,14,.46) 100%);
}
.epi-media.playing::after { opacity:0; }
.epi-play {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3;
  width:62px; height:62px; border-radius:50%; cursor:pointer;
  border:1px solid rgba(255,255,255,.6); background:rgba(10,12,16,.42); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .3s, background .2s, transform .15s, border-color .2s;
}
.epi-play::before {
  content:''; width:0; height:0; margin-left:5px;
  border-style:solid; border-width:11px 0 11px 18px; border-color:transparent transparent transparent #fff;
}
.epi-media:hover .epi-play { background:var(--red); border-color:var(--red); transform:translate(-50%,-50%) scale(1.06); }
.epi-media.playing .epi-play { opacity:0; pointer-events:none; }
.epi-card .nm { font-family: var(--display); font-size: clamp(20px,1.9vw,26px); font-weight:800; color:#fff; margin-bottom:12px; }
.epi-card p { font-size: 15px; line-height:1.62; color: var(--light); margin-bottom:12px; }
.epi-card .epi-q { font-family: var(--display); font-style:italic; font-size: clamp(15px,1.25vw,17px); line-height:1.5; color: var(--paper); }
@media (max-width:760px){ .epi-grid{ grid-template-columns:1fr; gap:36px; } .epi-card{ max-width:420px; margin:0 auto; } }

/* ── EXPERT ──────────────────────── */
.expert { padding: clamp(60px,8vw,110px) 0; background: rgba(255,255,255,.015); border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2); }
.expert .who {
  display:flex; align-items:center; gap: 16px; margin-bottom: 32px;
}
.expert .who .av {
  width: 54px; height:54px; border-radius:50%; flex-shrink:0;
  background: rgba(120,150,180,.15); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.expert .who .av svg { width:26px; height:26px; stroke: var(--frost); }
.expert .who .meta b { display:block; font-family: var(--display); font-size: 20px; color:#fff; }
.expert .who .meta span { font-family: var(--mono); font-size: 11px; letter-spacing:.06em; color: var(--light); }
.expert p { font-size: clamp(17px,1.5vw,21px); line-height:1.74; color: var(--paper); margin-bottom: 22px; }
.expert .quote { font-size: clamp(20px,2.2vw,28px); }

/* ── CLOSING ─────────────────────── */
.closing { padding: clamp(70px,9vw,130px) 0 clamp(50px,6vw,80px); }
.closing h2 { font-family: var(--display); font-size: clamp(30px,4.6vw,58px); font-weight:900; line-height:1.04; color:#fff; margin-bottom: 30px; }
.closing p { font-size: clamp(17px,1.45vw,20px); line-height:1.76; color: var(--dim); margin-bottom: 22px; }
.dreams { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.5vw,34px); margin: clamp(40px,5vw,64px) 0; }
.dream-card { border-top: 2px solid var(--red); padding-top: 18px; }
.dream-card .nm { font-family: var(--mono); font-size: 11px; letter-spacing:.12em; text-transform: uppercase; color: var(--red-br); margin-bottom: 12px; }
.dream-card p { font-family: var(--display); font-style: italic; font-size: clamp(17px,1.5vw,21px); line-height:1.46; color: var(--paper); margin:0; }
.final-q {
  font-family: var(--display); font-size: clamp(24px,3.2vw,40px); font-style: italic;
  line-height:1.34; color:#fff; text-align:center;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding: clamp(40px,5vw,64px) 0; margin: clamp(36px,5vw,60px) 0;
}
.final-q cite { display:block; margin-top: 18px; font-style: normal; font-family: var(--serif); font-size: 16px; letter-spacing:0; text-transform: none; color: var(--light); }

/* ── FOOTER ──────────────────────── */
footer { border-top: 1px solid var(--line); padding: 48px 0 60px; }
.foot-grid { display:flex; justify-content:space-between; gap: 40px; flex-wrap: wrap; }
.foot-logo { font-family: var(--display); font-size: 22px; font-weight:800; color:#fff; }
.foot-logo span { color: var(--red-br); }
footer p { font-family: var(--mono); font-size: 11px; letter-spacing:.05em; color: var(--light); line-height: 1.7; max-width: 52ch; }
footer a { color: var(--red-br); text-decoration: none; }
.foot-method { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-2); }

/* ── RESPONSIVE ──────────────────── */
@media (min-width: 901px) {
  /* periodic side-swap of the pinned media vs. the text column (data-flip).
     flex row-reverse moves BOTH columns atomically — no empty half, no per-element transform. */
  .scrolly[data-flip].flip { flex-direction: row-reverse; }
}
@media (max-width: 900px) {
  .scrolly { flex-direction: column; }
  .sticky { position: sticky; top: 52px; width: 100%; flex: none; float: none; height: 56svh; z-index: 3; overflow: visible; }
  /* soft scrim just below the pinned video so text dissolves into the bg
     instead of being hard-cut at the video's bottom edge */
  .scrolly .sticky::after {
    content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 96px;
    background: linear-gradient(180deg, #0a121b 0%, rgba(10,18,27,.85) 32%, rgba(10,18,27,0) 100%);
    z-index: 4; pointer-events: none;
  }
  .scene { transition: opacity .4s; }
  .steps { width: 100%; flex: none; float: none; padding: 0; position: relative; z-index: 1; }
  .step { min-height: auto; padding: 70px clamp(20px,6vw,30px) 80px; }
  .scene-h { font-size: clamp(20px,5vw,26px); }
  .pgrid { grid-template-columns: 1fr; gap: 40px; }
  .pcard-photo { aspect-ratio: 3/4; max-width: 360px; }
  .ngrid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 40px 20px; }
  .stat + .stat::before { display:none; }
  .dreams { grid-template-columns: 1fr; }
  .bleed-media img, .bleed-media video { height: 64vh; }
}
@media (max-width: 560px) {
  .topbar-right .hide-sm { display:none; }
  .ngrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ── TYPE UNIFICATION ──────────────────────────────────────────────
   The former DM-Mono accent (eyebrows, dates, credits, badges, labels)
   now rides the byline serif. Strip the mono-era uppercasing + wide
   tracking everywhere so it reads like the rest of the type. */
.topbar-right, .sound-toggle,
.hero-kicker, .hero-scroll span, .sec-label,
.credit, figcaption.cap, .pcard-tag, .map-photo figcaption, .km-counter .u,
.scene-date, .scene-cap, .scene-badge, .step-date,
.alert strong, .doc-note strong,
.sensitive-warn p, .sensitive-warn .btn,
.expert .who .meta span, .dream-card .nm, footer p {
  text-transform: none;
  letter-spacing: 0;
}
.sec-label { font-size: 13px; }
.scene-date, .step-date { font-size: 13px; }
.credit, .map-photo figcaption { font-size: 11px; }
.pcard-tag { font-size: 15px; }
.scene-badge { font-size: 11px; }
