/* NOLAVISION — typography tokens
   Display: Instrument Serif — an editorial, confident serif for headlines;
   reads "établi depuis 17 ans" premium-artisan rather than tech-startup.
   Body/UI: Manrope — warm geometric grotesk, good French accented-character support.
   Mono: IBM Plex Mono — used sparingly for devis/reference numbers, specs. */

:root {
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-body:    "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Scale — 1.25 ratio, capped for a services/marketing site (never below 24px on 1080 canvases per system rules;
     these are base rem sizes for web/UI contexts) */
  --text-xs:   0.75rem;   /* 12px — legal/microcopy */
  --text-sm:   0.875rem;  /* 14px — captions, labels */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.125rem;  /* 18px — lead paragraphs */
  --text-lg:   1.375rem;  /* 22px */
  --text-xl:   1.75rem;   /* 28px */
  --text-2xl:  2.25rem;   /* 36px */
  --text-3xl:  3rem;      /* 48px */
  --text-4xl:  4rem;      /* 64px */
  --text-5xl:  5.25rem;   /* 84px — hero display */

  --leading-tight:  1.08;
  --leading-snug:   1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide:  0.04em;
  --tracking-wider: 0.12em; /* eyebrow labels, all-caps */

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold: 600;
  --weight-bold:    700;
}
