/* ══════════════════════════════════════
   THE PROCESS — Dark section
   ══════════════════════════════════════ */
.vsec-process {
    background: #0a0a0a;
    padding: 100px 40px;
}

/* Header */
.vsec-process__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.vsec-process__eyebrow {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9963a;
    margin-bottom: 16px;
}

.vsec-process__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 44px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.vsec-process__title em { font-style: italic; color: #c9963a; }

.vsec-process__desc {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
}

/* Steps grid */
.vsec-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

/* Single step */
.vsec-step {
    text-align: center;
    padding: 0 32px;
    position: relative;
}

.vsec-step__number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 300;
    color: #c9963a;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.7;
}

.vsec-step__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 12px;
}

.vsec-step__desc {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin: 0;
}

/* Gold connector line between steps */
.vsec-step__connector {
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 1px;
    background: rgba(201,150,58,0.3);
}

/* Scroll reveal (shared classes) */
.vsec-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vsec-reveal.vsec-visible {
    opacity: 1;
    transform: translateY(0);
}

.vsec-delay-0 { transition-delay: 0s; }
.vsec-delay-1 { transition-delay: 0.15s; }
.vsec-delay-2 { transition-delay: 0.3s; }
.vsec-delay-3 { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1100px) {
    .vsec-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
    .vsec-step__connector { display: none; }
    .vsec-process__title { font-size: 36px; }
    .vsec-process { padding: 80px 28px; }
}

@media (max-width: 768px) {
    .vsec-steps { grid-template-columns: 1fr; gap: 48px; }
    .vsec-process { padding: 64px 20px; }
    .vsec-process__title { font-size: 32px; }
    .vsec-step { padding: 0; }
}

/* ── Theme: light override (default is dark) ── */
.vsec-process.vsec-theme-light .vsec-process__title { color: #0a0a0a; }
.vsec-process.vsec-theme-light .vsec-process__desc { color: #6b6b6b; }
.vsec-process.vsec-theme-light .vsec-step__title { color: #0a0a0a; }
.vsec-process.vsec-theme-light .vsec-step__desc { color: #6b6b6b; }
.vsec-process.vsec-theme-light .vsec-step__connector { background: rgba(201,150,58,0.5); }
