/* Nancy Tours Costa Rica — design tokens
   ====================================================
   Token layer only. All visual styles live in chrome.css (shared) or
   <page>.css (page-specific). See CLAUDE.md for the architecture. */

:root {
  /* Earth palette — terracotta + forest green + warm cream */
  --nt-terracotta: #b5532e;
  --nt-terracotta-deep: #8e3d20;
  --nt-forest: #1f3a2b;
  --nt-forest-soft: #2d4a35;
  --nt-cream: #f4ecd8;
  --nt-cream-soft: #faf5e7;
  --nt-ink: #1a160e;
  --nt-ochre: #c99a3f;
  --nt-stone: #6b6256;

  /* Type system */
  --nt-display: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
  --nt-body: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --nt-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Spatial */
  --nt-radius: 4px;
}

/* Direction-specific overrides applied at .nt-dir-X scope */
.nt-dir-b {
  --nt-display: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
  --nt-body: "Inter", system-ui, sans-serif;
}
