.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}

/* Video */
.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77svh;
    min-height: 100svh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Overlay */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
}

/* ✨ Luxury Title */
.hero-title {
    font-size: 3.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ✨ Elegant Subtitle */
.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin: 0 auto;
}

/* Accent line */
.hero-divider {
    width: 64px;
    height: 2px;
    background: rgba(255, 255, 255, 0.75);
    margin: 18px auto 22px;
}
@media (max-width: 768px) {
    .hero-video-wrapper {
        height: 92svh;
    }

    .hero-video-wrapper iframe {
        min-width: 165svh;
        min-height: 92svh;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: 0.12em;
        line-height: 1.35;   /* 👈 key fix */
        margin-bottom: 22px;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        line-height: 1.6;
    }

    .hero-divider {
        margin: 20px auto 24px;
    }
}