/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

em {
    font-style: normal;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
    opacity: 0.2;
    transform: translateY(4px);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-light);
    max-width: 65ch;
}