/*-- -------------------------- -->
<---     Scroll Animations       -->
<--- -------------------------- -*/

/* Plain fade-in, triggered once as each section enters the viewport
   (js/scroll-animations.js adds .cs-in-view via IntersectionObserver).
   The hero is left out since it's already visible on page load. */
[data-animate="fade"] {
  opacity: 0;
  transition: opacity 1s ease-out;
  will-change: opacity;
}
[data-animate="fade"].cs-in-view {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate="fade"] {
    transition: none;
    opacity: 1;
  }
}
