/* ============================================================
   THE SKIN CLINIC — Spacing, radius, shadow, motion, layout
   ============================================================ */
:root {
  /* --- Spacing (4px base) --- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* --- Radius — soft, generous; nothing sharp (spa softness) --- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* --- Shadows — low, warm-tinted, diffuse. No hard/black shadows. --- */
  --shadow-xs: 0 1px 2px rgba(46, 58, 50, 0.05);
  --shadow-sm: 0 2px 8px rgba(46, 58, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 58, 50, 0.08);
  --shadow-lg: 0 18px 44px rgba(46, 58, 50, 0.10);
  --shadow-brand: 0 12px 30px rgba(82, 153, 111, 0.22);

  /* --- Motion — calm, gentle; ease-out, no bounce --- */
  --ease-standard: cubic-bezier(0.33, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-normal: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */

  /* --- Layout --- */
  --container: 1200px; /* @kind other */
  --container-narrow: 760px; /* @kind other */
  --header-h: 76px; /* @kind other */
}
