/* ============================================================
   CHAMPOLUC · Typography tokens
   Display: BD Sans  — calm, geometric, wide-tracked.
   Body/UI: Plus Jakarta Sans — clear, humane, never shouty.
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: "BD Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    ui-monospace, "SFMono-Regular", "Menlo", monospace;

  /* semantic */
  --font-heading: var(--font-display);
  --font-body:    var(--font-sans);
  --font-eyebrow: var(--font-sans);

  /* ---- Weights ---- */
  --fw-thin:      100;   /* @kind font */ /* BD Sans Thin */
  --fw-light:     300; /* @kind font */
  --fw-regular:   400; /* @kind font */
  --fw-medium:    500; /* @kind font */
  --fw-semibold:  600; /* @kind font */
  --fw-bold:      700; /* @kind font */
  --fw-black:     900;   /* @kind font */ /* BD Sans Black */

  /* ---- Type scale (1rem = 16px) ---- */
  --text-2xs:  0.6875rem;  /* 11px — micro labels */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 0.9375rem;  /* 15px — UI body */
  --text-md:   1.0625rem;  /* 17px — long-form body */
  --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.5rem;     /* 88px */
  --text-6xl:  7.5rem;     /* 120px — hero statement */

  /* ---- Line heights ---- */
  --leading-none:    1; /* @kind other */
  --leading-tight:   1.08; /* @kind other */
  --leading-snug:    1.22; /* @kind other */
  --leading-normal:  1.5; /* @kind other */
  --leading-relaxed: 1.7; /* @kind other */

  /* ---- Letter spacing ---- */
  --tracking-tighter: -0.03em; /* @kind other */
  --tracking-tight:   -0.015em; /* @kind other */
  --tracking-normal:  0; /* @kind other */
  --tracking-wide:    0.06em; /* @kind other */
  --tracking-wider:   0.14em; /* @kind other */
  --tracking-widest:  0.3em;   /* @kind other */ /* CHAMPOLUC eyebrow */

  /* ============================================================
     Semantic roles
     ============================================================ */
  --type-hero-size:    clamp(3rem, 7vw, var(--text-6xl));
  --type-hero-weight:  var(--fw-black);
  --type-hero-leading: var(--leading-tight);
  --type-hero-track:   var(--tracking-tight);

  --type-display-size:   clamp(2.25rem, 4.5vw, var(--text-4xl));
  --type-display-weight: var(--fw-bold);

  --type-title-size:   var(--text-2xl);
  --type-title-weight: var(--fw-bold);

  --type-heading-size:   var(--text-xl);
  --type-heading-weight: var(--fw-semibold);

  --type-body-size:    var(--text-base);
  --type-body-leading: var(--leading-normal);

  --type-eyebrow-size:   var(--text-xs);
  --type-eyebrow-track:  var(--tracking-widest);
  --type-eyebrow-weight: var(--fw-semibold);
}
