/* =============================================================
   NICHENCY — TYPOGRAPHY
   core/typography.css
   ============================================================= */

body {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: var(--dark-blue);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--dark-blue); text-decoration: none; }
p { margin-bottom: 1.2rem; font-size: 16px; color: var(--muted); line-height: 1.8; }

/* ── EYEBROW / LABELS ── */
.eyebrow,
.hero-eyebrow,
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ── SECTION HEADLINES ── */
.section-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.section-sub,
.section-subheadline {
  font-family: 'Karla', sans-serif;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
}
