/* ── Hotel reveal animation (staggered windows) ── */
.hotel-reveal .hotel-building { 
    animation: hotelReveal 8s ease infinite; 
}

.hotel-reveal .hotel-window { 
    opacity: 0; 
    animation: hotelReveal 8s ease infinite; 
}

.hotel-reveal .hotel-win-1 { animation-delay: 0.8s; }
.hotel-reveal .hotel-win-2 { animation-delay: 1.4s; }
.hotel-reveal .hotel-win-3 { animation-delay: 2.0s; }
.hotel-reveal .hotel-win-4 { animation-delay: 2.6s; }
.hotel-reveal .hotel-win-5 { animation-delay: 3.2s; }

.hotel-reveal .hotel-h { 
    animation: hotelReveal 8s ease infinite; 
    animation-delay: 3.8s; 
    opacity: 0; 
}