/* KinkCode / KinkCodex — Canonical Design Tokens
   Single source of truth for the site palette and type stacks.
   Long names = KinkCodex design system. Short names = legacy quiz/landing aliases.
   Change a value HERE, never in page-local :root blocks. */

:root {
  /* Surfaces */
  --bk: #0a0a0a;
  --text: #f5f0eb;
  --muted: #a0a0a0;
  --dim: #555555;
  --border: #2a2a2a;
  --border-s: #242424;

  /* Brand */
  --red: #c0392b;
  --red-d: #96281b;
  --red-dim: rgba(192, 57, 43, 0.10);
  --gold: #c9a84c;
  --gold-l: #e2c47a;
  --gold-d: rgba(201, 168, 76, 0.45);
  --gold-dim: rgba(201, 168, 76, 0.08);

  /* Type */
  --sans: 'DM Sans', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'DM Mono', ui-monospace, monospace;

  /* Legacy short aliases (quiz / landing / privacy) */
  --wh: var(--text);
  --mu: var(--muted);
  --re: var(--red);
  --rd: var(--red-d);
  --rdim: var(--red-dim);
  --go: var(--gold);
  --gl: var(--gold-l);
  --gdim: var(--gold-dim);
  --br: var(--border-s);
  --sf: var(--serif);
  --ss: var(--sans);
}
