/* ============================================
   TYPOGRAPHY — Text styles
   ============================================ */

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

/* Italic emphasis inside hero h1 */
h1 em {
  font-style: normal;
  color: var(--accent);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 700;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 700;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 700;
}

h5 {
  font-size: var(--text-base);
  font-weight: 700;
}

h6 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Body text */
p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.lead {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.muted {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* Tag labels — small uppercase labels above section titles */
.tag-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.tag-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* Accent text */
.text-accent {
  color: var(--accent);
}

/* Section header pattern */
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--text-lg);
  font-weight: 300;
}

/* Links */
a:hover {
  color: var(--accent);
}
