/* Tama Living — Effects: radii, borders, shadows, motion.
   The brand is calm and architectural: soft, generous radii (echoing the
   rounded arch and the rounded-square badge), quiet earthy shadows, and
   slow, gentle easing. No bounce. */
:root {
  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;   /* default card / input */
  --radius-lg: 20px;   /* the rounded-square badge motif */
  --radius-xl: 28px;
  --radius-arch: 999px 999px 14px 14px; /* arch top, flat-ish base */
  --radius-pill: 999px;

  /* Borders */
  --border-hairline: 1px;
  --border-thin: 1.5px;
  --border-thick: 2px;

  /* Shadows — warm, low-contrast, never harsh black */
  --shadow-xs: 0 1px 2px rgba(48, 60, 53, 0.06);
  --shadow-sm: 0 2px 8px rgba(48, 60, 53, 0.08);
  --shadow-md: 0 8px 24px rgba(48, 60, 53, 0.10);
  --shadow-lg: 0 18px 48px rgba(48, 60, 53, 0.14);
  --shadow-focus: 0 0 0 3px rgba(181, 147, 102, 0.35); /* bronze focus ring */

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-inout: cubic-bezier(0.65, 0.05, 0.36, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur: 240ms;      /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
