/* Hero typography repair: prevent serif collisions and underline overlap. */
.hero h1 {
  max-width: 1040px;
  font-family: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(64px, 9.2vw, 126px);
  font-weight: 900;
  font-stretch: condensed;
  line-height: .88;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero h1 span {
  text-decoration: none;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(50px, 16vw, 76px);
    line-height: .92;
    letter-spacing: -.035em;
  }
}
