/* ==================================================================
   EFFECTS — radii, borders, shadows, motion
   Editorial = restrained. Small radii, soft low shadows, quick fades.
   ================================================================== */
:root {
  /* Corner radii */
  --radius-none: 0;
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-pill: 999px;

  /* Border widths */
  --border-hair: 1px;
  --border-thick: 2px;
  --rule-accent: 3px;   /* the ember underline used under kickers/titles */

  /* Shadows — soft, warm-tinted, never heavy */
  --shadow-xs: 0 1px 2px rgba(26, 23, 18, 0.06);
  --shadow-sm: 0 2px 6px rgba(26, 23, 18, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 23, 18, 0.10);
  --shadow-lg: 0 20px 48px rgba(26, 23, 18, 0.14);
  /* Lift used for imagery / thumbnails floating on paper */
  --shadow-photo: 0 12px 32px rgba(26, 23, 18, 0.18);

  /* Motion — calm, no bounce */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-normal: 220ms; /* @kind other */
  --dur-slow:   380ms; /* @kind other */

  /* Interaction states (documented convention) */
  --hover-lift: translateY(-2px); /* @kind other */
  --press-scale: scale(0.98); /* @kind other */

  /* Blur for glass overlays on video */
  --blur-overlay: blur(10px); /* @kind other */
}
