/* ===== Lirikka — personal site ===== */

/* ---------- Scroll-reveal — elements with [data-reveal] start slightly
   below their final position and faded out; .is-visible class (added by
   the IntersectionObserver in index.html) eases them up.               */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(3px);
  transition:
    opacity 1.0s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s),
    transform 1.0s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s),
    filter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
}

:root {
  --bg: #1a1a1a;
  --bg-warm: #1a1a1a;
  --ink: #0b0b0b;
  --ink-soft: #2a2a2a;
  --muted: #8a8a86;
  --rule: rgba(242,242,242,0.15);
  --klein: #1530c8;       /* Klein blue */
  --klein-deep: #0c1f8a;
  --navy: #0c1233;
  --navy-soft: #1a2148;
  --paper-shadow: rgba(0,0,0,0.07);

  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Inter Tight", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #1a1a1a;
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

/* ---------- HUD: top utility bar ---------- */
.hud-top {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 32px;
  padding: 22px 32px;
  pointer-events: none;
  mix-blend-mode: difference;
  color: #f4f3ef;
}
.hud-top > * { pointer-events: auto; }

.brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand .dot { display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: currentColor; margin-left: 2px; transform: translateY(-1px); }

/* logo variant — replaces the text wordmark with the handwritten PNG */
.brand--logo {
  display: flex;
  align-items: center;
  margin-top: -8px;
}
.brand--logo img {
  display: block;
  height: 56px;
  width: auto;
  /* invert the dark-on-transparent PNG so it reads on the dark bg */
  filter: invert(1) brightness(1.05);
  /* hud-top has mix-blend-mode: difference, the inversion + difference
     produces a clean light wordmark over both light and dark areas. */
}
@media (max-width: 920px) {
  .brand--logo img { height: 44px; }
}

.tagline {
  font-size: 12px;
  line-height: 1.35;
  max-width: 38ch;
  font-weight: 500;
}
.tagline b { font-weight: 700; }

.nav {
  display: flex; gap: 28px;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav a {
  position: relative;
  padding: 2px 0;
  transition: opacity .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { font-weight: 700; }

.hud-icons {
  display: flex; gap: 6px; align-items: center;
}
.hud-icons .ico {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hud-icons svg { display: block; }

/* ---------- HUD: bottom "player" ---------- */
.hud-bottom {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1.2fr 1fr 1fr auto;
  gap: 24px; align-items: center;
  padding: 20px 32px;
  pointer-events: none;
  mix-blend-mode: difference;
  color: #f4f3ef;
}
.hud-bottom > * { pointer-events: auto; }

.play-btn {
  display: flex; gap: 3px; align-items: center;
}
.play-btn .bar { width: 3px; height: 13px; background: currentColor; }

.track-section {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.track-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.track-time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.track-ctrls { display: flex; gap: 14px; align-items: center; }
.track-ctrls .icn { width: 16px; height: 12px; display: block; }

/* ---------- Scroll progress strip (very thin, right side) ---------- */
.scroll-rail {
  position: fixed;
  top: 0; bottom: 0; right: 0;
  width: 2px;
  z-index: 40;
  pointer-events: none;
}
.scroll-rail .fill {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--ink);
  mix-blend-mode: difference;
  transform-origin: top;
}

/* ---------- Sections ---------- */
.scene {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ----- 01 Hero — card layout (IMG_2381 inspired) ----- */
.scene-hero {
  background: #1a1a1a;
  color: #f2f2f2;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
/* shared painted radiative background ---------------------------------
   Two layers compose the effect:
   ::before  — high-contrast conic rays + deep-black core, heavy blur
               + contrast/brightness crush gives the painted spike look
   ::after   — fractal-noise grain overlay = crayon/paper texture        */
/* shared topographic backdrop ----------------------------------------
   Same SVG contour-map under all four sections; each section transforms
   it differently so it doesn't read identically.
   The dark gradient base sits on the section itself; the pseudo carries
   just the contour SVG. A second pseudo adds a soft cinematic vignette. */
.scene-hero,
.scene-trajectory,
.scene-freehours {
  background:
    radial-gradient(ellipse 120% 110% at 50% 35%, #444444 0%, #353535 55%, #2a2a2a 100%);
}
.scene-hero::before,
.scene-trajectory::before,
.scene-freehours::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("assets/bg-topo.svg");
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: blur(2.5px);
}
.scene-hero::after,
.scene-trajectory::after,
.scene-freehours::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: block;
  /* very soft vignette + a gentle off-axis highlight */
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255,255,255,0.07), rgba(0,0,0,0) 60%),
    radial-gradient(ellipse 140% 110% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.12) 88%, rgba(0,0,0,0.28) 100%);
}

/* per-section transforms so the same contour map reads fresh each time */
.scene-hero::before        { background-position: 35% 45%; background-size: 130% auto; }
.scene-trajectory::before  { background-position: 65% 55%; background-size: 145% auto; transform: scaleX(-1); }
.scene-freehours::before   { background-position: 30% 70%; background-size: 155% auto; transform: rotate(180deg); }
.hero-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 88px 24px 32px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,243,239,0.55);
  margin-bottom: 2px;
}
.hero-brand {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: #f4f3ef;
}
.hero-brand .brand-sep { color: rgba(244,243,239,0.45); font-weight: 300; }
.hero-brand .brand-suffix { font-weight: 300; color: rgba(244,243,239,0.7); letter-spacing: 0.04em; font-size: 0.85em; }
.hero-card {
  position: relative;
  width: min(520px, 74vmin);
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  border-radius: 18px;
  box-shadow:
    0 36px 70px -22px rgba(0,0,0,0.28),
    0 10px 22px rgba(0,0,0,0.08);
  padding: 18px;
  display: flex;
  align-items: stretch;
}
.hero-card-photo {
  flex: 1;
  background: url("assets/linear-park.jpg") center/cover no-repeat;
  filter: grayscale(1) contrast(0.78) brightness(1.08);
  border-radius: 6px;
}
.card-tag {
  position: absolute;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  z-index: 2;
}
.tag-tl { top: 32px;    left: 34px;  }
.tag-br { bottom: 32px; right: 34px; color: var(--muted); font-size: 11px; }

