.worship-page {
  position: relative;
}

.worship-page__hero {
  position: relative;
  z-index: 0;
  height: 100vh;
  pointer-events: none;
}

.worship-page__hero .liquify-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  min-height: 100vh;
}

/* ─── Image journey ─── */

.worship-journey {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vh, 3.5rem);
  padding:
    0
    clamp(1rem, 4vw, 2rem)
    4rem;
}

.worship-journey__intro {
  margin: 0 auto;
  max-width: 36rem;
  text-align: center;
}

.worship-journey__label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-soft, #ff6eb4);
}

.worship-journey__intro p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #8a8a8a);
}

.worship-journey__step {
  --step-min-height: min(72vh, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
  width: min(100%, 72rem);
  margin: 0 auto;
  min-height: var(--step-min-height);
}

.worship-journey__step:first-child {
  margin-top: calc(var(--step-min-height) * -0.5);
}

@media (min-width: 900px) {
  .worship-journey {
    gap: clamp(1.5rem, 3vh, 2.25rem);
  }

  .worship-journey__step {
    --step-min-height: min(44vh, 420px);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    min-height: var(--step-min-height);
  }

  .worship-journey__step:nth-child(even) .worship-journey__media {
    order: 2;
  }

  .worship-journey__step:nth-child(even) .worship-journey__bubble-wrap {
    order: 1;
  }

  .worship-journey__sticker {
    width: min(100%, 16.5rem);
  }

  .worship-journey__bubble {
    padding: 0.8rem 1.05rem;
    font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  }
}

.worship-journey__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.worship-journey__sticker {
  position: relative;
  width: min(100%, 22rem);
  margin: 0;
  aspect-ratio: var(--stage-aspect, 574 / 811);
}

.worship-journey__sticker .img-sticker__shadow,
.worship-journey__sticker .img-sticker__halo,
.worship-journey__sticker .img-sticker__frame,
.worship-journey__sticker .img-sticker__photo {
  position: absolute;
  inset: 0;
}

.worship-journey__sticker .img-sticker__photo {
  z-index: 2;
  overflow: hidden;
}

.worship-journey__sticker > img.img-sticker__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worship-journey__sticker--hybrid .img-sticker__photo,
.worship-journey__sticker.image-stickers-gallery__sticker--hybrid .img-sticker__photo {
  overflow: visible;
}

.worship-journey__sticker.image-stickers-gallery__sticker--hybrid .img-sticker__halo {
  z-index: 0;
  box-shadow:
    0 0 18px 6px color-mix(in srgb, var(--stroke, #e91e8c) 45%, transparent),
    0 0 36px 10px color-mix(in srgb, var(--stroke, #e91e8c) 25%, transparent);
  opacity: 0.92;
}

.worship-journey__sticker.image-stickers-gallery__sticker--hybrid .img-sticker__frame {
  z-index: 1;
  box-shadow:
    0 0 0 4px var(--black, #050505),
    0 0 0 8px var(--stroke, #e91e8c);
}

.worship-journey__sticker.image-stickers-gallery__sticker:not(.image-stickers-gallery__sticker--hybrid) .img-sticker__frame {
  z-index: 1;
  box-shadow:
    0 0 0 4px var(--black, #050505),
    0 0 0 8px var(--stroke, #e91e8c);
}

.worship-journey__sticker svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.worship-journey__sticker .middle-money-page__loading {
  margin: 0;
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--muted, #8a8a8a);
}

.worship-journey__sticker .img-sticker__photo.is-ready .middle-money-page__loading {
  display: none;
}

.worship-journey__bubble-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  width: min(100%, 34rem);
  margin: 0 auto;
  animation: worship-journey-float 5.5s ease-in-out infinite;
}

.worship-journey__step:nth-child(2n) .worship-journey__bubble-wrap {
  animation-delay: -1.8s;
}

.worship-journey__step:nth-child(3n) .worship-journey__bubble-wrap {
  animation-delay: -3.2s;
}

@media (min-width: 900px) {
  .worship-journey__bubble-wrap {
    margin: 0;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .worship-journey__bubble-wrap {
    animation: none;
  }
}

@keyframes worship-journey-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.65rem);
  }
}

.worship-journey__bubble {
  position: relative;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1.35rem;
  background: #3a3a3c;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 36px rgb(0 0 0 / 0.35);
}

.worship-journey__bubble p {
  margin: 0;
}

.worship-journey__meta {
  margin: 0 0 0 0.5rem;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #6e6e73;
  white-space: nowrap;
}

/* ─── Contact ─── */

.worship-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vh, 3rem);
  padding:
    clamp(3rem, 8vh, 5rem)
    clamp(1rem, 4vw, 2rem)
    clamp(4rem, 10vh, 6rem);
}

.worship-contact__intro {
  margin: 0 auto;
  max-width: 36rem;
  text-align: center;
}

.worship-contact__label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-soft, #ff6eb4);
}

.worship-contact__title {
  margin: 0 0 0.65rem;
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #f5f5f7;
}

.worship-contact__lead {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #8a8a8a);
}

.worship-contact__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 7vh, 4.5rem);
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.worship-contact__step {
  display: flex;
  width: 100%;
}

.worship-contact__step:nth-child(odd) {
  justify-content: flex-start;
}

.worship-contact__step:nth-child(even) {
  justify-content: flex-end;
}

.worship-contact__scene {
  position: relative;
  width: min(100%, 26rem);
  overflow: visible;
}

.worship-contact__pose {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  aspect-ratio: var(--pose-aspect, 741 / 500);
}

.worship-contact__pose-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgb(0 0 0 / 0.45));
}

