/* ───────────────────────────────────────────────────────────
   SPACING · RADII · SHADOWS · MOTION
   Calm, structured. Generous negative space. Quiet shadows.
   "Calma que impacta" — nothing bounces, everything settles.
   ─────────────────────────────────────────────────────────── */
:root {
  /* ---- Spacing scale (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;

  /* ---- Radii — restrained. The mark is sharp; UI is gently softened ---- */
  --radius-none: 0;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   22px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* ---- Borders ---- */
  --border-w:        1px; /* @kind other */
  --border-w-strong: 1.5px; /* @kind other */

  /* ---- Shadows — warm-tinted, low, diffuse. Never gray/blue ---- */
  --shadow-xs: 0 1px 2px rgba(38, 37, 43, 0.06);
  --shadow-sm: 0 2px 8px rgba(38, 37, 43, 0.07);
  --shadow-md: 0 8px 24px rgba(38, 37, 43, 0.10);
  --shadow-lg: 0 18px 48px rgba(38, 37, 43, 0.14);
  --shadow-gold: 0 8px 28px rgba(179, 153, 82, 0.28);

  /* ---- Layout ---- */
  --container:    1200px;
  --container-sm: 760px;
  --gutter:       var(--space-6);

  /* ---- Motion — paused, no bounce. Fades and gentle settles ---- */
  --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:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */
}
