/* ============================================================
   VILLA VIP Academia — Typography tokens
   Display: Ethnocentric (wide, technical) — UPPERCASE only
   Accent:  Hand Gothic (thin geometric eyebrows/labels)
   Body/UI: Saira
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: "Ethnocentric", "Saira Condensed", sans-serif;
  --font-accent:  "Hand Gothic", "Saira", sans-serif;
  --font-body:    "Saira", system-ui, -apple-system, sans-serif;
  --font-cond:    "Saira Condensed", "Saira", sans-serif;

  /* ---- Type scale (1.25 major-third-ish, athletic) ---- */
  --fs-display-xl: clamp(3rem, 6vw, 5.5rem); /* @kind font */
  --fs-display:    clamp(2.25rem, 4vw, 3.5rem); /* @kind font */
  --fs-h1:         2.5rem;    /* @kind font */
  --fs-h2:         2rem;      /* @kind font */
  --fs-h3:         1.5rem;    /* @kind font */
  --fs-h4:         1.25rem;   /* @kind font */
  --fs-lg:         1.125rem;  /* @kind font */
  --fs-body:       1rem;      /* @kind font */
  --fs-sm:         0.875rem;  /* @kind font */
  --fs-xs:         0.75rem;   /* @kind font */
  --fs-eyebrow:    0.8125rem; /* @kind font */

  /* ---- Weights (Saira) ---- */
  --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-extra:   800; /* @kind font */

  /* ---- Line heights ---- */
  --lh-tight:   1.05; /* @kind font */
  --lh-snug:    1.2;  /* @kind font */
  --lh-normal:  1.5;  /* @kind font */
  --lh-relaxed: 1.65; /* @kind font */

  /* ---- Letter spacing ---- */
  --ls-display: 0.01em;   /* Ethnocentric is already wide */
  --ls-eyebrow: 0.22em;   /* Hand Gothic eyebrows — heavy tracking */
  --ls-label:   0.08em;
  --ls-tight:   -0.01em;
}

/* ---- Reusable type helpers ---- */
.vv-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
}
.vv-eyebrow {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-size: var(--fs-eyebrow);
  color: var(--color-primary);
}
.vv-heading {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}
.vv-body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}
