/* Explain: Section layouts for the stacked vintage page in white chrome style */
.vc-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    border-bottom: 1px solid rgba(104, 113, 122, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 249, 0.74));
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 36px rgba(70, 76, 82, 0.08);
}

.vc-shell {
    width: min(100% - 2rem, 74rem);
    margin-inline: auto;
}

.vc-hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    place-items: center;
    overflow: hidden;
    padding: 8.5rem 1rem 5rem;
}

.vc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: none;
    pointer-events: none;
}

.vc-hero-title {
    position: absolute;
    left: 50%;
    top: 47%;
    z-index: 1;
    width: min(94vw, 76rem);
    transform: translate(-50%, -50%);
    color: rgba(95, 102, 109, 0.95);
    font-family: var(--font-heading);
    font-size: clamp(4.3rem, 13vw, 13rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.82;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 10px 28px rgba(255, 255, 255, 0.85);
}

.vc-hero-title span {
    display: block;
}

.vc-hero-car {
    position: relative;
    z-index: 2;
    width: 100%;
}

.vc-hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    border: 1px solid rgba(104, 113, 122, 0.18);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.66);
    padding: clamp(1.25rem, 3vw, 2.25rem);
    box-shadow: 0 22px 70px rgba(70, 76, 82, 0.16);
    backdrop-filter: blur(8px);
}

.vc-warm-panel {
    border: 1px solid rgba(104, 113, 122, 0.18);
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(233, 237, 240, 0.72)),
        radial-gradient(circle at 14% 18%, rgba(184, 192, 199, 0.18), transparent 20rem);
    box-shadow: var(--shadow-warm);
}

.vc-garage-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
}

.vc-stat-card {
    border-left: 3px solid var(--chrome-color);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 0 0 1px rgba(104, 113, 122, 0.12);
}

.vc-process-rail {
    position: relative;
}

.vc-process-tint {
    background:
        radial-gradient(circle at 8% 10%, var(--heritage-red-glow), transparent 25rem),
        linear-gradient(135deg, var(--heritage-red-soft), rgba(255, 255, 255, 0.86));
}

.vc-process-scrim {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 245, 245, 0.32), rgba(255, 255, 255, 0.42));
}

.vc-process-rail::before {
    content: "";
    position: absolute;
    top: 1.3rem;
    bottom: 1.3rem;
    left: 1.35rem;
    width: 1px;
    background: linear-gradient(var(--chrome-color), rgba(104, 113, 122, 0.12));
}

.vc-process-step {
    position: relative;
    display: grid;
    gap: 1rem;
    grid-template-columns: 3rem minmax(0, 1fr);
}

.vc-step-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border: 1px solid rgba(104, 113, 122, 0.25);
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #dfe3e6 62%, #a7afb7);
    color: var(--black-color);
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(70, 76, 82, 0.16);
}

.vc-leather {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(104, 113, 122, 0.18);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(184, 192, 199, 0.2), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 236, 239, 0.96));
    box-shadow: var(--shadow-warm);
}

.vc-leather::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.28;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.75) 0 1px, transparent 1px 8px),
        repeating-linear-gradient(-45deg, rgba(104, 113, 122, 0.1) 0 1px, transparent 1px 10px);
}

.vc-footer {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
    .vc-garage-grid {
        grid-template-columns: 0.92fr 1.08fr;
        align-items: center;
    }

    .vc-footer {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .vc-hero {
        min-height: 92vh;
        padding-top: 7.5rem;
    }

    .vc-hero-title {
        top: 43%;
        font-size: clamp(4rem, 21vw, 7rem);
    }

    .vc-hero-car {
        transform: none;
    }
}
