/* === HS Hero Section === */
:root {
    --hs-color-point: #d32978;
    --hs-font-heading: 'Playfair Display', Georgia, serif;
    --hs-font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hs-hero {
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: #fed1d0;
}

.hs-hero__video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.hs-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.hs-hero__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 60px 24px 48px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hs-hero__title {
    font-family: var(--hs-font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hs-hero__subtitle {
    font-family: var(--hs-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hs-hero__title {
        font-size: 1.8rem;
    }

    .hs-hero__subtitle {
        font-size: 0.95rem;
    }

    .hs-hero__overlay {
        padding: 40px 20px 36px;
    }
}
