/* Theme: Warm cottage (hospitality) */
:root {
  color-scheme: light dark;
  --bg: #fbf7f2;
  --surface: #ffffff;
  --text: #2b2119;
  --muted: #6d5c4d;
  --border: #e7dbcd;
  --accent: #a9603a;
  --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: #191411;
    --surface: #221b16;
    --text: #f3ebe2;
    --muted: #bda893;
    --border: #3a2e26;
    --accent: #d08a5f;
    --accent-contrast: #0d0d0d;
  }
}

[data-theme="dark"] {
  --bg: #191411;
  --surface: #221b16;
  --text: #f3ebe2;
  --muted: #bda893;
  --border: #3a2e26;
  --accent: #d08a5f;
  --accent-contrast: #0d0d0d;
}

[data-theme="light"] {
  --bg: #fbf7f2;
  --surface: #ffffff;
  --text: #2b2119;
  --muted: #6d5c4d;
  --border: #e7dbcd;
  --accent: #a9603a;
  --accent-contrast: #ffffff;
}
