/* ============================================================
   Seaweed — Spacing, radii, shadows, motion
   Radii transcribed from the file: cards use a generous ~22–36px
   round; story tiles 35.88px. Shadows are soft & low (rgba black .25).
   ============================================================ */

:root {
  /* ---- Spacing scale ---- */
  --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;

  /* ---- Radii (from the brand file) ---- */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   23px;   /* color/product cards ≈ 22.65px            */
  --radius-xl:   36px;   /* social story tiles ≈ 35.88px             */
  --radius-pill: 999px;
  --radius-full: 50%;

  /* ---- Hairlines ---- */
  --hairline: 1.5px;

  /* ---- Shadows (soft, maritime, low contrast) ---- */
  --shadow-xs:  0 1px 2px rgba(25,22,23,0.06);
  --shadow-sm:  0 2px 8px rgba(25,22,23,0.08);
  --shadow-md:  0 8px 24px rgba(25,22,23,0.10);
  --shadow-lg:  0 18px 48px rgba(25,22,23,0.14);
  --shadow-card: 0 10px 30px rgba(25,22,23,0.10);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast:   140ms; /* @kind other */
  --duration-normal: 240ms; /* @kind other */
  --duration-slow:   420ms; /* @kind other */

  /* ---- Layout ---- */
  --container-max: 1200px;
}
