/* Editorial palette — cream + near-black + modernized teal */
:root {
  /* Colors */
  --bg: #F4F1EA;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --rule: #E6E2D8;
  --accent: #00796B;
  --accent-hover: #005b50;

  /* Typography */
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale (modular, 1.25 ratio) */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3.75rem;
  --fs-4xl: 5rem;

  /* Spacing scale (8px base) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  /* Layout */
  --content-max: 1200px;
  --gutter: 2rem;
  --prose-max: 65ch;
}
