/* CLY Solutions — Design tokens
   Mirror: docs/DESIGN_TOKENS.md */

:root {
  /* Brand colors */
  --color-navy-950: #0b1f33;
  --color-navy-900: #12304a;
  --color-navy-800: #1a4060;
  --color-navy-700: #2a5575;
  --color-forest-700: #1f5c45;
  --color-forest-600: #2a7356;
  --color-forest-100: #e6f2ec;
  --color-sand-50: #f7f6f3;
  --color-cream-0: #ffffff;
  --color-ink-900: #14202b;
  --color-ink-600: #4a5a68;
  --color-ink-400: #7a8a98;
  --color-border: #d8dee5;
  --color-success: #1f5c45;
  --color-warning: #9a6b1f;
  --color-warning-bg: #f8f1e3;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-accent: "DM Sans", "Segoe UI", sans-serif;

  --text-display: clamp(2.75rem, 5vw, 4.25rem);
  --text-h1: clamp(2rem, 3.5vw, 3rem);
  --text-h2: clamp(1.5rem, 2.5vw, 2.125rem);
  --text-h3: 1.25rem;
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-label: 0.8125rem;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-body: 1.65;

  /* Spacing */
  --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;
  --section-y: clamp(4rem, 8vw, 7rem);
  --container: 1120px;
  --container-wide: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2rem);

  /* Radii & elevation */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 8px 28px rgba(11, 31, 51, 0.08);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-med: 420ms;
  --duration-slow: 700ms;

  /* Z-index */
  --z-header: 100;
  --z-sticky-cta: 90;
  --z-overlay: 200;

  /* Semantic */
  --header-h: 4.25rem;
  --focus-ring: 0 0 0 3px rgba(31, 92, 69, 0.35);
}
