/* === Entrance Animations (shared) === */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.anim--visible {
  opacity: 1;
  transform: translateY(0);
}