/* ----- 02 Trajectory ----- */
.scene-trajectory {
  background: #1a1a1a;
  color: #f2f2f2;
  padding: 140px 32px 160px;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}
.scene-head {
  display: grid;
  grid-template-columns: 80px 1fr 320px;
  gap: 32px;
  align-items: end;
  margin-bottom: 80px;
}
.scene-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-bottom: 8px;
}
.scene-title {
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
  white-space: nowrap;
}
.scene-title em { font-style: normal; font-weight: 300; opacity: 0.55; }
.scene-blurb {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}

/* timeline container has data-reveal only to trigger the line-draw
   pseudo — disable the default fade so children animate independently */
.timeline[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid transparent;
  position: relative;
}
/* draw the rail line as a pseudo-element so we can animate it */
.timeline::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--rule);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}
.timeline[data-reveal].is-visible::before,
.timeline.is-visible::before { transform: scaleX(1); }
.timeline-step {
  padding: 28px 28px 36px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .3s;
}
.timeline-step:last-child { border-right: none; }
.timeline-step:hover { background: rgba(11,11,11,0.025); }
.timeline-step .yr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 36px;
}
.timeline-step .yr::before {
  content: ""; width: 8px; height: 8px; background: var(--ink); border-radius: 999px;
}
.timeline-step .yr.klein::before { background: var(--klein); }
.timeline-step .place {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.timeline-step .role {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 20px;
}
.timeline-step .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.trajectory-summary {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.trajectory-summary .marg {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.summary-body { max-width: none; display: grid; gap: 14px; }
.summary-body p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.summary-body p:first-child { white-space: nowrap; }
.summary-body p + p { font-size: 15px; color: var(--ink-soft); }

/* ----- 03 Lens — photography ----- */
.scene-lens {
  background:
    radial-gradient(ellipse 120% 110% at 50% 35%, #444444 0%, #353535 55%, #2a2a2a 100%);
  color: #f4f3ef;
  padding: 0;
  flex-direction: column;
  justify-content: flex-start;
}
.lens-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}
.lens-bg {
  position: absolute; inset: 0;
  background: url("assets/lirikka.jpg") center/cover no-repeat;
  filter: grayscale(1) brightness(0.95) contrast(0.65);
  z-index: 0;
}
.lens-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 45%, rgba(120,120,120,0.18) 0%, rgba(20,22,40,0) 65%),
    linear-gradient(180deg, rgba(20,22,40,0.55) 0%, rgba(20,22,40,0.25) 30%, rgba(12,14,28,0.78) 100%);
}
.lens-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(140,140,150,0.10), rgba(0,0,0,0) 40%),
    rgba(15,18,38,0.18);
  mix-blend-mode: multiply;
  z-index: 1;
}
.lens-overlay {
  position: relative; z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 120px 32px 140px;
}
.lens-overlay .scene-head {
  margin-bottom: 0;
  grid-template-columns: 80px 1fr 380px;
}
.lens-overlay .scene-num,
.lens-overlay .scene-blurb { color: rgba(244,243,239,0.7); }

