.hero {
    position: relative;
    min-height: calc(100svh - 80px);
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.4;
}

.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: var(--space-xl);
}

.hero__content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.hero__label {
    background: var(--color-primary);
    color: var(--color-on-primary);
    padding: 4px 8px;
    display: inline-block;
    width: fit-content;
}

.hero__title {
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 4rem);
}

.hero__description {
    font-family: var(--font-body);
    color: var(--color-secondary);
    max-width: 520px;
}

.hero__buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    text-decoration: none;
}

.hero__buttons a {
    text-decoration: none;
    text-transform: uppercase;
}

.hero__location {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero__location-item {
    text-align: right;
}

.hero__location-text {
    font-weight: 700;
}

.hero__divider {
    width: 1px;
    height: 48px;
    background: rgba(119, 119, 119, 0.5);
}

.hero__slider,
.hero__slide {
    width: 100%;
    height: calc(100svh - 80px);
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
}

.swiper-slide-active .hero__content {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .hero__location {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        overflow: visible;
        align-items: flex-start;
    }

    .hero__container {
        padding: var(--space-xs);
    }

    .hero__content {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .hero__label {
        margin: 0 auto;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__location {
        position: static;
        margin-top: var(--space-md);
        display: flex;
        justify-content: center;
        gap: var(--space-xs);
    }

    .hero__location-item {
        text-align: center;
    }
}