/* ==========================================================================
   Trovva — Spacing, radii, borders, shadows, motion
   The system is flat and editorial: minimal radii, hairline rules,
   almost no shadow. Structure comes from type, whitespace, and rules.
   ========================================================================== */

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

  /* --- Radii — kept small; Trovva is square-edged & precise ------------ */
  --radius-none: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;   /* only for capsules / chips */

  /* --- Borders --------------------------------------------------------- */
  --border-width: 1px;
  --border-width-strong: 1.5px;

  /* --- Shadows — used very sparingly ----------------------------------- */
  --shadow-none: none;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-pop: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* --- Motion ---------------------------------------------------------- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */

  /* --- Layout ---------------------------------------------------------- */
  --container-max: 1200px;
  --gutter: var(--space-6);
}
