/* ============================================================
   GateHouse — Spacing & layout tokens
   ------------------------------------------------------------
   4px base grid. Dense by default — this is an instrument,
   not a brochure.
   ============================================================ */

:root {
  --space-0:   0;
  --space-px:  1px;
  --space-0_5: 2px;
  --space-1:   4px;
  --space-1_5: 6px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-7:   28px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-14:  56px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32:  128px;
  --space-40:  160px;

  /* ---- Container widths ---- */
  --container-sm:   640px;
  --container-md:   880px;
  --container-lg:   1120px;
  --container-xl:   1320px;
  --container-full: 1600px;

  /* ---- Gutters ---- */
  --gutter:       var(--space-6);
  --gutter-tight: var(--space-4);
  --gutter-page:  var(--space-8);

  /* ---- Component sizing ---- */
  --control-h-sm: 30px;
  --control-h-md: 38px;
  --control-h-lg: 46px;

  /* ---- Z-index scale ---- */
  --z-base:    0;    /* @kind other */
  --z-raised:  10;   /* @kind other */
  --z-sticky:  100;  /* @kind other */
  --z-overlay: 1000; /* @kind other */
  --z-modal:   1100; /* @kind other */
  --z-toast:   1200; /* @kind other */
  --z-tooltip: 1300; /* @kind other */
}
