/* Design-Tokens.
   Light ist die Basis auf :root. Dark überschreibt nur die Farbwerte —
   einmal für die Systemeinstellung, einmal für die manuelle Wahl. */

:root {
  /* Farben — Light */
  --bg: #faf8f4;
  --bg-tint: #f3efe7;
  --surface: #fffefb;
  --fg: #1a1814;
  --fg-muted: #6b6558;
  --border: #e3ddd0;
  --border-strong: #cfc7b6;
  --accent: #b8420b;
  --accent-hover: #963608;
  --accent-soft: #fbeade;
  --accent-fg: #ffffff;
  --focus: #b8420b;

  /* Typografie */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas,
    monospace;
  --text-xs: 0.78rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.45rem;
  --text-2xl: 2rem;
  --text-3xl: 2.6rem;
  --leading: 1.65;

  /* Abstände */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Formen */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgb(26 24 20 / 0.04), 0 4px 12px rgb(26 24 20 / 0.05);
  --shadow-lift: 0 2px 4px rgb(26 24 20 / 0.06), 0 10px 24px rgb(26 24 20 / 0.09);

  /* Layout */
  --container: 68rem;
  --header-height: 4rem;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #141310;
    --bg-tint: #1b1a15;
    --surface: #1f1e19;
    --fg: #ece7dc;
    --fg-muted: #9b9484;
    --border: #302e27;
    --border-strong: #46433a;
    --accent: #f97316;
    --accent-hover: #fb923c;
    --accent-soft: #2c1d12;
    --accent-fg: #1a1005;
    --focus: #f97316;
    --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 4px 12px rgb(0 0 0 / 0.28);
    --shadow-lift: 0 2px 4px rgb(0 0 0 / 0.35), 0 10px 24px rgb(0 0 0 / 0.4);
  }
}

:root[data-theme="dark"] {
  --bg: #141310;
  --bg-tint: #1b1a15;
  --surface: #1f1e19;
  --fg: #ece7dc;
  --fg-muted: #9b9484;
  --border: #302e27;
  --border-strong: #46433a;
  --accent: #f97316;
  --accent-hover: #fb923c;
  --accent-soft: #2c1d12;
  --accent-fg: #1a1005;
  --focus: #f97316;
  --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 4px 12px rgb(0 0 0 / 0.28);
  --shadow-lift: 0 2px 4px rgb(0 0 0 / 0.35), 0 10px 24px rgb(0 0 0 / 0.4);
}
