/* Sanctuary design tokens
   Warm charcoal, candlelit parchment, and one red reserved for the primary action. */
:root {
  --bg: #141110;
  --panel: #1E1A18;
  --raised: #272220;
  --border: #3A332F;
  --text: #F3EEE8;
  --muted: #A89F96;
  --red: #C9232D;
  --red-deep: #A51C25;
  --on-red: #FFFFFF;
  --parchment: #D9C7B0;
  --parchment-soft: rgba(217, 199, 176, 0.10);
  --parchment-line: rgba(217, 199, 176, 0.32);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  --font-ui: "Source Sans 3", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;

  --fs-body: 17px;
  --fs-sm: 15px;
  --fs-xs: 13px;
  --fs-h1: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  --fs-h2: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --fs-h3: 1.25rem;
  --lh: 1.6;

  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 40px;
  --s6: 48px;
  --s8: 64px;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;

  --rail-w: 240px;
  --content-max: 1100px;
  --topbar-h: 60px;
  --tabbar-h: 64px;

  --ease: 180ms ease;
}
