/* ============================================================
   Design tokens - "Quiet Editorial" (light)
   Single source of truth. Swap an accent here, whole site follows.
   ============================================================ */
:root {
  /* --- Color: warm paper, warm ink, one confident accent --- */
  --paper:        #F7F4EE;   /* warm off-white canvas (never pure #fff) */
  --paper-2:      #FDFBF6;   /* raised surface / cards */
  --ink:          #1B1A17;   /* warm near-black text */
  --ink-soft:     #423F39;   /* secondary text */
  --muted:        #6B6862;   /* labels, captions */
  --hairline:     #E4DED2;   /* 1px rules, borders */
  --accent:       #2436D8;   /* signature cobalt (swap to taste) */
  --accent-ink:   #1B2AB0;   /* accent, darker for text on paper */

  /* --- Type families --- */
  --font-display: "Space Grotesk", system-ui, sans-serif;  /* headlines */
  --font-accent:  "Fraunces", Georgia, serif;              /* italic accents / quotes */
  --font-body:    "Inter", system-ui, sans-serif;          /* body, UI */

  /* --- Fluid type scale --- */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.86rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --display: clamp(2.6rem, 1.6rem + 5vw, 6.4rem);

  /* --- Space / rhythm --- */
  --gutter: clamp(1.25rem, 0.8rem + 3vw, 4.5rem);
  --section-y: clamp(4rem, 2rem + 8vw, 9rem);

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;

  --maxw: 1280px;
}
