/* Words are wrapped by Splitting in .word spans inside the heading. */
[data-animation="text-reveal"] .word {
	display: inline-block;
	transform: translateY(120%);
	clip-path: inset(0 0 -0.15em 0);
	transition: transform .6s cubic-bezier(0.65, 0, 0.35, 1);
	will-change: transform;
}
[data-animation="text-reveal"].is-revealed .word { transform: translateY(0); }
/* Before JS/Splitting runs, ensure text is visible (no flash of hidden content). */
.no-js [data-animation="text-reveal"] .word,
[data-animation="text-reveal"]:not(.splitting) { transform: none; }

/* Respect reduced-motion: show headings in their final state, no slide-in. */
@media (prefers-reduced-motion: reduce) {
	[data-animation="text-reveal"] .word { transform: none !important; transition: none !important; }
}
