:root {
  --bg: #efe7d8;
  --surface: #fbf8f1;
  --surface-alt: #fff;
  --text: #1d1e19;
  --text-2: #3a3c33;
  --text-3: #5a5c51;
  --text-muted: #7a7c71;
  --text-faint: #9a9c8f;
  --heading: #143026;
  --accent: #1f4d3a;
  --accent-hover: #143026;
  --gold-label: #946a26;
  --gold-muted: #8a7a55;
  --border: rgba(29,30,25,.1);
  --border-mid: rgba(29,30,25,.12);
  --border-input: rgba(29,30,25,.18);
  --border-strong: rgba(29,30,25,.22);
  --header-bg: rgba(251,248,241,.92);
  --header-border: rgba(29,30,25,.12);
  --green-tint: rgba(31,77,58,.06);
  --green-tint-strong: rgba(31,77,58,.1);
  --green-tint-border: rgba(31,77,58,.18);
  --overlay: rgba(29,30,25,.07);
  --focus-ring: #1f4d3a;
}

body {
  background: var(--bg);
  color: var(--text);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #15120f;
    --surface: #201d18;
    --surface-alt: #2a2621;
    --text: #e4dfd6;
    --text-2: #c0bbb2;
    --text-3: #96918a;
    --text-muted: #706b62;
    --text-faint: #565148;
    --heading: #72b094;
    --accent: #55a882;
    --accent-hover: #489a74;
    --gold-label: #c49a46;
    --gold-muted: #a08a65;
    --border: rgba(245,240,230,.08);
    --border-mid: rgba(245,240,230,.1);
    --border-input: rgba(245,240,230,.12);
    --border-strong: rgba(245,240,230,.16);
    --header-bg: rgba(21,18,15,.92);
    --header-border: rgba(245,240,230,.1);
    --green-tint: rgba(85,168,130,.06);
    --green-tint-strong: rgba(85,168,130,.08);
    --green-tint-border: rgba(85,168,130,.15);
    --overlay: rgba(245,240,230,.05);
    --focus-ring: #55a882;
  }
}

:root[data-theme="dark"] {
  --bg: #15120f;
  --surface: #201d18;
  --surface-alt: #2a2621;
  --text: #e4dfd6;
  --text-2: #c0bbb2;
  --text-3: #96918a;
  --text-muted: #706b62;
  --text-faint: #565148;
  --heading: #72b094;
  --accent: #55a882;
  --accent-hover: #489a74;
  --gold-label: #c49a46;
  --gold-muted: #a08a65;
  --border: rgba(245,240,230,.08);
  --border-mid: rgba(245,240,230,.1);
  --border-input: rgba(245,240,230,.12);
  --border-strong: rgba(245,240,230,.16);
  --header-bg: rgba(21,18,15,.92);
  --header-border: rgba(245,240,230,.1);
  --green-tint: rgba(85,168,130,.06);
  --green-tint-strong: rgba(85,168,130,.08);
  --green-tint-border: rgba(85,168,130,.15);
  --overlay: rgba(245,240,230,.05);
  --focus-ring: #55a882;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) img:not([src*="logo"]) { filter: brightness(.92) contrast(1.04); }
  :root:not([data-theme="light"]) svg[stroke="#1f4d3a"] { stroke: var(--accent); }
  :root:not([data-theme="light"]) svg[stroke="#946a26"] { stroke: var(--gold-label); }
}
:root[data-theme="dark"] img:not([src*="logo"]) { filter: brightness(.92) contrast(1.04); }
:root[data-theme="dark"] svg[stroke="#1f4d3a"] { stroke: var(--accent); }
:root[data-theme="dark"] svg[stroke="#946a26"] { stroke: var(--gold-label); }
