/* ADM FILMS — TYPOGRAPHY TOKENS */

:root {
  /* ---- Families ---- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans:    'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ---- Type scale (a slow, editorial progression) ---- */
  --text-2xs: 0.6875rem;  /* 11px — tracked labels, credits */
  --text-xs:  0.75rem;    /* 12px */
  --text-sm:  0.875rem;   /* 14px */
  --text-base: 1rem;      /* 16px — body floor */
  --text-md:  1.125rem;   /* 18px */
  --text-lg:  1.3125rem;  /* 21px */
  --text-xl:  1.625rem;   /* 26px */
  --text-2xl: 2.0625rem;  /* 33px */
  --text-3xl: 2.75rem;    /* 44px */
  --text-4xl: 3.75rem;    /* 60px */
  --text-5xl: 5rem;       /* 80px */
  --text-6xl: 6.75rem;    /* 108px — cover-page display */

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

  /* ---- Line heights ---- */
  --leading-tight:   1.04;  /* display */
  --leading-snug:    1.18;
  --leading-normal:  1.5;   /* body */
  --leading-relaxed: 1.7;   /* long prose */

  /* ---- Tracking. The wordmark lives at the wide end. ---- */
  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;
  --tracking-label:  0.18em;  /* uppercase eyebrows */
  --tracking-mark:   0.32em;  /* "F I L M S" lockup spacing */

  /* ---- Semantic roles ---- */
  --display-family: var(--font-display);
  --display-weight: var(--weight-light);
  --heading-family: var(--font-display);
  --eyebrow-family: var(--font-sans);
  --body-family:    var(--font-sans);
  --label-family:   var(--font-sans);
  --mono-family:    var(--font-mono);
}
