.bhr-journey {
  position: relative;
  height: 220vh;
  background: var(--bhr-cream, #fff8ee);
}

.bhr-journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 149, 50, 0.12), transparent 32%),
    var(--bhr-cream, #fff8ee);
}

.bhr-journey-inner {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.bhr-journey-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bhr-journey-photo {
  display: block;
  width: 100%;
  max-width: 460px;
  max-height: 72vh;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(63, 38, 63, 0.16);
  filter: grayscale(1) brightness(0.7) saturate(0.4);
  transform: scale(1.02);
  transition: filter 0.45s ease, transform 0.8s ease;
}

.bhr-journey-photo.is-lit {
  filter: none;
  transform: scale(1);
}

.bhr-journey-story {
  position: relative;
  padding-left: 42px;
}

.bhr-journey-progress {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(63, 38, 63, 0.12);
}

.bhr-journey-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(#5a365a, #c89532);
}

.bhr-journey-dot {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bhr-cream, #fff8ee);
  border: 2px solid #c4b3a4;
  transform: translate(-50%, -50%) scale(0.86);
  transition: 0.3s ease;
}

.bhr-journey-dot:nth-of-type(1) { top: 0%; }
.bhr-journey-dot:nth-of-type(2) { top: 50%; }
.bhr-journey-dot:nth-of-type(3) { top: 100%; }

.bhr-journey-dot.is-active {
  border-color: #c89532;
  background: #e8c57b;
  box-shadow: 0 0 0 6px rgba(200, 149, 50, 0.14);
  transform: translate(-50%, -50%) scale(1);
}

.bhr-journey-copy {
  max-width: 520px;
}

.bhr-journey-kicker {
  margin: 0 0 8px;
  color: var(--bhr-purple, #3f263f);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.bhr-journey-count {
  margin: 0 0 14px;
  color: var(--bhr-gold, #c89532);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bhr-journey-stages {
  position: relative;
  min-height: 168px;
}

.bhr-journey-stage {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bhr-journey-stage.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.bhr-journey-stage h2 {
  margin: 0;
  color: var(--bhr-purple, #3f263f);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.bhr-journey-stage p {
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bhr-muted, #6f6368);
  margin: 14px 0 0;
  font-weight: 700;
}

.bhr-journey.is-static {
  height: auto;
}

.bhr-journey.is-static .bhr-journey-sticky {
  position: relative;
  height: auto;
  padding: 48px 0;
}

.bhr-journey.is-static .bhr-journey-photo {
  filter: none;
  transform: none;
}

.bhr-journey.is-static .bhr-journey-stages {
  min-height: 0;
}

.bhr-journey.is-static .bhr-journey-stage {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  margin-bottom: 18px;
}

.bhr-journey.is-static .bhr-journey-progress-fill {
  height: 100%;
}

.bhr-journey.is-static .bhr-journey-dot {
  border-color: #c89532;
  background: #e8c57b;
}

@media (max-width: 860px) {
  .bhr-journey {
    height: 240vh;
  }

  .bhr-journey-inner {
    width: min(520px, calc(100% - 36px));
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 28px;
  }

  .bhr-journey-photo {
    width: min(280px, 70vw);
    max-height: 38vh;
    margin: 0 auto;
  }

  .bhr-journey-story {
    padding-left: 28px;
  }

  .bhr-journey-progress {
    left: 0;
    top: 4px;
    bottom: 4px;
  }

  .bhr-journey-stages {
    min-height: 150px;
  }

  .bhr-journey-stage h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
}
