/* Scroll-reveal animation — only active when JS + motion are allowed.
   Without JS the content stays fully visible (progressive enhancement). */
.js-anim [data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.js-anim [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-anim [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
