@media (prefers-reduced-motion: no-preference) {
  .hero__logo,
  .hero__addr,
  .hero__contact,
  .hero__cta {
    opacity: 0;
    animation: fade-up 500ms ease-out forwards;
  }
  .hero__addr    { animation-delay: 120ms; }
  .hero__contact { animation-delay: 170ms; }
  .hero__cta     { animation-delay: 240ms; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