.lens-stats {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,243,239,0.18);
}
.lens-stats .stat .n {
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lens-stats .stat .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 10px;
}
.lens-quote {
  align-self: center;
  margin-top: auto;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  max-width: 22ch;
  text-wrap: balance;
}
.lens-quote em { font-style: italic; font-weight: 300; opacity: 0.7; }
.lens-quote--en {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-size: clamp(28px, 3.2vw, 42px);
  max-width: 24ch;
  color: rgba(244,243,239,0.92);
}
.lens-quote--en em {
  font-style: italic;
  font-weight: 400;
  opacity: 1;
  color: #f4f3ef;
}

/* stacked, left-aligned quote that hugs the left edge so silhouette stays clear */
.lens-quote.lens-quote--stacked {
  align-self: start;
  justify-self: start;
  margin-top: 64px;
  margin-left: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-style: italic;
  color: rgba(244,243,239,0.95);
  text-align: left;
}
.lens-quote.lens-quote--stacked span { display: block; }
.lens-quote.lens-quote--stacked em {
  font-style: italic;
  font-weight: 400;
  color: #f4f3ef;
}
.lens-quote--cn {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 28ch;
  font-size: clamp(26px, 3vw, 38px);
  color: rgba(244,243,239,0.92);
}

/* photo strip — painted radiative B&W backdrop (selected 2026 part) */
.photo-strip {
  background:
    radial-gradient(ellipse 120% 110% at 50% 35%, #444444 0%, #353535 55%, #2a2a2a 100%);
  color: #d8d8d8;
  padding: 72px 0 104px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* same topographic backdrop as hero/trajectory/freehours */
.photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("assets/bg-topo.svg");
  background-repeat: no-repeat;
  background-position: 20% 75%;
  background-size: 165% auto;
  transform: rotate(8deg);
  transform-origin: center;
  opacity: 0.7;
  filter: blur(2.5px);
}
.photo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: block;
  background:
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(255,255,255,0.06), rgba(0,0,0,0) 60%),
    radial-gradient(ellipse 140% 110% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.12) 88%, rgba(0,0,0,0.28) 100%);
}
.photo-strip > * { position: relative; z-index: 2; }

