:root {
  --color-bg: #121212;
  --color-white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.15);
  --font-family-main: 'Montserrat', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-family-main);
  background-color: var(--color-bg);
  color: var(--color-white);
  scroll-behavior: smooth;
}

/* ========== Global smooth scroll & anchor offset for sticky header ========== */
html { scroll-behavior: smooth; }
:where(section[id], [data-anchor]) { scroll-margin-top: clamp(64px, 8vw, 88px); }
