/* ==========================================================================
   Base Styles
   Element-level reset and shared typography. No class selectors here.
   Depends on: shared/tokens.css
   ========================================================================== */

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

html {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar { display: none; }
body::-webkit-scrollbar { display: none; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }
