/* ==========================================================================
   Animationen: Scroll-Reveal (nur transform, nie opacity:0 als Startzustand –
   sonst bleiben Sections in Full-Page-Renderern/Crawlern leer), Tilt, Sticky-Header.
   ========================================================================== */

[data-reveal] {
	transform: translateY(28px);
	transition: transform var(--dur-slow) var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		transform: none !important;
		transition: none !important;
	}
	.matchday__frame,
	.service-card,
	.news-card,
	.btn {
		transition: none !important;
	}
	.matchday__frame:hover,
	.matchday__frame:focus-within {
		transform: none !important;
	}
}
