/* ============================================================
   Creative Projects — Spacing, radii, borders, shadows, layout
   8px base grid. Architectural restraint: small radii, crisp
   hairline borders, low-spread shadows.
   ============================================================ */

:root {
  /* ---- Spacing scale (8px base) ---- */
  --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;

  /* ---- Radii — kept tight & architectural ---- */
  --radius-none: 0;
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-pill: 999px;

  /* ---- Border widths ---- */
  --border-thin:  1px;
  --border-med:   1.5px;
  --border-thick: 2px;

  /* ---- Shadows — low, cool, restrained ---- */
  --shadow-xs: 0 1px 2px rgba(26, 25, 23, 0.06);
  --shadow-sm: 0 2px 6px rgba(26, 25, 23, 0.07);
  --shadow-md: 0 8px 24px rgba(26, 25, 23, 0.09);
  --shadow-lg: 0 18px 48px rgba(26, 25, 23, 0.12);
  --shadow-ink: 0 24px 60px rgba(26, 25, 23, 0.22);

  /* ---- Layout ---- */
  --container-max: 1240px;
  --container-wide: 1480px;
  --container-pad: clamp(20px, 5vw, 64px);
  --gutter: 24px;

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);   /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);    /* @kind other */
  --dur-fast:   140ms;  /* @kind other */
  --dur-base:   220ms;  /* @kind other */
  --dur-slow:   420ms;  /* @kind other */

  /* ---- Z ---- */
  --z-base: 0;        /* @kind other */
  --z-sticky: 100;    /* @kind other */
  --z-overlay: 800;   /* @kind other */
  --z-modal: 900;     /* @kind other */
  --z-toast: 1000;    /* @kind other */
}
