/* ──────────────────────────────────────────────────────────────
   scroll animation
────────────────────────────────────────────────────────────── */
.animate-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────────
   nav scrolled state
────────────────────────────────────────────────────────────── */
.nav--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
