/* ============================================================
   Finca Soluna — Spacing, radius, shadow & motion tokens
   The brand favours generous, airy whitespace and soft,
   organic rounding echoing the circular logo forms.
   ============================================================ */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-2:  0.125rem;  /* 2  */
  --space-4:  0.25rem;   /* 4  */
  --space-8:  0.5rem;    /* 8  */
  --space-12: 0.75rem;   /* 12 */
  --space-16: 1rem;      /* 16 */
  --space-24: 1.5rem;    /* 24 */
  --space-32: 2rem;      /* 32 */
  --space-48: 3rem;      /* 48 */
  --space-64: 4rem;      /* 64 */
  --space-96: 6rem;      /* 96 */
  --space-128: 8rem;     /* 128 */

  /* ---- Radius (soft, organic) ---- */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-pill: 999px;   /* capsule buttons & tags */
  --radius-circle: 50%;   /* logo-form circles      */

  /* ---- Shadows (warm-tinted, gentle) ---- */
  --shadow-sm:  0 1px 2px rgba(84, 102, 43, 0.06),
                0 1px 3px rgba(47, 49, 21, 0.05);
  --shadow-md:  0 4px 12px rgba(84, 102, 43, 0.08),
                0 2px 6px rgba(47, 49, 21, 0.05);
  --shadow-lg:  0 16px 40px rgba(84, 102, 43, 0.12),
                0 4px 12px rgba(47, 49, 21, 0.06);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);

  /* ---- Motion (calm, no bounce — soft ease) ---- */
  --ease-soft:  cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-inout: cubic-bezier(0.45, 0, 0.2, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   480ms; /* @kind other */
}
