/* Abschluss-Journey: Weisheit → Wertschätzung → Würde → Bewegung */
.journey {
  --journey-ink: #0f315f;
  --journey-gold: #b88318;
  --journey-olive: #617052;
  --journey-line: rgba(184, 131, 24, 0.52);
  width: min(1500px, 100%);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(0.75rem, 4vw, 1rem);
  color: var(--journey-ink);
  font-family: var(--font-sans, ui-sans-serif, system-ui, sans-serif);
  background:
    radial-gradient(circle at 10% 12%, rgba(192, 153, 83, 0.08), transparent 22rem),
    radial-gradient(circle at 90% 12%, rgba(192, 153, 83, 0.08), transparent 24rem),
    radial-gradient(circle at 8% 92%, rgba(104, 119, 82, 0.09), transparent 26rem),
    radial-gradient(circle at 90% 90%, rgba(184, 131, 24, 0.09), transparent 26rem),
    #fffdf8;
}

.journey__steps {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.3rem, 1vw, 1rem);
}

.journey-step {
  min-width: 0;
  text-align: center;
}

.journey-step__visual {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 280 / 340;
  margin-inline: auto;
}

.journey-step__arch,
.journey-step__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-step__icon {
  width: 44%;
  height: 44%;
  left: 28%;
  top: 34%;
  color: var(--journey-olive);
}

.journey-step--appreciation .journey-step__icon,
.journey-step--dignity .journey-step__icon {
  color: var(--journey-gold);
}

.journey-step__rule {
  position: relative;
  width: 7rem;
  height: 1rem;
  margin: 0.4rem auto 0.35rem;
}

.journey-step__rule::before,
.journey-step__rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 43%;
  height: 1px;
  background: var(--journey-line);
}

.journey-step__rule::before {
  left: 0;
}

.journey-step__rule::after {
  right: 0;
}

.journey-step__rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid var(--journey-gold);
  background: #fffdf8;
  transform: translate(-50%, -50%) rotate(45deg);
}

.journey-step h3 {
  margin: 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--journey-ink);
}

.journey-arrow {
  color: var(--journey-gold);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  transform: translateY(-1.6rem);
}

.journey__statement {
  margin-top: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.journey__statement-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.journey__statement-ornament span {
  display: block;
  width: clamp(7rem, 18vw, 18rem);
  height: 1px;
  background: var(--journey-line);
}

.journey__statement-ornament svg {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--journey-gold);
}

.journey__statement p {
  margin: 1rem 0 0;
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.8rem, 3.5vw, 3.7rem);
  line-height: 1.25;
}

@media (max-width: 1050px) {
  .journey__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.2rem;
  }

  .journey-arrow {
    display: none;
  }
}

@media (max-width: 620px) {
  .journey__steps {
    grid-template-columns: 1fr;
  }

  .journey-step {
    position: relative;
  }

  .journey-step:not(:last-of-type)::after {
    content: "↓";
    display: block;
    margin: 1rem 0 -0.3rem;
    color: var(--journey-gold);
    font-size: 2rem;
  }

  .journey-step__visual {
    width: min(300px, 82vw);
  }

  .journey__statement-ornament span {
    width: 4rem;
  }

  .journey__statement p br {
    display: none;
  }
}
