/* TK Estate — Base styles.
   Global reset, body defaults, headings.
   Depends on: tokens.css */

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1 { font-size: 24px; font-weight: 400; color: var(--gold); }
h2 { font-size: 14px; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }
h3 { font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }

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

code, pre { font-family: var(--font-mono); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }
