/* Original Association home Banner cadence, inside the existing fixed masks.
   Only the exposed menu photograph runs; menu layout and outlines stay still. */
.mega .instrument > picture {
  transform-origin: 50% 50%;
  transform: scale(1.16) translate(-4%, -3%);
  animation: ayaInstrumentPan 22s ease-in-out infinite alternate;
  animation-play-state: paused;
  will-change: auto;
}
.mega .instrument[data-instrument-active="true"] > picture {
  animation-play-state: running;
  will-change: transform;
}
@keyframes ayaInstrumentPan {
  0% { transform: scale(1.16) translate(-4%, -3%); }
  30% { transform: scale(1.16) translate(3%, -5%); }
  65% { transform: scale(1.16) translate(4%, 4%); }
  100% { transform: scale(1.16) translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .mega .instrument > picture { animation: none; transform: none; will-change: auto; }
}
@media print {
  .mega .instrument > picture { animation: none; transform: none; will-change: auto; }
}
