@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: #6d4a2e;
      --secondary: #3b6d62;
      --tertiary: #b18a3d;
      --light: #f9f8f4;
      --dark: #1a1715;
      --mid: #6e665c;
      --border: rgba(26,23,21,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:            #12100e;
  --bg-surface:    #1c1916;
  --fg:            #ece8e0;
  --fg-muted:      rgba(255,255,255,0.58);
  --mid:           #9a9488;
  --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:            #12100e;
    --bg-surface:    #1c1916;
    --fg:            #ece8e0;
    --fg-muted:      rgba(255,255,255,0.58);
    --mid:           #9a9488;
    --border-subtle: rgba(255,255,255,0.08);
    --border:        rgba(255,255,255,0.08);
  }
}
