/* === UTILITIES === */
:where(a, button, .btn, .nav-link):focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: 8px; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .carousel-track { scroll-behavior: auto; }
}

/* Smooth anchor scrolling and safe offset for fixed header */
html { scroll-behavior: smooth; }
section { scroll-margin-top: 96px; }
@media (max-width: 768px) { section { scroll-margin-top: 80px; } }

