/* =========================================================
   TIPOGRAFÍA — Abanico Insurgente
   Fraunces (serif editorial) + Inter (sans) autoalojadas.
   ========================================================= */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  font-weight: 400;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 420;
  line-height: var(--lh-snug);
  letter-spacing: -0.012em;
  color: var(--fg);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); line-height: 1.12; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-sans); font-weight: 600; }

p { max-width: 68ch; }
strong { font-weight: 600; }

/* Etiqueta editorial (eyebrow) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow.is-centered { justify-content: center; }

/* Entradilla */
.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--fg-soft);
  font-weight: 400;
  max-width: 56ch;
}

/* Cita editorial */
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1rem + 1.9vw, 2.4rem);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
cite { font-style: normal; }

/* Enlace con subrayado animado */
.link-underline {
  position: relative;
  display: inline-block;
  font-weight: 500;
  padding-bottom: 2px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
  transition: text-decoration-color var(--dur-fast) var(--ease);
}
.link-underline:hover,
.link-underline:focus-visible { text-decoration-color: currentColor; }

/* Utilidades */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.fg-muted { color: var(--fg-muted); }
.text-center { text-align: center; }
