html {
  scroll-behavior: smooth;
}

body {
  animation: presentation-page-fade 220ms ease-out both;
}

.hero-home-media img {
  animation: presentation-soft-fade 720ms ease-out 100ms both;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-actions {
  opacity: 0;
  animation: presentation-soft-rise 560ms ease-out both;
}

.hero-copy .eyebrow {
  animation-delay: 140ms;
}

.hero-copy h1 {
  animation-delay: 230ms;
}

.hero-copy .hero-lead {
  animation-delay: 320ms;
}

.hero-actions {
  animation-delay: 410ms;
}

@keyframes presentation-page-fade {
  from {
    opacity: .88;
  }

  to {
    opacity: 1;
  }
}

@keyframes presentation-soft-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes presentation-soft-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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

  body,
  .hero-home-media img,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
