/* ============================================================
   hop & cotton — Spacing, radii, shadows, motion
   Soft, generous, unhurried — matched to the brand's gentle feel.
   ============================================================ */
:root {
  /* ---- Spacing scale (4px base) ----------------------------- */
  --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:   3rem;      /* 48 */
  --space-8:   4rem;      /* 64 */
  --space-9:   6rem;      /* 96 */
  --space-10:  8rem;      /* 128 */

  /* Section rhythm */
  --section-y:        clamp(3.5rem, 2rem + 6vw, 7rem);   /* @kind spacing */
  --container-max:    1200px;
  --container-narrow: 760px;
  --gutter:           clamp(1.25rem, 0.5rem + 3vw, 3rem);   /* @kind spacing */

  /* ---- Corner radii — soft & rounded ------------------------ */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* ---- Shadows — diffuse, low-contrast, warm ---------------- */
  --shadow-xs:  0 1px 2px rgba(58, 58, 61, 0.06);
  --shadow-sm:  0 2px 8px rgba(58, 58, 61, 0.06);
  --shadow-md:  0 8px 24px rgba(58, 58, 61, 0.08);
  --shadow-lg:  0 18px 48px rgba(58, 58, 61, 0.10);
  --shadow-rose: 0 12px 32px rgba(240, 174, 173, 0.35);

  /* ---- Motion — calm, eased, never bouncy ------------------- */
  --ease-soft:   cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);     /* @kind other */
  --dur-fast:    140ms;   /* @kind other */
  --dur-base:    240ms;   /* @kind other */
  --dur-slow:    420ms;   /* @kind other */

  /* ---- Layering --------------------------------------------- */
  --z-base:    0;     /* @kind other */
  --z-raised:  10;    /* @kind other */
  --z-sticky:  100;   /* @kind other */
  --z-overlay: 1000;  /* @kind other */
  --z-toast:   1100;  /* @kind other */
}
