/* TK Estate — Design tokens.
   Single source of truth for colors, spacing, typography.
   Extracted from public/admin.html :root block. */

:root {
  /* Surfaces */
  --bg: #0e0e0e;
  --surface: #161616;
  --surface2: #1e1e1e;
  --border: #2a2a2a;

  /* Brand */
  --gold: #c9a84c;
  --gold-dim: #8a6f2e;

  /* Text */
  --text: #e8e2d5;
  --text-dim: #7a7060;

  /* Status */
  --green: #4caf50;
  --red: #e05050;
  --orange: #d4a843;
  --blue: #5090c0;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-2xl: 12px;

  /* Typography */
  --font-sans: 'Segoe UI', Tahoma, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Breakpoints (reference only — use via @media) */
  --bp-tablet: 1100px;
  --bp-mobile: 700px;
}
