.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 940px) {
  .journey {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: var(--gutter);
  }
}

.journey__map-col {
  position: relative;
}

@media (min-width: 940px) {
  .journey__map-col {
    position: sticky;
    top: 6rem;
    height: calc(100svh - 9rem);
  }
}

.journey__map-frame {
  position: relative;
  height: 420px;
  border: 1px solid var(--line-strong);
  background: var(--paper-alt);
  overflow: hidden;
}

@media (min-width: 940px) {
  .journey__map-frame {
    height: 100%;
  }
}

#journey-map {
  position: absolute;
  inset: 0;
  filter: sepia(8%) saturate(85%) brightness(1.02);
}

.journey__step-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 500;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.journey__text-col {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 14vh, 8rem);
  padding: 2rem 0;
}

.journey__step {
  opacity: 0.35;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  scroll-margin-top: 40vh;
}

.journey__step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.journey__step-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.6rem;
}

.journey__step h3 {
  margin-bottom: 0.5rem;
}

.leaflet-control-attribution {
  font-size: 9px !important;
}

/* Reduced-motion fallback: show a plain static map, no sticky pin */
@media (prefers-reduced-motion: reduce) {
  .journey__map-col {
    position: static !important;
    height: auto !important;
  }
  .journey__step {
    opacity: 1 !important;
    transform: none !important;
  }
}
