/* ============================================================
   Rust Truck — Spacing & layout rhythm
   8px base grid with a few half-steps for tight UI.
   ============================================================ */

:root {
  --space-0:   0;
  --space-1:   0.25rem;  /* 4 */
  --space-2:   0.5rem;   /* 8 */
  --space-3:   0.75rem;  /* 12 */
  --space-4:   1rem;     /* 16 */
  --space-5:   1.5rem;   /* 24 */
  --space-6:   2rem;     /* 32 */
  --space-7:   3rem;     /* 48 */
  --space-8:   4rem;     /* 64 */
  --space-9:   6rem;     /* 96 */
  --space-10:  8rem;     /* 128 */

  /* Container widths */
  --container-sm:  640px;
  --container-md:  920px;
  --container-lg:  1180px;
  --container-xl:  1320px;

  /* Section vertical rhythm */
  --section-y:        var(--space-9);
  --section-y-tight:  var(--space-7);

  /* Common gaps */
  --gap-card:   var(--space-5);
  --gap-grid:   var(--space-6);
}
