/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
}

@media (min-width: 768px) {
    h1 {
        font-size: clamp(3rem, 6vw, 6rem);
    }

    h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    p {
        font-size: 1.125rem;
    }
}

.section-title {
    margin-bottom: var(--space-lg);
}

.text-gold {
    color: var(--gold);
}
