/* ==========================================================================
   Specula One — Phase 4: Guest Journey
   Five stages, circular imagery — echoes the hero portal's circular motif.
   ========================================================================== */

.journey-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 8px;
}

.journey-track::before {
  content: '';
  position: absolute;
  left: 80px;
  right: 80px;
  top: 80px;
  height: 1px;
  background: var(--stone-line);
  z-index: 0;
}

.journey-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.journey-circle {
  width: min(160px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--stone-line);
  box-shadow: 0 14px 30px -12px rgba(33, 29, 22, 0.25);
  background: var(--ivory-deep);
  transition: transform 0.5s var(--ease-elegant), box-shadow 0.5s var(--ease-elegant), border-color 0.3s ease;
}
.journey-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-elegant);
}
.journey-stage:hover .journey-circle {
  transform: translateY(-4px);
  border-color: var(--bronze-line);
  box-shadow: 0 22px 40px -14px rgba(33, 29, 22, 0.32);
}
.journey-stage:hover .journey-circle img { transform: scale(1.06); }

.journey-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bronze-deep);
  margin-top: 22px;
}
.journey-label {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin-top: 6px;
}

@media (max-width: 860px) {
  .journey-track { flex-wrap: wrap; row-gap: 40px; }
  .journey-track::before { display: none; }
  .journey-stage { flex: 0 0 40%; }
  .journey-circle { width: 120px; height: 120px; aspect-ratio: auto; }
  /* centers a lone final stage (Departure) when it wraps onto its own row */
  .journey-stage:last-child { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .journey-stage { flex: 0 0 100%; }
}
