/* ==========================================================================
   Neighborhood Studios — Effects: shadows, motion, textures
   Soft warm shadows (never cold/gray), confident easing, no neon glow.
   ========================================================================== */

:root {
  /* --- Shadows — warm-tinted, low & soft, like daylight on a shelf ------- */
  --shadow-xs: 0 1px 2px rgba(46, 46, 46, 0.06);
  --shadow-sm: 0 2px 6px rgba(46, 46, 46, 0.08);
  --shadow-md: 0 6px 18px rgba(46, 46, 46, 0.10);
  --shadow-lg: 0 16px 40px rgba(46, 46, 46, 0.14);
  --shadow-xl: 0 28px 70px rgba(46, 46, 46, 0.18);
  /* "Sticker" — the slight lift of a taped-up sign */
  --shadow-sticker: 0 10px 24px rgba(46, 46, 46, 0.16), 0 2px 4px rgba(46,46,46,0.10);
  /* Inset for sunk wells / inputs */
  --shadow-inset: inset 0 1px 2px rgba(46, 46, 46, 0.10);
  /* Hard editorial offset (printed-poster look) */
  --shadow-print: 4px 4px 0 var(--nbs-ink);
  --shadow-print-yellow: 4px 4px 0 var(--nbs-yellow);

  /* --- Motion ------------------------------------------------------------- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);    /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);        /* @kind other */ /* settle-in */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */ /* gentle overshoot */
  --dur-fast: 120ms;   /* @kind other */
  --dur-base: 200ms;   /* @kind other */
  --dur-slow: 360ms;   /* @kind other */
  --dur-slower: 600ms; /* @kind other */

  /* --- Focus -------------------------------------------------------------- */
  --focus-ring-w: 3px;
  --focus-ring-offset: 2px;

  /* --- Grain / paper texture overlay (apply as background-image) ---------- */
  --grain-opacity: 0.05; /* @kind other */
}
