/* Entrance and scroll animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.fade-up { animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both; }
.fade-up--2 { animation-delay: 0.12s; }
.fade-up--3 { animation-delay: 0.24s; }
.fade-up--4 { animation-delay: 0.36s; }

/* Revealed on scroll by animations.js */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* No-JS and reduced motion safety: always show content */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
