/* ============================================================
   TAURIST — SPACING & SIZING TOKENS
   4px base grid. Section padding on the marketing site is 112px (desktop).
   ============================================================ */
:root {
  /* Spacing scale (4px base) */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-28: 112px;   /* desktop section gutter */

  /* Radii — read from Figma (buttons 12, cards 16, nav pill 24, full) */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;    /* buttons, inputs */
  --radius-lg: 16px;    /* cards */
  --radius-xl: 24px;    /* nav pill, hero panels */
  --radius-2xl: 32px;
  --radius-full: 999px;

  /* Layout */
  --container-max: 1216px;   /* nav / content max width */
  --container-wide: 1440px;
  --control-h-sm: 36px;
  --control-h-md: 41px;      /* primary marketing button */
  --control-h-lg: 48px;
}
