.hero {
    position: relative;
    height: 458px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 60px;
}

.hero-values {
    display: flex;
    align-items: center;
    gap: 8px;
}

.value {
    font-family: "Poiret One", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.17;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #f0e9df;
    text-shadow: 0.3px 0 0 #f0e9df;
}

.separator {
    font-family: "Poiret One", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.17;
    color: #f0e9df;
    text-shadow: 0.3px 0 0 #f0e9df;
}

.cta-button {
    background-color: #b0864a;
    border: 1px solid #b0864a;
    color: #f0e9df;
    border: none;
    border-radius: 4px;
    padding: 8px 40px;
    font-family: "Poiret One", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.17;
    letter-spacing: 0.36px;
    cursor: pointer;
    height: 37px;
    box-sizing: border-box;
}

.cta-button:hover {
    background: none;
    color: #f0e9df;
    border: 1px solid #f0e9df;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero {
        height: 300px;
    }

    .hero-content {
        padding-bottom: 24px;
        gap: 8px;
    }

    .value,
    .separator {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
        padding: 8px 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 250px;
    }

    .hero-values {
        gap: 8px;
        text-align: center;
    }

    .value {
        font-size: 14px;
    }
}
