/*
 * Motion baseline — Rumi Silk Road
 *
 * No animations exist yet (Site shell introduces the hero draw-in, thread
 * progress bar, and scroll-triggered reveals). This stub exists so that
 * baseline is already in place — future motion rules never ship without
 * a working prefers-reduced-motion fallback, rather than retrofitting it.
 *
 * Per master spec §4: all motion respects prefers-reduced-motion — content
 * appears instantly, fully visible, if the visitor has that preference set.
 */

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