body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-graphite-light);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-graphite);
  font-weight: 600;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}
h3 {
  font-size: var(--text-2xl);
}
h4 {
  font-size: var(--text-xl);
}

@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-graphite-light);
}

p:last-child {
  margin-bottom: 0;
}

a {
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-teal);
}

strong {
  font-weight: 600;
  color: var(--color-graphite);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-muted { color: var(--color-graphite-muted); }
.text-teal { color: var(--color-teal); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-sm);
  font-weight: 600;
}

.label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: var(--space-4);
}

.subheadline {
  font-size: var(--text-xl);
  color: var(--color-graphite-muted);
  font-weight: 400;
  line-height: 1.5;
  margin-top: var(--space-4);
}
@media (max-width: 768px) {
  .subheadline { font-size: var(--text-lg); }
}

.max-w-narrow { max-width: var(--container-narrow); }
.mx-auto { margin-left: auto; margin-right: auto; }
