/* Clear lateral travel at a constant scale: no breathing zoom. */
.hero[data-motion-ready] .hero-art img{transform-origin:50% 50%;animation:lealta-hero-travel 10s ease-in-out infinite alternate;animation-play-state:paused}
.hero[data-motion-running] .hero-art img{animation-play-state:running;will-change:transform}
@keyframes lealta-hero-travel{
 from{transform:translate3d(-3%,0,0) scale(1.12)}
 to{transform:translate3d(3%,0,0) scale(1.12)}
}
.hero-motion-toggle{display:inline-flex;align-items:center;gap:8px;margin-top:18px;padding:8px 0;border:0;background:transparent;color:#bfc1c8;font-size:.875rem;cursor:pointer;text-underline-offset:4px}
.hero-motion-toggle:hover{text-decoration:underline;color:#fff}
.hero-motion-toggle:focus-visible{outline:2px solid #ffd000;outline-offset:5px}
.hero-motion-toggle[hidden]{display:none}
@media(max-width:760px){
 .hero[data-motion-ready] .hero-art img{animation-duration:14s;animation-name:lealta-hero-travel-small}
 @keyframes lealta-hero-travel-small{from{transform:translate3d(-2%,0,0) scale(1.08)}to{transform:translate3d(2%,0,0) scale(1.08)}}
}
@media(prefers-reduced-motion:reduce){
 .hero[data-motion-ready] .hero-art img{animation:none;transform:none;will-change:auto}
 .hero-motion-toggle{display:none}
}
