/* Studio 77 — Spacing, radius, borders, shadow
   4px base unit. Lean on the larger values — generous negative
   space is part of the brand. Corners stay crisp (4px). */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* ---- Radius — crisp corners ---- */
  --radius-sm:  2px;
  --radius:     4px;   /* default on most surfaces */
  --radius-lg:  8px;
  --radius-pill: 999px;

  /* ---- Borders ---- */
  --border-width: 1px;  /* 1px hairline rules */

  /* ---- Layout ---- */
  --grid-columns: 12; /* @kind other */
  --grid-gutter:  24px;
  --section-padding: 96px;  /* calm desktop section padding */
  --container-max:   1200px;

  /* ---- Shadow — used sparingly; softness comes from color & type ---- */
  --shadow-sm: 0 1px 2px rgba(62, 43, 30, 0.06);
  --shadow-md: 0 4px 16px rgba(62, 43, 30, 0.08);
  --shadow-lg: 0 12px 40px rgba(62, 43, 30, 0.12);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration:      200ms; /* @kind other */
  --duration-slow: 360ms; /* @kind other */
}
