/* typography.css
   Shared text treatments split from the previous stylesheet. */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dcfff8;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  line-height: 0.92;
  letter-spacing: 0;
  font-size: clamp(2rem, 10vw, 3rem);
  word-break: break-word;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
