/* Content is always visible; motion never gates access to a section. */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .project-card { animation: enter 450ms ease-out; }
  .button, .language-switcher a { transition: background-color 160ms ease, border-color 160ms ease; }
}

@keyframes enter {
  from { transform: translateY(8px); }
  to { transform: translateY(0); }
}
