/* ══════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
══════════════════════════════════════════════ */

@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;
  }
}

/* Loading Overlay Animations */
@keyframes ldFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Hanging Lantern Architectural Sway */
@keyframes lanternSway {
  0%, 100% {
    transform: rotate(-0.7deg);
  }
  50% {
    transform: rotate(0.7deg);
  }
}

/* Hero Scroll Hint Animations */
@keyframes hintPulse {
  0%, 100% {
    opacity: 0.25;
    transform: scaleY(0.6);
  }
  55% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes hintChev {
  0%, 100% {
    opacity: 0.2;
    transform: rotate(45deg) translateY(-3px);
  }
  55% {
    opacity: 0.8;
    transform: rotate(45deg) translateY(3px);
  }
}
