/* ============================================================
   LAEZ · Spacing, radii, shadow, motion
   The brand is built on generous air and quiet edges. Shadows are
   used almost never — structure comes from hairlines and space.
   Corners are mostly square; the one soft shape is the monogram
   squircle, echoed by the pill button.
   ============================================================ */
:root {
  /* ---------- Spacing (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;
  --space-40: 160px;

  /* ---------- Layout ---------- */
  --container-max: 1320px;  /* @kind spacing */
  --container-text: 680px;  /* @kind spacing */
  --gutter: clamp(20px, 5vw, 64px);     /* @kind spacing */
  --section-y: clamp(64px, 9vw, 128px); /* @kind spacing */

  /* ---------- Radii ----------
     Square by default; pill for actions; squircle for the mark. */
  --radius-none: 0;
  --radius-xs:  2px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-pill: 999px;
  --radius-squircle: 28%;  /* monogram tile corner */

  /* ---------- Borders ---------- */
  --border-hairline: 1px;
  --border-regular:  1.5px;
  --border-bold:     2px;

  /* ---------- Shadow (restrained) ---------- */
  --shadow-none: none;
  --shadow-xs: 0 1px 2px rgba(31, 29, 26, 0.05);
  --shadow-sm: 0 2px 8px rgba(31, 29, 26, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 29, 26, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 29, 26, 0.12);
  /* Image "lift" used on product cards in carousels */
  --shadow-product: 0 18px 40px -20px rgba(31, 29, 26, 0.35);

  /* ---------- Motion ----------
     Calm and considered. Ease-out for entrances, no bounce. */
  --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 */
  --duration-fast: 140ms;       /* @kind other */
  --duration-base: 240ms;       /* @kind other */
  --duration-slow: 480ms;       /* @kind other */
  --duration-marquee: 28s;      /* @kind other */

  /* ---------- Z-index ---------- */
  --z-base: 1;        /* @kind other */
  --z-raised: 10;     /* @kind other */
  --z-sticky: 100;    /* @kind other */
  --z-drawer: 1000;   /* @kind other */
  --z-overlay: 1100;  /* @kind other */
  --z-toast: 1200;    /* @kind other */
}
