/* ==========================================================================
   TYPOGRAPHY HIERARCHY
   ========================================================================== */

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

.text-display {
    font-size: var(--text-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 600; }
h6 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

p {
    color: var(--color-stone);
    margin-bottom: var(--space-sm);
}

.text-lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-graphite-light);
    font-weight: 400;
}

.text-caption {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-copper);
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-xs);
}

.text-italic {
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
}

/* Copper highlighting text */
.text-copper {
    color: var(--color-copper);
}
