/* Theme: Deep claret (dining) */
:root {
  color-scheme: light dark;
  --bg: #fbf6f6;
  --surface: #ffffff;
  --text: #241417;
  --muted: #6f545a;
  --border: #e8d8da;
  --accent: #7d2436;
  --accent-contrast: #ffffff;
  --heading-font: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-width: 68rem;
  --radius: 14px;
  --space: clamp(1rem, 2.5vw, 2rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #170f11;
    --surface: #201619;
    --text: #f5eaec;
    --muted: #c2a3aa;
    --border: #352529;
    --accent: #d9788c;
    --accent-contrast: #0d0d0d;
  }
}

[data-theme="dark"] {
  --bg: #170f11;
  --surface: #201619;
  --text: #f5eaec;
  --muted: #c2a3aa;
  --border: #352529;
  --accent: #d9788c;
  --accent-contrast: #0d0d0d;
}

[data-theme="light"] {
  --bg: #fbf6f6;
  --surface: #ffffff;
  --text: #241417;
  --muted: #6f545a;
  --border: #e8d8da;
  --accent: #7d2436;
  --accent-contrast: #ffffff;
}
