/* Nooshki Services — Typography tokens
 * Display & headings: Cormorant Garamond (serif, elegant, generous)
 * Body, labels, UI: Lato (sans, clean, friendly)
 */
:root {
  /* ---- Families ---- */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans:  'Lato', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --font-heading: var(--font-serif);
  --font-body:    var(--font-sans);
  --font-ui:      var(--font-sans);

  /* ---- Weights ---- */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;
  --weight-black:   900;

  /* ---- Type scale (rem, 16px base) ---- */
  --text-xs:   0.75rem;   /* 12px — micro labels */
  --text-sm:   0.875rem;  /* 14px — captions, helper */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.125rem;  /* 18px — lead body */
  --text-lg:   1.375rem;  /* 22px — small headings */
  --text-xl:   1.75rem;   /* 28px — h4 */
  --text-2xl:  2.25rem;   /* 36px — h3 */
  --text-3xl:  3rem;      /* 48px — h2 */
  --text-4xl:  4rem;      /* 64px — h1 */
  --text-5xl:  5.5rem;    /* 88px — hero display */

  /* ---- Line heights ---- */
  --leading-tight:   1.08;  /* big serif display */
  --leading-snug:    1.2;
  --leading-normal:  1.5;   /* body */
  --leading-relaxed: 1.7;   /* long-form */

  /* ---- Letter spacing ---- */
  --tracking-tighter: -0.02em;
  --tracking-tight:   -0.01em;
  --tracking-normal:  0em;
  --tracking-wide:    0.08em;
  --tracking-wider:   0.18em;  /* the brand "S E R V I C E S" eyebrow */
  --tracking-widest:  0.32em;

  /* ---- Semantic roles ---- */
  --display-family: var(--font-serif);
  --display-weight: var(--weight-medium);
  --display-leading: var(--leading-tight);

  --eyebrow-family: var(--font-sans);
  --eyebrow-weight: var(--weight-bold);
  --eyebrow-tracking: var(--tracking-wider);
  --eyebrow-size: var(--text-xs);

  --body-family: var(--font-sans);
  --body-weight: var(--weight-regular);
  --body-leading: var(--leading-relaxed);
}
