/* ============================================================
   TIPOGRAFÍA
============================================================ */

body {
  font-family: var(--body);
  background: var(--void);
  color: var(--paper);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(28px, 5.6vw, 64px);
  max-width: 16ch;
  margin: 36px auto 22px;
  color: var(--ink);
  text-wrap: balance;
}

h1 em {
  font-style: normal;
  color: var(--maroon);
  background: linear-gradient(180deg, transparent 62%, rgba(73, 17, 28, 0.14) 62%);
}

h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

h3 {
  font-size: 16px;
  margin-bottom: 9px;
  font-weight: 600;
  font-family: var(--display);
}

p {
  line-height: 1.65;
}

p.lead {
  max-width: 52ch;
  margin: 0 auto 44px;
  color: var(--fog);
  font-size: 16.5px;
  line-height: 1.75;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  display: inline-block;
  box-shadow: 0 0 10px var(--ember);
}

.on-paper .eyebrow {
  color: var(--maroon);
}

.on-void .eyebrow {
  color: var(--mist);
}

.on-void .eyebrow::before {
  background: var(--ember);
}

.on-brand .eyebrow {
  color: rgba(242, 244, 243, 0.8);
}

.on-brand .eyebrow::before {
  background: var(--paper);
  box-shadow: none;
}
