/* SECTIONS */
section { padding: var(--section-pad) 0; }
.section-tag {
    font-family: var(--font-display); font-size: 10px;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold-400);
    display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.section-tag::before {
    content: ''; display: block; width: 24px; height: 1px;
    background: var(--gold-500); flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700; line-height: 1.4; color: var(--text-primary);
    letter-spacing: 2px; text-transform: uppercase;
}
.section-title em { font-style: normal; font-weight: 300; color: var(--text-primary); }
.section-header { margin-bottom: 60px; }
.section-header.section-header--tight { margin-bottom: 40px; }
