
/* Smooth cross-page scrolling support */
html {
  scroll-behavior: smooth;
}
.scroll-target, section, [id] {
  scroll-margin-top: var(--header-offset, 80px);
}
/* Optional: if your header is fixed, set --header-offset via inline style or here */
:root { --header-offset: 80px; }
