/* ===========================================================================
   Nó Ateliê — Spacing, radii, shadows, layout
   8px rhythm. Gentle radii (solid, grounded). Soft warm shadows used sparingly.
   =========================================================================== */

:root {
  /* Spacing scale (4px base) */
  --space-0:  0;
  --space-1:  0.25rem;  /* 4  */
  --space-2:  0.5rem;   /* 8  */
  --space-3:  0.75rem;  /* 12 */
  --space-4:  1rem;     /* 16 */
  --space-5:  1.5rem;   /* 24 */
  --space-6:  2rem;     /* 32 */
  --space-7:  3rem;     /* 48 */
  --space-8:  4rem;     /* 64 */
  --space-9:  6rem;     /* 96 */
  --space-10: 8rem;     /* 128 */

  /* Radii — solid, gently softened (not pill-y, not sharp) */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  /* Shadows — warm graphite tint, low and diffuse. Craft = restraint. */
  --shadow-xs: 0 1px 2px rgba(46, 45, 49, 0.05);
  --shadow-sm: 0 2px 8px rgba(46, 45, 49, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 45, 49, 0.08);
  --shadow-lg: 0 18px 48px rgba(46, 45, 49, 0.12);

  /* Borders */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
  --gutter: var(--space-5);

  /* Motion — calm, hand-paced. No bounce. */
  --ease-standard: cubic-bezier(0.32, 0.08, 0.24, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 0.84, 0.34, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
