/* Piratas do Amor — Radii, borders, shadows, motion
   The brand is hand-inked & letterpress: crisp edges, hard offset "stamp" shadows,
   modest radii. Avoid heavy soft blurs. */
:root {
  /* ---- Radii ---- */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* ---- Border widths ---- */
  --border-1: 1px;
  --border-2: 1.5px;   /* default ink hairline */
  --border-3: 2.5px;   /* emphasized / woodcut outline */

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(23,19,13,0.10);
  --shadow-sm: 0 2px 6px rgba(23,19,13,0.12);
  --shadow-md: 0 8px 22px rgba(23,19,13,0.14);
  --shadow-lg: 0 18px 44px rgba(23,19,13,0.20);
  /* Letterpress "stamp" — the signature brand shadow */
  --shadow-stamp: 4px 4px 0 var(--pda-ink);
  --shadow-stamp-sm: 3px 3px 0 var(--pda-ink);
  --shadow-stamp-gold: 4px 4px 0 var(--pda-gold);

  /* ---- 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 */
  /* --ease-sway: gentle nautical bob/overshoot */
  --ease-sway: cubic-bezier(0.5, 1.4, 0.5, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
