/* ============================================================
   AA.COM WEB — TYPE TOKENS
   Dos familias: Compacta (display, condensada, todo mayúsculas,
   line-height apretado) para titulares gigantes; Barlow para
   cuerpo; Barlow Condensed para labels/kickers/UI-text.
   ============================================================ */
:root {
  --font-display: 'Compacta', 'Anton', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-label:   'Barlow Condensed', sans-serif;

  /* Display — hero titles */
  --text-display-lg: clamp(3.2rem, 14vw, 12rem);
  --text-display-md: clamp(2.4rem, 6vw, 4.9rem);
  --text-display-sm: clamp(1.7rem, 3.4vw, 2.4rem);

  /* Labels / kickers (Barlow Condensed, uppercase, tracked out) */
  --text-label-tracking: .18em;
  --text-label-size: .78rem;

  /* Body */
  --text-body-size: 1.05rem;
  --text-body-line: 1.55;
}

.aa-disp {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .005em;
  font-weight: normal;
  white-space: pre-line;
}
