:root {
  --bg: #FAF6F0;
  --fg: #183028;
  --accent: #D4A843;
  --accent-dark: #8B6914;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(24,48,40,0.2); border-radius: 3px; }

::selection { background: rgba(212, 168, 67, 0.25); }
