/* Smooth scrolling without JavaScript */
html { scroll-behavior: smooth; }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
}

/* Anchor offset so targets are visible below a header (adjust value as needed) */
section[id] { scroll-margin-top: 80px; }
