/* ============================================================
   Obludzyner & Co. — Spacing, radii, borders, elevation, motion
   ------------------------------------------------------------
   Restrained, architectural. Elevation comes from hairlines and
   quiet shadow — never from gradient or glow.
   ============================================================ */

:root {
  /* — Spacing (4px 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;
  --space-12: 224px;

  /* — Radii (echo the rounded-square mark) ——————————————— */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-card: 14px;
  --radius-icon: 22%;   /* the logo tile proportion           */
  --radius-pill: 999px;

  /* — Borders ———————————————————————————————————————————— */
  --border-hairline: 1px;
  --border-thin:     1px;
  --border-thick:    2px;

  /* — Elevation (quiet; dark-theme) —————————————————————— */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.50);
  --shadow-on-light: 0 18px 48px rgba(0, 16, 64, 0.14);
  --ring-inset: inset 0 0 0 1px var(--border-subtle);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  /* — Motion ————————————————————————————————————————————— */
  --ease-standard: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --duration-fast: 120ms;
  --duration:      200ms;
  --duration-slow: 360ms;

  /* — Layout ————————————————————————————————————————————— */
  --container-max: 1200px;
  --container-text: 680px;   /* editorial measure              */
  --gutter: var(--space-6);
}
