/**
 * Global motion preference fallback.
 *
 * This is loaded on every public page so browser-level reduced-motion
 * preferences remain effective beyond the home enhancement.
 */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto !important;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
