/*
 * T&L Global Supply — animations.
 * Extracted from the original site so scroll/reveal motion is preserved exactly.
 */

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-up {
	animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	.animate-fade-up {
		animation: none;
	}
}
