.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content,
.contact-hero-content {
  animation: heroFadeUp 760ms ease both;
}

.hero-panel {
  animation: heroFadeUp 760ms ease 180ms both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-row.reveal:nth-child(2),
.gallery-item.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.amenity-row.reveal:nth-child(3),
.gallery-item.reveal:nth-child(3) {
  transition-delay: 160ms;
}

.amenity-row.reveal:nth-child(4) {
  transition-delay: 230ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .partners-track {
    animation: none !important;
    transform: none !important;
  }
}
