/* Brett Lovins — elevation, borders, motion */
:root {
  /* Warm-tinted shadows (never pure black) */
  --shadow-xs: 0 1px 2px rgba(42, 36, 32, 0.06);
  --shadow-sm: 0 2px 6px rgba(42, 36, 32, 0.07);
  --shadow-md: 0 6px 20px rgba(42, 36, 32, 0.09);
  --shadow-lg: 0 16px 40px rgba(42, 36, 32, 0.14);

  --border-width: 1px;
  --border-card: 1px solid var(--border-default);

  /* Motion: calm and brief — fades and small translates, no bounces */
  --ease-out: cubic-bezier(0.25, 0.6, 0.3, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --duration-slow: 320ms; /* @kind other */
}
