/* a11y.css — the motion/a11y floor (QUALITY-FOLD-P0 P6). Emitted by C24 for EVERY build so the
   floor is structural: C25's motion.css layers the signature moment ON TOP of this, never instead
   of it. C27's reduced-motion / focus-keyboard lint rules FAIL a build without these. */
:focus-visible { outline: 3px solid var(--accent, #2B2723); outline-offset: 3px; }
/* COGIFY-R1 (D15 landmark-contract): the skip-link — off-screen until focused, first tab stop. */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; padding: .6rem 1rem;
  background: var(--accent, #2B2723); color: #fff; text-decoration: none; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
