/* ═══════════════════════════════════════
   TYPOGRAPHY — Öberg Light Style
   Bebas Neue display | Familjen Grotesk body
═══════════════════════════════════════ */

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 200px);
  font-weight: 400; /* Bebas is always bold */
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--text);
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--text);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: inherit;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--text-muted);
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.about-pitch {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.0;
  text-transform: uppercase;
}
.about-pitch strong {
  font-weight: 400;
  color: var(--text);
}

.about-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.8;
}
