/* ==========================================================================
   Causey Audio - motion
   Kept deliberately small: the layout does the work, motion just softens it.
   ========================================================================== */

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

.fade-up {
    animation: fade-up 520ms ease both;
}

.fade-up-2 { animation-delay: 90ms; }
.fade-up-3 { animation-delay: 180ms; }

/* Anything that opts into motion must respect the OS setting. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
