/* ============================================================
   02 — BASE / RESET
   Global element defaults. No layout or component rules here.
   ============================================================ */

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight:300;
  line-height:1.6;
  overflow-x:hidden;
  cursor: none; /* replaced by the custom cursor in 03-cursor.css */
}

::selection{ background: var(--gold-dim); color:#fff; }

a{ color:inherit; text-decoration:none; }

/* Fallback: real pointer restored on touch devices — see 06-responsive.css */

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