/* text reads on dark photo-strip */
.photo-strip .strip-head {
  color: rgba(244,243,239,0.55);
  border-color: rgba(244,243,239,0.15);
}
.photo-strip .strip-head h3 {
  color: #f4f3ef;
}
.photo-strip .strip-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(244,243,239,0.6);
  border-bottom: 1px solid rgba(244,243,239,0.18);
  padding-bottom: 14px;
  padding-left: 32px;
  padding-right: 32px;
}
.photo-strip .strip-head h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #f4f3ef;
  text-transform: none;
}
.frames {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 18px;
}
/* 2-row flex layout — proportional scaling, centered */
.frames.frames--splatter {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px 32px 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.frames-row {
  display: flex;
  gap: 18px;
}
/* aspect-ratio locks the row height to the row width — scales proportionally */
.frames-row:first-child { aspect-ratio: 43/12; }
.frames-row:last-child  { aspect-ratio: 53/12; }
.frames-row .fr-portrait  { flex: 9; }
.frames-row .fr-landscape { flex: 16; }
.frames-row .fr-square    { flex: 12; }
.frame.photo-slot {
  aspect-ratio: auto;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  filter: grayscale(0.25) contrast(1.02);
  transition: filter .35s ease, transform .35s ease, box-shadow .35s ease;
  box-shadow:
    0 10px 28px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(0,0,0,0.55),
    inset 0 0 70px rgba(0,0,0,0.18);
}
.frame.photo-slot:hover {
  filter: grayscale(0) contrast(1.05);
  z-index: 5;
  box-shadow:
    0 18px 42px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(0,0,0,0.55),
    inset 0 0 70px rgba(0,0,0,0.18);
}
.frame.photo-slot .corner {
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.22) 60%, rgba(0,0,0,0) 100%);
  padding: 32px 12px 11px;
}

.frames--splatter .frame { will-change: transform; }
.frames--splatter .frame:hover { transform: translateY(-3px); }

