/* 09-animations.css — subtle motion only */
@keyframes heroKenBurns{
  from{ transform: scale(1.04) translate3d(0,0,0); }
  to{ transform: scale(1.11) translate3d(0,0,0); }
}

@keyframes floatGlow{
  from{ transform: translateY(0); }
  to{ transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
