/* Ace of Fades — design tokens (single source of truth) */
:root {
  /* palette: warm charcoal + cream + brass, red kept for the suit mark only */
  --color-ink: #16130f;
  --color-surface: #201c16;
  --color-surface-raised: #2a251d;
  --color-line: #3d362b;
  --color-cream: #f2ebdc;
  --color-cream-dim: #c9bfa9;
  --color-brass: #d8a834;
  --color-brass-deep: #b38a1f;
  --color-red: #c0472f;

  /* type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;

  /* 4px spacing grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  --radius: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --measure: 34rem;
  --container-max: 78rem;
  --header-h: 72px;

  /* motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur: 280ms;
  --dur-slow: 600ms;

  /* z-scale */
  --z-header: 10;
}