.frame {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, rgba(244,243,239,0.04) 0 6px, rgba(244,243,239,0.08) 6px 12px);
  border: 1px solid rgba(244,243,239,0.15);
  display: flex; align-items: end;
  padding: 14px;
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244,243,239,0.5);
}
.frame.real {
  background: url("assets/linear-park.jpg") center/cover no-repeat;
  filter: grayscale(1) contrast(1.05);
}
.frame.real-2 {
  background: url("assets/lirikka.jpg") center/cover no-repeat;
  filter: grayscale(1) brightness(0.7) contrast(1.05);
}
.frame .corner {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.22) 60%, rgba(0,0,0,0) 100%);
  padding: 32px 12px 11px;
  text-transform: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.corner-name {
  display: block;
  font-size: 9px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: rgba(244,243,239,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.corner-loc {
  display: block;
  font-size: 8px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: rgba(244,243,239,0.40);
  font-style: normal;
  font-family: var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.frame .caption {
  background: rgba(0,0,0,0.55);
  padding: 6px 10px;
  color: rgba(244,243,239,0.95);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

/* ----- 04 Compass — keywords ----- */
.scene-compass {
  background:
    linear-gradient(to bottom, rgba(40,40,40,0.7) 0%, rgba(0,0,0,0) 12%, rgba(0,0,0,0) 88%, rgba(40,40,40,0.7) 100%),
    var(--bg);
  color: #f4f3ef;
  padding: 140px 32px 160px;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.compass-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.scene-compass > *:not(.compass-bg-video) {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
}
/* override all child text colors to cream so difference blend reads correctly */
.scene-compass .scene-num,
.scene-compass .scene-blurb { color: rgba(244,243,239,0.7); }
.scene-compass .scene-title { color: #f4f3ef; }
.scene-compass .compass-bullets { color: rgba(244,243,239,0.85); }
.scene-compass .compass-bullets .term { color: #f4f3ef; }
.scene-compass .compass-bullets .sep { color: rgba(244,243,239,0.45); }
.scene-compass .compass-bullets .note { color: rgba(244,243,239,0.5); }
.compass-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}
.compass-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
}
/* compass — simple bullet list */
.compass-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 56px;
  row-gap: 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.compass-bullets li {
  position: relative;
  padding-left: 18px;
}
.compass-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.compass-bullets .term {
  font-weight: 400;
  color: var(--ink);
}
.compass-bullets .sep { color: var(--muted); }
.compass-bullets .note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.compass-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  padding-right: 32px;
  padding-left: 0;
}
.compass-row:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--rule); }
.compass-row:nth-child(even) { padding-left: 32px; }
.compass-row .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.compass-row .term {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.compass-row .term em { font-style: normal; font-weight: 300; opacity: 0.55; }
.compass-row .note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
  max-width: 18ch;
}
.compass-row:hover .term em { opacity: 0.9; color: var(--klein); }

/* ----- 05 Free hours ----- */
.scene-freehours {
  background: #181818;
  color: #f2f2f2;
  padding: 140px 32px 160px;
  flex-direction: column;
  isolation: isolate;
}

/* hours as plain editorial list */
.hours-list {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.hours-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .25s ease;
}
.hours-row:hover { padding-left: 12px; }

/* clickable hours rows */
.hours-row--link {
  grid-template-columns: 90px 1fr auto auto;
  cursor: pointer;
}
.hours-row-inner {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.hours-row--link .title {
  transition: text-decoration .2s;
}
.hours-row-inner:hover ~ * { color: var(--ink); }
.hours-row--link:hover .title {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(11,11,11,0.35);
}
.hours-link-arrow {
  font-size: 18px;
  color: var(--muted);
  align-self: center;
  transition: color .25s, transform .25s;
  line-height: 1;
}
.hours-row--link:hover .hours-link-arrow {
  color: var(--ink);
  transform: translate(3px, -3px);
}

/* refrakt.me link in trajectory */
.refrakt-link {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(11,11,11,0.45);
  transition: text-decoration-color .2s;
}
.refrakt-link:hover {
  text-decoration-color: rgba(11,11,11,0.85);
}
.hours-row .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.hours-row .title {
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: pretty;
}
.hours-row .tail {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.freehours-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.card {
  background: #fafaf6;
  border: 1px solid var(--rule);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--paper-shadow); }
.card .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.card .tail {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.card.span-5 { grid-column: span 5; }
.card.span-4 { grid-column: span 4; }
.card.span-3 { grid-column: span 3; }
.card.span-6 { grid-column: span 6; }
.card.dark {
  background: var(--ink);
  color: #f4f3ef;
  border-color: var(--ink);
}
.card.dark p { color: rgba(244,243,239,0.7); }
.card.dark .meta, .card.dark .tail { color: rgba(244,243,239,0.55); }
.card.klein {
  background: var(--klein);
  color: #f4f3ef;
  border-color: var(--klein);
}
.card.klein p { color: rgba(244,243,239,0.85); }
.card.klein .meta, .card.klein .tail { color: rgba(244,243,239,0.65); }

.card .glyph {
  height: 96px;
  border-bottom: 1px solid currentColor;
  opacity: 0.18;
  margin-bottom: 6px;
}

/* photo-strip social logos */
.frames-social-strip {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding-left: 32px;
  padding-right: 32px;
}
.frames-social-link {
  display: flex;
  align-items: center;
  color: rgba(244,243,239,0.45);
  transition: color .2s;
}
.frames-social-link:hover { color: rgba(244,243,239,0.90); }

/* ----- Hours orb stage -------------------------------------------------
   Soft fluffy orb in the center + 4 floating pill chips around it.
   Inspired by mdx.so but in our grayscale palette.                      */
.orb-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: clamp(520px, 62vh, 720px);
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* the orb itself — two layered radial gradients with heavy blur */
.orb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.orb-core {
  width: clamp(280px, 40vw, 480px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(244,243,239,0.95) 0%,
      rgba(220,219,213,0.78) 18%,
      rgba(170,168,162,0.55) 38%,
      rgba(90,89,85,0.30) 62%,
      rgba(50,50,48,0.0) 78%);
  filter: blur(14px);
  animation: orb-breathe 8s ease-in-out infinite;
}
.orb-fluff {
  position: absolute;
  width: clamp(340px, 46vw, 560px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.06) 25%,
      rgba(255,255,255,0) 55%),
    radial-gradient(circle at 62% 70%,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0) 50%);
  filter: blur(28px);
  animation: orb-breathe 8s ease-in-out infinite reverse;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.95; }
  50%      { transform: scale(1.04) translate(6px, -4px); opacity: 1; }
}

/* pulse rings — concentric circles that grow and fade outward */
.orb-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(280px, 40vw, 480px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(244,243,239,0.10);
  transform: translate(-50%, -50%) scale(0.6);
  animation: orb-pulse 6s ease-out infinite;
  pointer-events: none;
}
.orb-pulse--a { animation-delay: 0s; }
.orb-pulse--b { animation-delay: 2s; }
.orb-pulse--c { animation-delay: 4s; }
@keyframes orb-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.55); opacity: 0; }
  20%  { opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(1.45); opacity: 0; }
}

