/**
 * Remember — Animations pre-hide (FOUC mitigation)
 *
 * Applicato solo quando html ha class .rmb-js-anim (set immediato in head).
 * Se JS fallisce, gli elementi restano visibili.
 * animations.js rimuove la classe subito dopo aver impostato la from-state GSAP.
 */
html.rmb-js-anim .rmb-hero__name,
html.rmb-js-anim .rmb-hero__title,
html.rmb-js-anim .rmb-qr-hero__title,
html.rmb-js-anim .rmb-login-title,
html.rmb-js-anim body.home .rmb-hero__content .rmb-h1,
html.rmb-js-anim .rmb-hero__dates,
html.rmb-js-anim .rmb-hero__epigrafe,
html.rmb-js-anim .rmb-hero__subtitle,
html.rmb-js-anim .rmb-qr-hero__subtitle,
html.rmb-js-anim .rmb-login-tagline {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    html.rmb-js-anim .rmb-hero__name,
    html.rmb-js-anim .rmb-hero__title,
    html.rmb-js-anim .rmb-qr-hero__title,
    html.rmb-js-anim .rmb-login-title,
    html.rmb-js-anim body.home .rmb-hero__content .rmb-h1,
    html.rmb-js-anim .rmb-hero__dates,
    html.rmb-js-anim .rmb-hero__epigrafe,
    html.rmb-js-anim .rmb-hero__subtitle,
    html.rmb-js-anim .rmb-qr-hero__subtitle,
    html.rmb-js-anim .rmb-login-tagline {
        opacity: 1 !important;
    }
}
