/* ============================================================
   ANIMATIONS.CSS
   The only motion on the site is the 250ms page fade on the
   main content wrapper. Suppressed entirely when the visitor
   prefers reduced motion; content is fully visible without
   JavaScript.
   ============================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  main {
    animation: fadeIn 0.25s ease-out;
  }
}
