/* HPS Oyster — Spacing & layout tokens (4px base grid) */

:root {
  --space-0:   0px;
  --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;

  /* ---- Container widths ---- */
  --container-sm:  640px;   /* @kind spacing */
  --container-md:  860px;   /* @kind spacing */
  --container-lg:  1120px;  /* @kind spacing */
  --container-xl:  1280px;  /* @kind spacing */

  /* ---- Section rhythm ---- */
  --section-pad-y: var(--space-24);
  --gutter:        var(--space-6);

  /* ---- Z-index ---- */
  --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 */
}
