/* =====================================================================
   TOKENS — St. Janshof design tokens
   Grounded in the building: white brick, gold lettering, tile
   ===================================================================== */

:root {
  --brick:        #FBF9F3;
  --brick-shade:  #F1ECDF;
  --sandstone:    #E7DCC2;
  --gold:         #AA8638;
  --gold-deep:    #7C5E22;
  --gold-deeper:  #654C1A;
  --tile:         #794B3B;
  --moss:         #5E6450;
  --ink:          #36322B;
  --ink-soft:     #6B6657;
  --hairline:     #DAD3C2;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Source Serif 4", Georgia, serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --nav-h:    4.5rem;
  --gutter:   clamp(1rem, 3vw, 2.25rem);
  --measure:  66ch;
  --wrapper:  72rem;

  /* fluid rhythm */
  --space-2xs: clamp(.5rem, .45rem + .25vw, .65rem);
  --space-xs:  clamp(.75rem, .68rem + .35vw, 1rem);
  --space-s:   clamp(1rem, .9rem + .5vw, 1.4rem);
  --space-m:   clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --space-l:   clamp(2.5rem, 2rem + 2.4vw, 4rem);
  --space-xl:  clamp(3.5rem, 2.6rem + 4vw, 6rem);
  --space-2xl: clamp(5rem, 3.5rem + 6vw, 8.5rem);

  --shadow-soft: 0 8px 28px -14px rgba(54, 50, 43, .4);
  --shadow-card: 0 14px 40px -24px rgba(54, 50, 43, .55);
}
