/* ==========================================================================
   Motion — minimal, calm, purposeful.
   Permitted: button colour-sweep, subtle card lift/border on hover,
   link-underline grow, gentle fade/rise (≤ 8px) on first scroll-in.
   No parallax, glows, looping, or attention-grabbing motion.
   ========================================================================== */

:root {
  --ease:     cubic-bezier(0.2, 0.7, 0.3, 1);  /* @kind other */
  --dur-fast: 150ms;  /* @kind other */
  --dur:      250ms;  /* @kind other */
  --dur-slow: 400ms;  /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
