/* ==========================================================
   FADE UP REVEAL
   Simple bottom-to-top fade-in for components.
   Add .fur-ready to any element that will use this reveal.

   Usage:
     FadeUpReveal.play(element, { duration: 0.6, distance: 40 })
     FadeUpReveal.reset(element)
   ========================================================== */

/* Hidden until reveal triggers */
.fur-ready {
    opacity: 0;
    transform: translateY(40px);
}
