/* Down The Cove — Spacing, radii, shadows, layout, motion */
:root {
  /* ── Spacing scale (0.25rem base) ─────────────────────────── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Section rhythm */
  --section-mobile: 3.5rem;
  --section-desktop: 5rem;

  /* ── Containers ───────────────────────────────────────────── */
  --container-prose: 46rem;
  --container-page: 80rem;
  --container-wide: 90rem;

  /* ── Radii — note the signature pill (999px) for fields/buttons ── */
  --radius: 0.625rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-card: 1.125rem;   /* product / content cards */
  --radius-lg: 1.35rem;
  --radius-panel: 1.5rem;    /* large feature panels */
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;     /* category tiles */
  --radius-pill: 999px;      /* buttons, inputs, chips, badges */

  /* ── Shadows — soft, navy-tinted ─────────────────────────── */
  --shadow-soft: 0 14px 30px rgba(0, 39, 90, 0.06);
  --shadow-card: 0 12px 24px rgba(0, 39, 90, 0.08);
  --shadow-panel: 0 22px 48px rgba(8, 42, 79, 0.16);
  --shadow-button: 0 6px 14px rgba(16, 32, 62, 0.16);
  --shadow-tile: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-focus: 0 0 0 3px rgba(147, 229, 253, 0.45);

  /* ── Motion ───────────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1); /* @kind other */
  --motion-interactive: 180ms ease; /* @kind other */
  --motion-image: 300ms ease; /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 450ms; /* @kind other */
}
