/* ============================================================
   Chus Sanz &Co. — Spacing, radius, shadow, motion, layout
   ------------------------------------------------------------
   The brand is airy and editorial: generous whitespace, large
   section padding, restrained radii and very soft shadows.
   ============================================================ */

:root {
  /* ---- Spacing (4px base, generous editorial rhythm) ---- */
  --space-1: 0.25rem;   /* 4 */
  --space-2: 0.5rem;    /* 8 */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */
  --space-10: 8rem;     /* 128 — section breathing room */

  /* ---- Radius (soft, restrained — not pill-y) ---- */
  --radius-xs: 4px;
  --radius-sm: 7px;
  --radius-md: 12px;    /* default cards */
  --radius-lg: 18px;    /* large panels / images */
  --radius-xl: 28px;
  --radius-pill: 999px; /* tags, eyebrow chips */

  /* ---- Shadows (very soft, warm-cast, low contrast) ---- */
  --shadow-xs: 0 1px 2px rgba(11,23,32,0.04);
  --shadow-sm: 0 2px 10px rgba(11,23,32,0.05);
  --shadow-md: 0 10px 30px rgba(11,23,32,0.07);
  --shadow-lg: 0 24px 60px rgba(11,23,32,0.10);
  --shadow-ink: 0 24px 60px rgba(6,14,21,0.35);   /* on dark sections */

  /* ---- Motion (calm, no bounce — confident ease) ---- */
  --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: 0.14s;   /* @kind other */
  --dur-base: 0.24s;   /* @kind other */
  --dur-slow: 0.5s;    /* @kind other */

  /* ---- Layout ---- */
  --container: 1180px;          /* @kind other */
  --container-narrow: 760px;    /* @kind other */
  --gutter: var(--space-6);     /* @kind other */
}
