/* House of Xpression — spacing & measure.
   Editorial layout: generous whitespace, wide outer margins, narrow text measure. */
:root {
  --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: 192px;

  --gutter-page: clamp(24px, 6vw, 96px); /* @kind spacing */
  --section-rhythm: clamp(64px, 10vw, 160px); /* @kind spacing */
  --measure-prose: 62ch; /* @kind other */
  --measure-lead: 46ch; /* @kind other */
  --max-content: 1180px;
  --cover-frame-inset: 20px; /* inset hairline frame on cover sections */
}
