/* Vollbild-Einstieg und Bauphasen teilen sich dieselbe Bildfläche. */
.service-journey-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  background: #0f0e14;
}
.journey-poster, .journey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-canvas { opacity: 0; }
.service-journey-stage.is-ready .journey-canvas { opacity: 1; }
.journey-scrim {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15,14,20,.78), rgba(15,14,20,.32) 65%, rgba(15,14,20,.12)),
    linear-gradient(0deg, rgba(15,14,20,.7), transparent 48%);
}
.journey-intro {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 112px clamp(24px, 5vw, 80px) 92px;
}
.journey-intro-content { width: 100%; max-width: 1050px; }
.journey-intro .crumbs { margin-bottom: 28px; color: rgba(255,255,255,.8); }
.journey-intro .crumbs a { color: #fff; }
.journey-title {
  margin: 0;
  font-size: clamp(36px, 5.4vw, 80px);
  font-weight: 300;
  line-height: 1.06;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0,0,0,.2);
}
.journey-subtitle { font-style: italic; color: #e1d8cf; }
.journey-lead {
  max-width: 42rem;
  margin-top: 28px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.7;
  font-weight: 300;
  color: #f0ece8;
}
.journey-caption {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  right: 24px;
  bottom: 88px;
  z-index: 20;
  max-width: 720px;
  opacity: 0;
  pointer-events: none;
}
.journey-caption h2 { margin-top: 16px; }
.journey-caption [id$="phase-num"] { color: #f0ece8; }
.journey-dots {
  position: absolute;
  right: 48px;
  top: 40%;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
}
.journey-dots .phase-dot { cursor: default; flex-direction: row-reverse; }
.journey-progress-track {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  z-index: 20;
  background: rgba(255,255,255,.1);
  opacity: 0;
}
.is-animated .journey-progress-track { opacity: 1; }
.journey-progress-fill { height: 100%; background: #930413; transform-origin: left; }
.journey-cue, .journey-skip {
  position: absolute;
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 25;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f0ece8;
}
.journey-cue { left: clamp(24px, 5vw, 80px); display: flex; align-items: center; gap: 14px; }
.journey-skip { right: clamp(24px, 5vw, 80px); padding: 14px 0; bottom: 16px; }
.journey-skip:hover { text-decoration: underline; text-underline-offset: 5px; }
.journey-skip:focus-visible, .journey-intro a:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
#ablauf { scroll-margin-top: 88px; }
@media (min-width: 1100px) { .journey-dots { display: flex; } }
@media (max-width: 767px) {
  .journey-title { font-size: clamp(32px, 8.8vw, 52px); }
  .journey-intro { padding-top: 104px; padding-bottom: 100px; }
  .journey-intro .crumbs { margin-bottom: 24px; font-size: 9px; }
  .journey-lead { margin-top: 24px; max-width: 34rem; }
  .journey-cue, .journey-skip { font-size: 9px; letter-spacing: .1em; }
  .journey-caption { bottom: 100px; }
}
@media (max-height: 599px) {
  .service-journey-stage { min-height: 540px; }
  .journey-title { font-size: clamp(32px, 4.5vw, 48px); }
}
@media (prefers-reduced-motion: reduce) {
  .journey-cue { display: none; }
}
