/* ============================================================
   TYPOGRAPHY — Refined editorial scale
   ============================================================ */

/* ── Display / Hero ── */
.t-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.t-display {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.t-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ── Body ── */
.t-body-lg {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
}

.t-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
}

.t-body-sm {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
}

/* ── Label / Eyebrow ── */
.t-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Mono ── */
.t-mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ── Gradient text ── */
.t-gradient {
  background: var(--ink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Italic accent ── */
.t-italic { font-style: italic; }

/* ── Base heading styles ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
}

p { line-height: 1.7; }

/* ── Section header pattern ── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--ink-3);
  flex-shrink: 0;
}
