/* Лёгкий drift картинки в hero — 1 из motion-budget */
.hero-visual img,
.hero-drift {
  animation: nb-hero-drift 14s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes nb-hero-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(1.5%, -1.2%, 0) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual img,
  .hero-drift {
    animation: none;
  }
}
