@keyframes steam-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  20% {
    opacity: 0.45;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    transform: translate3d(4vw, -74vh, 0) scale(1.7);
    opacity: 0;
  }
}

@keyframes ember-float {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translate3d(6vw, -40vh, 0) scale(1.8);
    opacity: 0;
  }
}

@keyframes pulse-soft {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.contact-rail__item,
.quick-booking,
.btn,
.sound-toggle,
.film-card,
.included__items li,
.ritual__card,
.ritual__quote,
.reasons__stop,
.availability__timer div,
.availability__dates li,
.location__label {
  transition:
    transform 0.35s cubic-bezier(.22,1,.36,1),
    box-shadow 0.35s cubic-bezier(.22,1,.36,1),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.contact-rail__item:hover,
.quick-booking:hover,
.film-card:hover,
.included__items li:hover,
.reasons__stop:hover,
.availability__timer div:hover,
.availability__dates li:hover,
.location__label:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 225, 189, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.hero__backglow {
  animation: pulse-soft 6s ease-in-out infinite;
}

.is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