/* pill chips — float in absolute positions around the orb */
.orb-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(30,30,30,0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(244,243,239,0.14);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  color: #f4f3ef;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-decoration: none;
  z-index: 3;
  /* gentle floating bob */
  animation: orb-float 7s ease-in-out infinite;
  transition: transform .25s ease, background .25s, border-color .25s, box-shadow .25s;
}
.orb-chip--link { cursor: pointer; }
.orb-chip--link:hover {
  background: rgba(45,45,45,0.75);
  border-color: rgba(244,243,239,0.30);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.orb-chip .chip-idx {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(244,243,239,0.55);
  text-transform: uppercase;
}
.orb-chip .chip-title { font-weight: 500; }
.orb-chip .chip-arrow {
  font-size: 12px;
  color: rgba(244,243,239,0.55);
  transition: color .25s, transform .25s;
}
.orb-chip--link:hover .chip-arrow {
  color: #f4f3ef;
  transform: translate(2px, -2px);
}

/* positions — symmetric around the orb, with slight asymmetric offsets */
.orb-chip--tl { top: 18%;  left: 8%;  animation-delay: 0s; }
.orb-chip--tr { top: 14%;  right: 6%; animation-delay: 1.5s; }
.orb-chip--bl { bottom: 22%; left: 12%; animation-delay: 3s; }
.orb-chip--br { bottom: 18%; right: 8%; animation-delay: 4.5s; }

@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.orb-chip--link:hover { animation-play-state: paused; }

/* tiny vertical tick marks below the orb (echo of the screenshot) */
.orb-ticks {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 2;
}
.orb-ticks span {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(244,243,239,0.35);
  animation: tick-fade 2.6s ease-in-out infinite;
}
.orb-ticks span:nth-child(1) { animation-delay: 0s; }
.orb-ticks span:nth-child(2) { animation-delay: 0.2s; }
.orb-ticks span:nth-child(3) { animation-delay: 0.4s; height: 22px; }
.orb-ticks span:nth-child(4) { animation-delay: 0.6s; }
@keyframes tick-fade {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); }
  50%      { opacity: 0.85; transform: scaleY(1.1); }
}

@media (max-width: 920px) {
  .orb-stage { height: clamp(560px, 80vh, 720px); }
  .orb-chip { font-size: 13px; padding: 12px 18px; gap: 8px; }
  .orb-chip--tl { top: 8%;  left: 4%; }
  .orb-chip--tr { top: 6%;  right: 4%; }
  .orb-chip--bl { bottom: 18%; left: 6%; }
  .orb-chip--br { bottom: 14%; right: 6%; }
}

/* ----- T·05 shoutout line ----- */
.codex-shoutout {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(244,243,239,0.10);
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  color: rgba(244,243,239,0.55);
  line-height: 1.55;
}
.codex-shoutout-link {
  color: rgba(244,243,239,0.85);
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(244,243,239,0.30);
  transition: color .2s, text-decoration-color .2s;
}
.codex-shoutout-link:hover {
  color: #f4f3ef;
  text-decoration-color: #f4f3ef;
}
.scene-codex {
  background:
    radial-gradient(ellipse 120% 110% at 50% 35%, #3a3a3a 0%, #2d2d2d 55%, #1f1f1f 100%);
  color: #f4f3ef;
  padding: 160px 0 0;
  flex-direction: column;
  justify-content: space-between;
}
.codex-wrap {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 0 32px 80px;
}
.codex-wrap .scene-num { color: rgba(244,243,239,0.6); }
.codex-statement {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
.codex-statement b { font-weight: 600; }
.codex-statement em {
  font-style: italic;
  font-weight: 500;
  color: #6f86ff;
}
.codex-side {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244,243,239,0.75);
  padding-top: 18px;
  border-top: 1px solid rgba(244,243,239,0.25);
}
.codex-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,243,239,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.codex-contact-intro {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  color: rgba(244,243,239,0.45);
  line-height: 1.5;
}
.codex-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.codex-logo-link {
  display: flex;
  align-items: center;
  color: rgba(244,243,239,0.55);
  transition: color .2s;
}
.codex-logo-link:hover { color: #f4f3ef; }
.codex-dot {
  color: rgba(244,243,239,0.22);
  font-size: 13px;
}
.codex-email {
  font-size: 13px;
  font-weight: 400;
  color: rgba(244,243,239,0.85);
  letter-spacing: -0.005em;
  transition: color .2s;
}
.codex-email:hover { color: #f4f3ef; }
.codex-foot {
  margin-top: auto;
  padding: 0 32px 48px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,243,239,0.25);
}
.codex-foot::before,
.codex-foot::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(244,243,239,0.14);
}
.codex-side .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  color: rgba(244,243,239,0.5);
  margin-bottom: 12px;
}
.codex-side p + p { margin-top: 16px; }

