/* ============================================================
   animations.css — Shared keyframe animations
   ============================================================ */

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion — respect user OS preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
