/* ============================================================
   SPACING, LAYOUT & SHAPE
   Generous, gallery-like whitespace. Square corners. Hairlines.
   ============================================================ */
: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: 192px;

  /* page frame */
  --gutter: clamp(20px, 5vw, 80px); /* @kind spacing */
  --frame-inset: clamp(16px, 3vw, 40px); /* @kind spacing */
  --maxw: 1680px; /* @kind spacing */
  --measure: 46ch; /* @kind other */

  /* shape — editorial = no rounding */
  --radius: 0px;
  --radius-pill: 999px; /* reserved, rarely used */

  /* lines */
  --hairline-w: 1px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --dur-fast: 0.2s; /* @kind other */
  --dur: 0.35s; /* @kind other */
  --dur-slow: 0.6s; /* @kind other */
  --slide-interval: 1s; /* @kind other */
  --slide-fade: 0.8s; /* @kind other */
}
