/* Subtle scroll parallax for the full-bleed tea-leaf background.
   The individual `translate` property composes with the existing Ken Burns
   transform instead of replacing it. */
[data-rq-parallax-background] {
  --rq-parallax-offset: 0px;
  translate: 0 var(--rq-parallax-offset);
  will-change: transform, translate;
}

@media (prefers-reduced-motion: reduce) {
  [data-rq-parallax-background] {
    --rq-parallax-offset: 0px !important;
    translate: none !important;
    will-change: auto;
  }
}
