/* Hugelmann — Elevation, borders, motion tokens.
   Soft, retail-catalog elevation: low-contrast ambient shadows, never harsh. */
:root {
  --shadow-xs: 0 1px 2px rgba(32,31,31,0.06);
  --shadow-sm: 0 1px 3px rgba(32,31,31,0.08), 0 1px 2px rgba(32,31,31,0.05);
  --shadow-md: 0 4px 12px rgba(32,31,31,0.09), 0 2px 4px rgba(32,31,31,0.05);
  --shadow-lg: 0 12px 28px rgba(32,31,31,0.12), 0 4px 8px rgba(32,31,31,0.06);
  --shadow-xl: 0 24px 48px rgba(32,31,31,0.16);
  --shadow-focus: 0 0 0 3px var(--focus-ring);

  --border-width: 1px; /* @kind other */
  --border-width-strong: 2px; /* @kind other */

  /* Motion — calm, functional; no bounces */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 320ms; /* @kind other */
  --transition-base: all var(--dur-base) var(--ease-standard); /* @kind other */
}
