.svp {
    --svp-sticky-top: 90px;
    --svp-gap: 10px;

    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    gap: var(--svp-gap);
}

.svp__grid {
    flex: 1 1 50%;
    max-width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--svp-gap);
    align-self: stretch;
}

.svp__product {
    background: #fff;
}

.svp__media {
    flex: 1 1 50%;
    max-width: 50%;
    align-self: stretch;
}

.svp__media-inner {
    position: sticky;
    top: var(--svp-sticky-top);
    height: calc(100vh - var(--svp-sticky-top));
    min-height: 480px;
    overflow: hidden;
}

.svp__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svp__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
    color: #fff;
    background: rgba(0, 0, 0, .35);
}

.svp__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.svp__description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 24px;
}

.svp__button {
    display: inline-block;
    padding: 16px 28px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    transition: background .2s ease, color .2s ease;
}

.svp__button:hover {
    background: #000;
    color: #fff;
}

/* ---- Mobile: video un-sticks, stacks on top, full-width ---- */
@media (max-width: 992px) {
    .svp {
        flex-direction: column;
    }

    .svp__grid,
    .svp__media {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .svp__grid {
        grid-template-columns: repeat(2, 1fr);
        order: 2;
    }

    .svp__media {
        order: 1;
    }

    .svp__media-inner {
        position: relative;
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 4;
    }

    .svp__overlay {
        padding: 28px 24px;
    }

    .svp__title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .svp__media-inner {
        aspect-ratio: 4 / 5;
    }

    .svp__overlay {
        padding: 22px 18px;
    }

    .svp__title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .svp__description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .svp__button {
        padding: 12px 20px;
        font-size: 13px;
    }
}
