:root {
  --atlas-ink: #1a1714;
  --atlas-muted: #6b635a;
  --atlas-paper: #f3eee4;
  --atlas-paper-deep: #e8e0d2;
  --atlas-sea: #c9d8d4;
  --atlas-land: #ddd4c4;
  --atlas-land-edge: #cfc4b0;
  --atlas-brand: #ff4b00;
  --atlas-brand-soft: #ff4b0024;
  --atlas-card: #fffdf8;
  --atlas-shadow: 0 18px 50px #1a17141f;
  --atlas-line: #1a17141a;
  --font-display: "catalpaultrablack",Georgia,serif;
  --font-body: "Söhne","Inter","Helvetica Neue",Arial,sans-serif;
}

*, :after, :before {
  box-sizing: border-box;
}

body, html {
  background: var(--atlas-paper);
  color: var(--atlas-ink);
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body.atlas-page {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-body);
  overflow-x: hidden;
}

.atlas-shell {
  flex-direction: column;
  max-width: 1280px;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 28px 28px 20px;
  display: flex;
}

.atlas-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 8px;
  display: flex;
}

.atlas-brand-block {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.atlas-kicker {
  color: var(--atlas-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 500;
}

.atlas-title {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  margin: 0;
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: .96;
}

.atlas-sub {
  color: var(--atlas-muted);
  max-width: 38ch;
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

.atlas-home {
  border: 1px solid var(--atlas-line);
  color: var(--atlas-ink);
  background: #fffdf8b3;
  border-radius: 999px;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.atlas-home:hover {
  background: #fff;
  border-color: #1a171440;
}

.atlas-eras {
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
  display: flex;
}

.atlas-era {
  appearance: none;
  border: 1px solid var(--atlas-line);
  color: var(--atlas-ink);
  cursor: pointer;
  font: inherit;
  background: none;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: .92rem;
  font-weight: 500;
  transition: background .15s, border-color .15s, color .15s;
}

.atlas-era:hover {
  border-color: #1a171447;
}

.atlas-era.is-active {
  background: var(--atlas-ink);
  border-color: var(--atlas-ink);
  color: #fffdf8;
}

.atlas-stage {
  background: radial-gradient(120% 80% at 50% 20%,#fffdf88c,transparent 55%),linear-gradient(180deg,#d7e4e1 0,var(--atlas-sea) 48%,#b9cbc7 100%);
  border: 1px solid var(--atlas-line);
  border-radius: 22px;
  flex: 1;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff73;
}

.atlas-map-wrap {
  place-items: center;
  display: grid;
  position: absolute;
  inset: 0;
}

.atlas-map {
  aspect-ratio: 2;
  width: min(1120px, 96%);
  height: auto;
  max-height: 100%;
  position: relative;
}

.atlas-map svg.world {
  width: 100%;
  height: 100%;
  display: block;
}

.atlas-map svg.world .ocean {
  fill: #0000;
}

.atlas-map svg.world .land {
  fill: var(--atlas-land);
  stroke: var(--atlas-land-edge);
  stroke-width: .6px;
  vector-effect: non-scaling-stroke;
}

.atlas-markers {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.atlas-marker {
  background: var(--atlas-card);
  cursor: pointer;
  opacity: .92;
  pointer-events: auto;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0;
  transition: transform .18s, box-shadow .18s, opacity .2s;
  position: absolute;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px #1a17142e;
}

.atlas-marker:focus-visible, .atlas-marker:hover {
  z-index: 3;
  outline: none;
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 6px 16px #1a171438;
}

.atlas-marker.is-active {
  box-shadow: 0 0 0 3px var(--atlas-brand-soft),0 8px 20px #ff4b0047;
  opacity: 1;
  z-index: 4;
  transform: translate(-50%, -50%) scale(1.28);
}

.atlas-marker.is-dim {
  opacity: .18;
  pointer-events: none;
}

.atlas-marker img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.atlas-marker .initials {
  color: var(--atlas-ink);
  letter-spacing: -.02em;
  background: linear-gradient(145deg, #fff8ef, #f0e6d6);
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-weight: 600;
  display: grid;
}

.atlas-empty {
  border: 1px solid var(--atlas-line);
  color: var(--atlas-ink);
  text-align: center;
  z-index: 5;
  background: #fffdf8e0;
  border-radius: 14px;
  max-width: 28ch;
  margin: 0;
  padding: 14px 18px;
  font-size: .95rem;
  line-height: 1.45;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.atlas-card, .atlas-empty {
  pointer-events: none;
  position: absolute;
}

.atlas-card {
  background: var(--atlas-card);
  border: 1px solid var(--atlas-line);
  box-shadow: var(--atlas-shadow);
  opacity: 0;
  z-index: 6;
  border-radius: 18px;
  width: min(360px, 100% - 32px);
  padding: 18px 18px 16px;
  transition: opacity .2s, transform .2s;
  bottom: 18px;
  left: 18px;
  transform: translateY(12px);
}

.atlas-card.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.atlas-card-close {
  color: var(--atlas-muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 10px;
}

.atlas-card-close:hover {
  color: var(--atlas-ink);
  background: #1a17140f;
}

.atlas-card-year {
  color: var(--atlas-brand);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 600;
}

.atlas-card-name {
  font-family: var(--font-display);
  margin: 0 32px 10px 0;
  font-size: 28px;
  line-height: 1;
}

.atlas-card-place {
  color: var(--atlas-muted);
  margin: 0 0 10px;
  font-size: .95rem;
}

.atlas-card-blurb {
  margin: 0 0 16px;
  font-size: .98rem;
  line-height: 1.5;
}

.atlas-card-link {
  background: var(--atlas-brand);
  color: #fffdf8;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: filter .15s;
  display: inline-flex;
}

.atlas-card-link:hover {
  filter: brightness(1.05);
}

.atlas-scrubber {
  margin-top: 26px;
  padding: 4px 2px 0;
}

.atlas-scrubber-meta {
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
  display: flex;
}

.atlas-year-readout {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1;
}

.atlas-count {
  color: var(--atlas-muted);
  font-size: .95rem;
  font-weight: 500;
}

.atlas-track {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  height: 60px;
  display: flex;
  position: relative;
}

.atlas-track-line {
  background: linear-gradient(90deg, #1a17141f, #ff4b0059, #1a17141f);
  border-radius: 999px;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
}

.atlas-ticks {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.atlas-tick {
  background: #1a17142e;
  width: 1px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
}

.atlas-tick.is-major {
  background: #1a171452;
  height: 16px;
  margin-top: -8px;
}

.atlas-handle {
  cursor: grab;
  z-index: 2;
  background: none;
  border: 0;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.atlas-handle:active {
  cursor: grabbing;
}

.atlas-handle-face {
  background: none;
  border-radius: 50%;
  place-items: center;
  width: 56px;
  height: 56px;
  transition: transform .15s;
  display: grid;
  overflow: visible;
  box-shadow: 0 0 0 2px #fffdf8f2, 0 8px 18px #1a171438;
}

.atlas-handle.is-dragging .atlas-handle-face, .atlas-handle:hover .atlas-handle-face {
  transform: scale(1.08);
}

.atlas-handle-face img {
  filter: drop-shadow(0 1px 2px #1a171426);
  object-fit: contain;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
}

.atlas-range-labels {
  color: var(--atlas-muted);
  justify-content: space-between;
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
}

.atlas-note {
  color: var(--atlas-muted);
  max-width: 54ch;
  margin: 18px 0 0;
  font-size: .95rem;
  line-height: 1.5;
}

.atlas-mini-footer {
  border-top: 1px solid var(--atlas-line);
  color: var(--atlas-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 28px;
  padding-top: 18px;
  font-size: .9rem;
  display: flex;
}

.atlas-mini-footer a {
  color: var(--atlas-muted);
  text-decoration: none;
  transition: color .15s;
}

.atlas-mini-footer a:hover {
  color: var(--atlas-ink);
  text-decoration: underline;
}

.atlas-mini-footer .sep {
  opacity: .45;
}

.atlas-mini-footer .copy {
  margin-left: auto;
}

@media (width <= 720px) {
  .atlas-shell {
    padding: 18px 16px 16px;
  }

  .atlas-top {
    flex-direction: column;
    gap: 16px;
  }

  .atlas-sub {
    font-size: 1rem;
  }

  .atlas-eras {
    margin: 22px 0 18px;
  }

  .atlas-stage {
    border-radius: 16px;
    min-height: 320px;
  }

  .atlas-card {
    width: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .atlas-marker {
    width: 26px;
    height: 26px;
  }

  .atlas-scrubber {
    margin-top: 20px;
  }

  .atlas-mini-footer .copy {
    width: 100%;
    margin-top: 4px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-card, .atlas-handle-face, .atlas-marker {
    transition: none;
  }
}
/*# sourceMappingURL=index.9712c9ca.css.map */
