/* ============================================================
   theautomatedfirm — Spacing, radius, shadow, layout tokens
   ============================================================ */

:root {
  /* Spacing scale (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  2.5rem;
  --space-8:  3rem;
  --space-9:  4rem;
  --space-10: 5rem;
  --space-12: 7rem;

  /* Radii — restrained. Confident square-ish corners, never pill-soft. */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 999px;

  /* Borders */
  --border-hairline: 1px solid var(--line-hairline);
  --border-strong:   1.5px solid var(--line-strong);

  /* Shadows — soft, warm-tinted, low. Proof-over-polish: minimal lift. */
  --shadow-sm:  0 1px 2px rgba(46, 33, 24, 0.07);
  --shadow-md:  0 4px 16px rgba(46, 33, 24, 0.10);
  --shadow-lg:  0 18px 48px rgba(28, 20, 13, 0.18);
  --shadow-ember: 0 8px 24px rgba(232, 98, 42, 0.28);

  /* Layout */
  --container:     1200px;
  --container-narrow: 760px;
  --gutter:        clamp(1.25rem, 5vw, 4rem); /* @kind spacing */

  /* Motion — quick, precise, no bounce */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast:  120ms; /* @kind other */
  --dur-base:  200ms; /* @kind other */
  --dur-slow:  360ms; /* @kind other */
}
