/* ----------------------------------------------------------------------------
   Nick Spinelli — Spacing & Layout
   8px-based rhythm with a few finer steps. Generous whitespace is intentional.
---------------------------------------------------------------------------- */
:root {
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;
  --space-11: 160px;

  /* Section rhythm */
  --section-y:   clamp(64px, 10vw, 160px); /* @kind spacing */
  --gutter:      clamp(20px, 5vw, 64px); /* @kind spacing */
  --container:   1200px; /* @kind spacing */
  --container-narrow: 760px; /* @kind spacing */
}
