.section-header {
    text-align: center;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease-out;
}
.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 22px;
    position: relative;
}
.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
}
.section-subtitle {
    display: block;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}
.section-header h2 .section-subtitle {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}
.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 620px;
    margin: 16px auto 0;
}

@media (max-width: 768px) {
    .hero-subtitle-inline {
        font-size: 1rem;
        margin-top: 6px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 0.18em;
    }
    .section-header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle-inline {
        font-size: 0.9rem;
        margin-top: 4px;
    }
    .section-subtitle {
        font-size: 11px;
    }
}
