:root {
  --bg: #faf8f2;
  --fg: #2d4a3e;
  --accent: #c8a96e;
  --accent-dark: #a8893d;
  --text-muted: rgba(45, 74, 62, 0.55);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(45, 74, 62, 0.2);
  border-radius: 3px;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}
