/* Hema İçecek — typography tokens */
:root {
  /* Families */
  --font-display: "Anton", "Arial Narrow", sans-serif;   /* uppercase hero/heading */
  --font-body: "Archivo", "Helvetica Neue", sans-serif;  /* UI + body */

  /* Display scale (Anton, always uppercase) */
  --display-xl: clamp(64px, 9vw, 132px); /* @kind font */
  --display-lg: 64px;                     /* section titles */
  --display-md: 40px;                     /* card / block titles */
  --display-sm: 26px;                     /* sub-blocks */

  /* Body scale (Archivo) */
  --text-lg: 19px;
  --text-md: 16px;
  --text-sm: 14px;
  --text-xs: 12px;

  /* Weights (Archivo variable) */
  --weight-regular: 420;
  --weight-medium: 560;
  --weight-bold: 740;
  --weight-black: 880;

  /* Rhythm */
  --leading-display: 0.96;
  --leading-tight: 1.18;
  --leading-body: 1.6;
  --tracking-display: 0.01em;
  --tracking-caps: 0.18em;   /* eyebrow / label caps */
  --tracking-body: 0;
}
