/* ── Typography ───────────────────────────────────────────────────────
   Neulis is the whole system: a rounded, humanist geometric sans.
   Two cuts ship. "Neulis Alt" draws the plain forms — this is the brand
   face for everything, and its letterforms are the wordmark's. "Neulis"
   draws the calligraphic alternates (the looped ℓ of the soℓaris logo,
   curled a/r/s). Use it only for short display moments; never body copy. */
:root{
  --font-display:"Neulis Alt","Neulis",-apple-system,"Segoe UI",sans-serif;
  --font-body:"Neulis Alt","Neulis",-apple-system,"Segoe UI",sans-serif;
  --font-signature:"Neulis","Neulis Alt",-apple-system,sans-serif;
  --font-mono:ui-monospace,"SFMono-Regular",Menlo,monospace;

  --weight-light:300;
  --weight-regular:400;
  --weight-medium:500;
  --weight-semibold:600;
  --weight-bold:700;
  --weight-extrabold:800;
  --weight-black:900;

  /* Scale — 1.25 major third, rounded to whole px */
  --text-3xs:11px;
  --text-2xs:12px;
  --text-xs:13px;
  --text-sm:15px;
  --text-md:17px;
  --text-lg:20px;
  --text-xl:24px;
  --text-2xl:30px;
  --text-3xl:38px;
  --text-4xl:48px;
  --text-5xl:62px;
  --text-6xl:80px;
  --text-7xl:104px;

  --leading-tight:1.02;
  --leading-snug:1.14;
  --leading-normal:1.35;
  --leading-relaxed:1.62;

  --tracking-display:-0.02em;
  --tracking-tight:-0.01em;
  --tracking-normal:0;
  --tracking-wide:0.06em;
  --tracking-eyebrow:0.22em;  /* the "RESIDENCIAL" lockup spacing */

  /* Composed roles */
  --type-hero-size:var(--text-6xl);
  --type-hero-weight:var(--weight-extrabold);
  --type-heading-weight:var(--weight-bold);
  --type-body-size:var(--text-md);
  --type-body-leading:var(--leading-relaxed);
  --type-eyebrow-size:var(--text-2xs);
  --type-eyebrow-weight:var(--weight-bold);
}
