/*
 * Warsmith — Forge-Glass design tokens (shared source of truth).
 * Mirrored by the Anvil client; spec in anvil/docs/design/warsmith-design-system.md.
 * A per-deployment rebrand overrides only the accent + art tokens.
 */
:root {
  /* Base surface + ink */
  --bg: #0e0f13; /* page background (near-black, slightly warm) */
  --ink: #edeae2; /* primary text (warm off-white) */
  --ink-muted: #a7a39a; /* secondary text */

  /* Glass material */
  --glass-bg: rgba(18, 20, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-blur: 18px;

  /* Accent — gold / ember (the ONLY accent hue) */
  --accent: #c9a24b; /* actions, links, highlights, progress fill */
  --accent-strong: #e6c173; /* hover / brighter highlight */
  --accent-glow: rgba(201, 162, 75, 0.6); /* outer glow for CTAs */
  --on-accent: #000; /* text/icon color on top of the gold accent (buttons) */

  /* Radii + shadow */
  --radius-window: 16px;
  --radius-panel: 14px;
  --radius-btn: 10px;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.45);

  /* Type */
  --font-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Spacing scale — 4px base */
  --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;
}