.worship-contact__bubble-wrap {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: min(78%, 19rem);
  animation: worship-journey-float 5.5s ease-in-out infinite;
}

.worship-contact__step:nth-child(odd) .worship-contact__bubble-wrap {
  right: -6%;
  bottom: 8%;
  align-items: flex-start;
}

.worship-contact__step:nth-child(even) .worship-contact__bubble-wrap {
  left: -6%;
  bottom: 8%;
  align-items: flex-end;
}

.worship-contact__step:nth-child(2) .worship-contact__bubble-wrap {
  animation-delay: -1.8s;
}

.worship-contact__step:nth-child(3) .worship-contact__bubble-wrap {
  animation-delay: -3.2s;
}

@media (min-width: 900px) {
  .worship-contact__scene {
    width: min(100%, 30rem);
  }

  .worship-contact__step:nth-child(odd) .worship-contact__bubble-wrap {
    right: -4%;
    bottom: 10%;
    width: min(72%, 21rem);
  }

  .worship-contact__step:nth-child(even) .worship-contact__bubble-wrap {
    left: -4%;
    bottom: 10%;
    width: min(72%, 21rem);
  }
}

@media (max-width: 599px) {
  .worship-contact__step,
  .worship-contact__step:nth-child(even) {
    justify-content: center;
  }

  .worship-contact__scene {
    width: min(100%, 22rem);
  }

  .worship-contact__pose {
    z-index: 0;
  }

  .worship-contact__bubble-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -2.25rem;
    align-items: stretch !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .worship-contact__bubble-wrap {
    animation: none;
  }
}

.worship-contact__bubble {
  position: relative;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1.35rem;
  background: #3a3a3c;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 36px rgb(0 0 0 / 0.35);
}

.worship-contact__bubble p {
  margin: 0;
}

.worship-contact__bubble strong {
  font-weight: 700;
  color: #fff7ed;
}

.worship-contact__meta {
  margin: 0 0 0 0.5rem;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #6e6e73;
  white-space: nowrap;
}

.worship-contact__step:nth-child(even) .worship-contact__meta {
  margin: 0 0.5rem 0 0;
  align-self: flex-end;
}

.worship-contact a {
  color: var(--neon-soft, #ff6eb4);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.worship-contact a:hover {
  color: #fff;
}

.worship-contact a:focus-visible {
  outline: 2px solid var(--neon-soft, #ff6eb4);
  outline-offset: 3px;
}
