/* ============================================================
   COFFEE & CIGARETTES — SPACING & LAYOUT TOKENS
   Base unit: 8px. Every spacing value is a multiple of 8.
   No rounded corners. No shadows. Hairline rules only.
   ============================================================ */

:root {
  --unit: 8px;

  --space-0:   0;
  --space-1:   8px;
  --space-2:   16px;
  --space-3:   24px;
  --space-4:   32px;
  --space-5:   40px;
  --space-6:   48px;
  --space-8:   64px;
  --space-10:  80px;
  --space-12:  96px;
  --space-16: 128px;
  --space-20: 160px;
  --space-24: 192px;

  /* Page gutters (mobile -> desktop) */
  --gutter:        clamp(24px, 5vw, 80px); /* @kind spacing */
  --measure:       66ch;   /* editorial column max width */
  --content-max:   1440px;

  /* Rules / borders — hairline, square corners always */
  --rule-thin:   1px;
  --rule-accent-weight: 2px;  /* the #5C7A8C divider line */
  --radius: 0;                /* NEVER rounded            */
}
