/* ============================================================
   MÒ 墨 — Effects: radii, borders, shadows, motion
   The brand is square and architectural — radii are minimal.
   Hairline rules and sharp edges over soft rounded cards.
   ============================================================ */

:root {
  /* Corner radii — deliberately small. Editorial = sharp. */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-pill: 999px;

  /* Borders */
  --border-w: 1px;
  --border-w-strong: 1.5px;

  /* Shadows — restrained, never colorful glow. Cards on light
     surfaces get a soft lift; the dark canvas uses borders. */
  --shadow-xs: 0 1px 2px rgba(14,14,14,0.06);
  --shadow-sm: 0 2px 8px rgba(14,14,14,0.08);
  --shadow-md: 0 8px 24px rgba(14,14,14,0.12);
  --shadow-lg: 0 24px 60px rgba(14,14,14,0.20);
  --shadow-focus: 0 0 0 3px rgba(193,37,47,0.30);

  /* Motion — quick, confident, no bounce. */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);     /* @kind other */
  --ease-in: cubic-bezier(0.4, 0, 1, 1);         /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */

  /* Overlays / scrims */
  --scrim: rgba(14,14,14,0.55);
  --scrim-strong: rgba(14,14,14,0.78);
}
