/*
  Design tokens — Talentium (Direction D, final system)
  Single source of truth for color, type, spacing, motion and layout primitives.
  Variable names are kept stable from earlier rounds even where the
  underlying color shifted (e.g. --color-saffron is now an energetic
  amber-gold accent, not a literal saffron/cream tone) so every file that
  already consumes these tokens re-themes for free.
*/

:root {
  /* ---------- Color ---------- */
  --color-ink: #0a0a0a;
  --color-charcoal: #1c1c1c;
  --color-off-white: #fafafa;
  --color-paper: #f0f0f0;
  --color-saffron: #f0a63c;
  --color-gold-deep: #c97f1e;
  --color-warm-gray: #5c5c5c;
  --color-muted-cream: #b3b3b3;
  --color-hairline: #e6e6e6;
  --color-hairline-dark: #2a2a2a;

  /* ---------- Type ---------- */
  --font-sans: "General Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);

  --fs-eyebrow: 0.8125rem;
  --fs-body: clamp(1rem, 0.94rem + 0.24vw, 1.125rem);
  --fs-body-lg: clamp(1.125rem, 1.03rem + 0.4vw, 1.375rem);
  --fs-h2: clamp(2rem, 1.6rem + 1.8vw, 3.25rem);
  --fs-h3: clamp(1.5rem, 1.3rem + 0.9vw, 2.125rem);
  --fs-statement: clamp(1.625rem, 1.3rem + 1.4vw, 2.5rem);
  --fs-hero: clamp(2.5rem, 1.6rem + 4.2vw, 5.5rem);

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.6;

  --tracking-tight: -0.015em;
  --tracking-eyebrow: 0.14em;

  /* ---------- Spacing (fluid) ---------- */
  --space-2xs: clamp(0.5rem, 0.46rem + 0.2vw, 0.625rem);
  --space-xs: clamp(0.75rem, 0.68rem + 0.32vw, 1rem);
  --space-sm: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
  --space-md: clamp(2rem, 1.7rem + 1.2vw, 3rem);
  --space-lg: clamp(3rem, 2.4rem + 2.4vw, 5rem);
  --space-xl: clamp(4.5rem, 3.4rem + 4.4vw, 8rem);
  --space-2xl: clamp(6rem, 4.4rem + 6.4vw, 11rem);

  --container-max: 78rem;
  --container-pad: clamp(1.25rem, 0.9rem + 1.6vw, 3.5rem);
  --measure: 38rem;

  /* ---------- Motion ---------- */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 220ms;
  --duration-med: 480ms;
  --duration-slow: 900ms;
  --word-hold: 2600ms;

  /* Hero assembly / environmental type — slow and confident */
  --duration-env-word: 1400ms;

  /* Section entrance (headings / components) */
  --duration-reveal: 620ms;

  /* ---------- Structure ---------- */
  --radius-sm: 3px;
  --radius-md: 5px;
  --border-hairline: 1px solid var(--color-hairline);

  --header-height: 4.75rem;
}