.colophon {
  margin-top: 140px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,243,239,0.18);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,243,239,0.6);
}
.colophon .col h5 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 13px;
  text-transform: none;
  letter-spacing: -0.005em;
  color: #f4f3ef;
  font-weight: 600;
}
.colophon a:hover { color: #f4f3ef; }
.colophon ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.colophon-label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(244,243,239,0.45);
  margin-bottom: 12px;
  font-style: italic;
}
.colophon-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.colophon-logo-link {
  display: flex;
  align-items: center;
  color: rgba(244,243,239,0.55);
  transition: color .2s;
}
.colophon-logo-link:hover { color: #f4f3ef; }
.colophon-dot {
  color: rgba(244,243,239,0.25);
  font-size: 14px;
}
.colophon-value {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(244,243,239,0.85);
  transition: color .2s;
}
.colophon-value:hover { color: #f4f3ef; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .scene-title { white-space: normal; }
  .summary-body p:first-child { white-space: normal; }
  .compass-bullets { grid-template-columns: 1fr; }
  .frames.frames--contact { grid-template-columns: repeat(4, 1fr); }
  .hud-top { grid-template-columns: 1fr auto; }
  .hud-top .tagline, .hud-top .nav { display: none; }
  .hud-bottom { grid-template-columns: auto 1fr auto; gap: 14px; padding: 14px 18px; }
  .hud-bottom .track-section, .hud-bottom .track-time { display: none; }

  .scene-trajectory, .scene-compass, .scene-freehours, .scene-codex { padding: 100px 18px 120px; }
  .scene-head { grid-template-columns: 60px 1fr; gap: 18px; }
  .scene-head .scene-blurb { grid-column: 1 / -1; }
  .hero-copy { padding: 0 18px 110px; }
  .hero-sub { grid-template-columns: 1fr; gap: 18px; }

  .timeline { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-bottom: 1px solid var(--rule); }

  .compass-grid { grid-template-columns: 1fr; }
  .compass-list { grid-template-columns: 1fr; }
  .compass-row, .compass-row:nth-child(odd), .compass-row:nth-child(even) {
    padding: 22px 0; border-right: none;
  }

  .freehours-grid { grid-template-columns: 1fr; }
  .card.span-3, .card.span-4, .card.span-5, .card.span-6 { grid-column: span 1; }
  .hours-row { grid-template-columns: 60px 1fr; gap: 14px; }
  .hours-row .tail { grid-column: 2; }
  .hours-row--link { grid-template-columns: 60px 1fr auto; }
  .hours-link-arrow { font-size: 14px; }

  .lens-overlay { padding: 100px 18px 120px; }
  .lens-stats { grid-template-columns: repeat(2, 1fr); }
  .lens-stats .stat .n { font-size: 32px; }
  .lens-overlay .scene-head { grid-template-columns: 60px 1fr; }
  .lens-overlay .scene-blurb { grid-column: 1 / -1; }

  .photo-strip { padding: 48px 0 64px; }
  .photo-strip .strip-head,
  .photo-strip .frames-social-strip { padding-left: 18px; padding-right: 18px; }
  .frames-row:first-child { aspect-ratio: 43/12; }
  .frames-row:last-child  { aspect-ratio: 53/12; }

  .frames { grid-template-columns: repeat(2, 1fr); }

  .codex-wrap { grid-template-columns: 1fr; gap: 28px; }
  .colophon { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 80px; }
  .trajectory-summary { grid-template-columns: 1fr; gap: 16px; }
}


/* ----- text contrast on painted dark sections (00, T·01, T·04, photo-strip) ----- */
.scene-trajectory .scene-blurb,
.scene-freehours .scene-blurb { color: rgba(244,243,239,0.65); }

.scene-trajectory .scene-num,
.scene-freehours .scene-num { color: rgba(244,243,239,0.55); }

.scene-trajectory .timeline-step .role { color: rgba(244,243,239,0.75); }
.scene-trajectory .timeline-step:hover { background: rgba(244,243,239,0.025); }
.scene-trajectory .timeline-step .yr::before { background: #f4f3ef; }
.scene-trajectory .timeline-step .yr.klein::before { background: #6f86ff; }

.scene-trajectory .trajectory-summary .marg,
.scene-trajectory .summary-body p + p { color: rgba(244,243,239,0.6); }
.scene-trajectory .summary-body p + p { color: rgba(244,243,239,0.6); }

.refrakt-link {
  text-decoration-color: rgba(244,243,239,0.45);
}
.refrakt-link:hover { text-decoration-color: #f4f3ef; }

/* hours list — keep accent contrast on dark */
.scene-freehours .hours-row .idx,
.scene-freehours .hours-row .tail,
.scene-freehours .hours-link-arrow { color: rgba(244,243,239,0.55); }
.scene-freehours .hours-row--link:hover .hours-link-arrow { color: #f4f3ef; }
.scene-freehours .hours-row--link:hover .title {
  text-decoration-color: rgba(244,243,239,0.55);
}
.scene-freehours .hours-list,
.scene-freehours .hours-row { border-color: rgba(244,243,239,0.12); }

/* rule colors on the dark sections — push them out of pure-black */
.scene-trajectory .timeline,
.scene-trajectory .timeline-step,
.scene-trajectory .trajectory-summary { border-color: rgba(244,243,239,0.12); }

/* ----- inter-scene blending --------------------------------------------
   Each scene gets soft top + bottom inner shadows so neighbors merge
   into each other instead of meeting at a hard color seam.            */
section.scene {
  box-shadow:
    0 60px 90px -60px rgba(0,0,0,0.6) inset,
    0 -60px 90px -60px rgba(0,0,0,0.5) inset;
}
/* lens uses an internal frame for its photo — apply the top inset
   to the frame so the photo doesn't get darkened twice */
.scene-lens { box-shadow: 0 -60px 90px -60px rgba(0,0,0,0.5) inset; }
.scene-lens .lens-frame { box-shadow: 0 60px 90px -60px rgba(0,0,0,0.6) inset; }

.travel-map {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0 8px;
  margin-top: 56px;
  border-top: 1px solid rgba(244,243,239,0.18);
}
.travel-years,
.travel-dots,
.travel-places {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
.travel-dots { position: relative; }
.travel-rail {
  position: absolute;
  top: 50%;
  left: 12%; right: 12%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(244,243,239,0.25);
  z-index: 1;
}
.t-year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(244,243,239,0.55);
  text-transform: uppercase;
}
.t-dot {
  position: relative;
  z-index: 2;
  width: 9px; height: 9px;
  background: #f4f3ef;
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--navy), 0 0 0 5px rgba(244,243,239,0.35);
}
.t-dot.is-now {
  background: #6f86ff;
  box-shadow: 0 0 0 4px var(--navy), 0 0 0 5px rgba(111,134,255,0.55), 0 0 18px rgba(111,134,255,0.55);
}
.t-place {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(244,243,239,0.92);
  text-align: center;
}

@media (max-width: 920px) {
  .hero-card { width: min(420px, 80vw); }
  .tag-tl { top: 24px; left: 26px; }
  .tag-br { bottom: 24px; right: 26px; }
  .travel-map { margin-top: 36px; }
  .t-place { font-size: 11px; }
  .travel-rail { left: 14%; right: 14%; }
}
