/* ============================================
   DESKTOP STICKY HEADER — REVEAL ON SCROLL-UP ONLY
   Companion to assets/js/desktop-sticky-header.js.

   The RealHomes "modern" theme adds `.sticked` to `.rh_mod_sticky_header`
   once the page is scrolled past a threshold, regardless of direction. Our
   JS layers `.rt-sticky-scrolldown` on top while scrolling DOWN; when both
   classes are present we slide the bar back out of view so it only appears
   on scroll-up. Desktop only (theme sticky activates above 1139px). The base
   `.rh_mod_sticky_header` already has `transition: all .3s`, so the hide and
   reveal animate smoothly.
   ============================================ */
@media (min-width: 1140px) {
  .rh_mod_sticky_header.sticked.rt-sticky-scrolldown {
    opacity: 0 !important;
    transform: translateY(-100%) !important;
    pointer-events: none !important;
  }
}
