/* tokens.css — design tokens: type scale, spacing, color, radius, shadow */
:root {
  /* Fonts — Cabinet Grotesk (display) + General Sans (body), both Fontshare, designed to pair */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'General Sans', 'Segoe UI', sans-serif;

  /* Fluid type scale (per website-building design-tokens spec) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 1rem + 5.5vw, 5.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Color — AAA Guardian brand: navy + orange accent, now on warm neutral surfaces */
  --color-bg: #faf8f5;              /* warm off-white body background */
  --color-surface: #ffffff;         /* elevated card surface — pure white for contrast */
  --color-surface-2: #f3f0eb;       /* warm gray band for section alternation */
  --color-surface-offset: #ede8e0;
  --color-navy: #0d2240;
  --color-navy-deep: #081527;
  --color-blue: #1a4f8a;
  --color-blue-light: #2f6fb8;
  --color-divider: #e3ddd2;
  --color-border: #d9d1c2;

  --color-text: #17233a;
  --color-text-muted: #5a5f6b;
  --color-text-faint: #8d8a80;
  --color-text-inverse: #f9f6f1;

  --color-primary: #0d2240;
  --color-primary-hover: #081527;
  --color-primary-active: #050d18;
  --color-primary-highlight: #e4e9f0;

  --color-accent: #d64424;
  --color-accent-hover: #b8371b;
  --color-accent-active: #962c15;
  --color-accent-highlight: #fbe1d7;

  --color-gold: #c98a2b;
  --color-gold-highlight: #f3e3c6;

  --color-success: #2f7a4d;
  --color-success-highlight: #d7ecdf;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-motion: 640ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — warm-toned, tuned to the stone background */
  --shadow-sm: 0 1px 2px rgba(23, 20, 12, 0.06), 0 1px 1px rgba(23, 20, 12, 0.04);
  --shadow-md: 0 8px 24px rgba(23, 20, 12, 0.08), 0 2px 8px rgba(23, 20, 12, 0.06);
  --shadow-lg: 0 24px 56px rgba(8, 21, 39, 0.16), 0 8px 20px rgba(8, 21, 39, 0.08);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;
}
