/* Born Mtn Club — borders, radii, elevation, motion.
   The brand is print-first: hairline rules, square corners, almost no shadow.
   Elevation is expressed by tone change and rules, not drop shadows. */
:root{
  /* Radii — near-square. The only rounded forms are the shield mark and pills. */
  --radius-none:0;
  --radius-xs:1px;
  --radius-sm:2px;
  --radius-md:3px;
  --radius-pill:999px;

  /* Borders */
  --border-w-hair:1px; /* @kind spacing */
  --border-w:1px; /* @kind spacing */
  --border-w-thick:2px; /* @kind spacing */
  --rule-hairline:1px solid var(--border-hairline); /* @kind other */
  --rule-strong:1px solid var(--border-rule); /* @kind other */
  --rule-brand:1px solid var(--border-brand); /* @kind other */
  --rule-inverse:1px solid var(--border-inverse); /* @kind other */

  /* Elevation — used sparingly; never on flat editorial layouts */
  --shadow-none:none; /* @kind shadow */
  --shadow-raised:0 1px 2px rgba(35,31,32,.06);
  --shadow-card:0 8px 24px rgba(35,31,32,.08);
  --shadow-overlay:0 24px 60px rgba(35,31,32,.18);
  --shadow-inset-hair:inset 0 -1px 0 var(--border-hairline);

  /* Motion — quiet, no bounce, no spring */
  --ease-standard:cubic-bezier(.4,0,.2,1); /* @kind other */
  --ease-out:cubic-bezier(0,0,.2,1); /* @kind other */
  --ease-in:cubic-bezier(.4,0,1,1); /* @kind other */
  --dur-fast:120ms; /* @kind other */
  --dur:220ms; /* @kind other */
  --dur-slow:400ms; /* @kind other */
  --dur-image:700ms; /* @kind other */
  --transition-ui:color var(--dur) var(--ease-standard),background-color var(--dur) var(--ease-standard),border-color var(--dur) var(--ease-standard),opacity var(--dur) var(--ease-standard); /* @kind other */

  /* Blur / glass — only over photography, never over flat color */
  --blur-scrim:saturate(1.05) blur(14px); /* @kind other */
  --glass-dark:rgba(35,31,32,.35);
  --glass-light:rgba(255,255,255,.72);

  /* Focus */
  --focus-ring:2px solid var(--born-gold); /* @kind other */
  --focus-offset:2px; /* @kind spacing */

}
