/* LADON tokens. Neutrals tinted toward ink hue 174. No pure black or white. */
:root {
  --hue: 174;
  --ground: oklch(0.321 0.048 var(--hue));
  --ground-soft: oklch(0.35 0.045 var(--hue));
  --ink: oklch(0.96 0.012 var(--hue));
  --ink-soft: oklch(0.84 0.025 var(--hue));
  --accent: oklch(0.822 0.104 162);
  --hairline: oklch(0.822 0.104 162 / 0.25);
  --chamber: oklch(0.321 0.048 var(--hue));
  --chamber-ink: oklch(0.94 0.02 var(--hue));
  --chamber-soft: oklch(0.78 0.03 var(--hue));

  --font-display: "Literata", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Schibsted Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-mono: "Sometype Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;

  --t1: clamp(0.75rem, 0.7rem + 0.22vw, 0.8125rem);
  --t2: clamp(1rem, 0.94rem + 0.28vw, 1.125rem);
  --t3: clamp(1.25rem, 1.08rem + 0.7vw, 1.5rem);
  --t4: clamp(1.75rem, 1.25rem + 1.6vw, 2.375rem);
  --t5: clamp(2.125rem, 1.4rem + 2.4vw, 3.5rem);

  --measure: 60ch;
  --maxw: 1120px;
  --gutter: clamp(16px, 4vw, 48px);
  --nav-h: 56px;
  --hero-band: 55vh;
  --touch: 44px;
  --radius: 2px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --fx-fast: 180ms;
  --fx-reveal: 550ms;
  --fx-stagger: 60ms;

  --card: var(--ground);
  --line: var(--hairline);
  --mute: var(--ink-soft);
  --band: var(--ground-soft);
  --signal: var(--accent);
  --pg-accent: var(--accent);

  color-scheme: dark;
}
