/* =========================================================================
   Purple Pup Plumbing — Animations
   Always honor prefers-reduced-motion (spec §8).
   ========================================================================= */

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

@keyframes pup-tail-wag {
	0%, 100% { transform: rotate(-1.5deg); }
	50%      { transform: rotate(1.5deg); }
}

.pup-reveal {
	animation: pup-fade-up var(--dur-reveal, 600ms) var(--ease-out, cubic-bezier(0.2, 0.8, 0.2, 1)) both;
}

.pup-hero__mascot img {
	transform-origin: 50% 80%;
	animation: pup-tail-wag 3s ease-in-out infinite;
}

@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;
	}
	.pup-hero__mascot img { animation: none !important; }
}
