/* Nooshki Services — Spacing, radii, shadows, layout
 * Generous, airy spacing to feel premium and unhurried.
 */
:root {
  /* ---- Spacing scale (4px base grid) ---- */
  --space-0:  0;
  --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:  2.5rem;   /* 40 */
  --space-8:  3rem;     /* 48 */
  --space-9:  4rem;     /* 64 */
  --space-10: 5rem;     /* 80 */
  --space-11: 6.5rem;   /* 104 */
  --space-12: 8rem;     /* 128 */

  /* ---- Radii — soft, rounded, never sharp ---- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* ---- Shadows — warm-tinted, soft, low-contrast ---- */
  --shadow-xs:  0 1px 2px rgba(140, 117, 106, 0.06);
  --shadow-sm:  0 2px 8px rgba(140, 117, 106, 0.08);
  --shadow-md:  0 8px 24px rgba(140, 117, 106, 0.10);
  --shadow-lg:  0 18px 48px rgba(140, 117, 106, 0.14);
  --shadow-xl:  0 30px 80px rgba(111, 91, 81, 0.18);
  --shadow-focus: 0 0 0 3px rgba(217, 169, 136, 0.45);

  /* ---- Layout ---- */
  --container-sm:  640px;
  --container-md:  860px;
  --container-lg:  1140px;
  --container-xl:  1320px;
  --gutter:        var(--space-6);
  --section-y:     var(--space-12);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.33, 0, 0.2, 1); /* @kind other */
  --ease-gentle:   cubic-bezier(0.4, 0, 0.1, 1);  /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
