/* ============================================================
   GetDriver — Spacing, radius, shadow, layout tokens
   4px base grid.
   ============================================================ */
: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-24: 96px;
  --space-32: 128px;

  /* ---- Radius ---- */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;    /* inputs, chips */
  --radius-lg: 16px;    /* cards */
  --radius-xl: 20px;    /* glass booking card */
  --radius-2xl: 28px;   /* large light panels */
  --radius-pill: 999px;
  --radius-full: 50%;

  /* ---- Shadows (cinematic, soft on dark) ---- */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.30);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.40);
  --shadow-lg: 0 18px 50px rgba(0,0,0,0.55);
  --shadow-glass: 0 30px 80px rgba(0,0,0,0.55);
  --shadow-red: 0 10px 30px rgba(225,29,36,0.35);   /* glow under red CTA */
  --shadow-card-light: 0 14px 40px rgba(11,12,15,0.10);

  /* ---- Borders ---- */
  --border-width: 1px; /* @kind other */

  /* ---- Layout ---- */
  --container-max: 1240px; /* @kind other */
  --container-pad: 32px; /* @kind spacing */
  --header-h: 84px; /* @kind other */

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */

  /* ---- Effects ---- */
  --blur-glass: 18px; /* @kind other */
  --overlay-hero: linear-gradient(90deg, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.72) 38%, rgba(5,6,8,0.25) 100%); /* @kind other */
}
