@keyframes copyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes photoIn {
  from {
    opacity: 0.65;
    transform: scale(1.075);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollCue {
  0% {
    transform: translateY(-12px);
  }
  75%,
  100% {
    transform: translateY(28px);
  }
}
@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
.hero-enter {
  animation: copyIn 0.9s both;
  animation-delay: 0.12s;
}
.hero-enter:nth-child(2) {
  animation-delay: 0.23s;
}
.hero-enter:nth-child(3) {
  animation-delay: 0.34s;
}
.hero-enter:nth-child(4) {
  animation-delay: 0.45s;
}
.hero-enter:nth-child(5) {
  animation-delay: 0.55s;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(23px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
.food-item:nth-child(2) {
  transition-delay: 0.08s;
}
.food-item:nth-child(3) {
  transition-delay: 0.16s;
}
.food-item:nth-child(4) {
  transition-delay: 0.24s;
}
.motion-ready .reveal:focus-within {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-enter,
  .hero-photo > img,
  .motion-ready .reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
