.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 75, 53, 0.28);
    box-shadow: 0 18px 46px rgba(23, 33, 29, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
