:root {
  --bg: #faf8f3;
  --fg: #1a2e1d;
  --accent: #b8860b;
  --accent-light: rgba(184, 134, 11, 0.12);
  --surface: #faf8f3;
  --border: rgba(38, 74, 50, 0.12);
  --text-secondary: #264a32;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(184, 134, 11, 0.2);
  color: #1a2e1d;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #faf8f3;
}
::-webkit-scrollbar-thumb {
  background: rgba(38, 74, 50, 0.2);
  border-radius: 3px;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
