@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");

:root {
      --primary: #3a5a3a;
      --secondary: #8a6a3a;
      --tertiary: #5a7a9a;
      --light: #f5f4f0;
      --dark: #1a1c18;
      --mid: #6a6860;
      --border: rgba(26,28,24,0.1);
      --font: 'Inter', sans-serif;
      --max: 1160px;
    
  /* Semantic tokens — light mode (default) */
  --bg:            var(--light);
  --bg-surface:    #fff;
  --fg:            var(--dark);
  --fg-muted:      var(--mid);
  --border-subtle: var(--border);
}


/* ─── Dark Mode ─── */
[data-theme="dark"] {
  --bg:            #111412;
  --bg-surface:    #1a1e1a;
  --fg:            #e8e5de;
  --fg-muted:      rgba(255,255,255,0.58);
  --mid:           #8a8880;
  --border-subtle: rgba(255,255,255,0.08);
  --border:        rgba(255,255,255,0.08);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    --bg:            #111412;
    --bg-surface:    #1a1e1a;
    --fg:            #e8e5de;
    --fg-muted:      rgba(255,255,255,0.58);
    --mid:           #8a8880;
    --border-subtle: rgba(255,255,255,0.08);
    --border:        rgba(255,255,255,0.08);
  }
}
