/* ============================================================================
   KIEZLY — DESIGN TOKENS
   ============================================================================
   The entire visual identity lives in this file. A rebrand = editing tokens,
   never component CSS. Keep GROUP colors in sync with CONFIG.GROUP_COLORS
   in js/config.js (map markers are drawn from JS).

   Identity: dark navy + gold, inspired by Berlin U-Bahn signage — deep tunnel
   navy, warm platform-light gold, signage-style uppercase labels.

   Themes: default dark (U-Bahn tunnel). Light mode via [data-theme="light"].
   ========================================================================== */

:root,
[data-theme='dark'] {
  /* --- Palette --- */
  --navy-950: #080d18; /* page background            */
  --navy-900: #0d1526; /* panels, cards              */
  --navy-800: #131d33; /* raised surfaces            */
  --navy-700: #1c2947; /* borders, dividers          */
  --gold-500: #c9a24b; /* brand accent, home pin     */
  --gold-300: #e3c887; /* accent hover, highlights   */
  --ink-100: #eef1f7; /* primary text               */
  --ink-300: #aab4c8; /* secondary text             */
  --ink-500: #8b95a8; /* muted text — ≥4.5:1 on navy-900 for WCAG AA */

  /* --- Category colors (sync with js/config.js GROUP_COLORS) --- */
  --cat-essential: #4fa3d1;
  --cat-lifestyle: #8fd14f;
  --cat-premium: #c9a24b;
  --cat-safety: #d16a4f;

  /* --- Semantic --- */
  --danger: #e06c5f;
  --focus-ring: 0 0 0 3px rgba(201, 162, 75, 0.45);
  --map-filter: none;

  /* --- Type ---
     Display: Archivo (signage-grotesque, U-Bahn plate feel)
     Body:    IBM Plex Sans (neutral, excellent at small data sizes)        */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.5rem;
  --text-2xl: clamp(1.9rem, 4.5vw, 2.9rem);

  /* --- Rhythm --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
}

/* Daylight reading mode — cool paper + slate ink, gold brand kept. */
[data-theme='light'] {
  --navy-950: #e9eef6;
  --navy-900: #f7f9fc;
  --navy-800: #ffffff;
  --navy-700: #c8d0e0;
  --gold-500: #9a7328;
  --gold-300: #7a5a1c;
  --ink-100: #121826;
  --ink-300: #3a4458;
  --ink-500: #5a6578;
  --cat-essential: #2f7eae;
  --cat-lifestyle: #5a9e28;
  --cat-premium: #9a7328;
  --cat-safety: #b84f35;
  --danger: #c4473c;
  --focus-ring: 0 0 0 3px rgba(154, 115, 40, 0.35);
  --shadow-card: 0 8px 28px rgba(18, 24, 38, 0.1);
  --map-filter: none;
}
