@keyframes hero-copy-arrive {
  from {
    clip-path: inset(0 0 14% 0);
    filter: blur(0.16rem);
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    clip-path: inset(0);
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

html[data-ready="true"] .hero__copy,
html[data-ready="true"] .package-detail-hero__copy {
  animation: hero-copy-arrive 720ms var(--ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
  }
}
