/* ==========================================================================
   BHIVE — Effects: shadows, borders, motion
   Brand is crisp & confident: hard/short shadows over soft blur, gold glows
   reserved for interactive/brand emphasis.
   ========================================================================== */
:root {
  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(20, 20, 20, 0.08);
  --shadow-sm: 0 2px 6px rgba(20, 20, 20, 0.08);
  --shadow-md: 0 6px 18px rgba(20, 20, 20, 0.10);
  --shadow-lg: 0 18px 44px rgba(20, 20, 20, 0.16);
  --shadow-brand: 0 8px 26px rgba(245, 166, 35, 0.34);

  /* Signature "hard" offset (brutalist card / button press look) */
  --shadow-hard: 4px 4px 0 var(--ink-900);
  --shadow-hard-gold: 4px 4px 0 var(--gold-500);

  /* Border widths */
  --border-hair: 1px;
  --border-thick: 2px;
  --border-heavy: 3px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 340ms; /* @kind other */
}
