/* ===========================================================================
   Baltic Dental — Motion tokens
   Calm, clinical. Fades + small lifts. No bounce, no overshoot.
   =========================================================================== */

:root {
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);  /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);  /* @kind other */

  --dur-fast:  180ms;  /* @kind other */
  --dur-base:  260ms;  /* @kind other */
  --dur-slow:  480ms;  /* @kind other */
  --dur-xslow: 800ms;  /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;  /* @kind other */
    --dur-base: 0ms;  /* @kind other */
    --dur-slow: 0ms;  /* @kind other */
    --dur-xslow: 0ms;  /* @kind other */
  }
}
