.hero-bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.hero-bg__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .45),
        rgba(0, 0, 0, .35) 40%,
        rgba(0, 0, 0, .55)
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-content__inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    color: var(--hero_text_color, #ffffff);
}

.hero-content__title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--hero_title_color, #ffffff);
}

.hero-content .hero-content__lead {
    font-size: clamp(16px, 2.2vw, 20px);
    opacity: .95;
    margin: 0 0 20px;
    color: var(--hero_text_color, #ffffff) !important;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .15s, border-color .15s, color .15s, transform .08s;
    pointer-events: auto;
}

.hero-btn:active {
    transform: translateY(1px);
}

.hero-btn:hover {
    text-decoration: none;
}

.hero-btn--primary {
    background: var(--hero_button_solid_background_color, #000000);
    color: var(--hero_button_solid_text_color, #ffffff);
    border-color: var(--hero_button_solid_background_color, #000000);
}

.hero-btn--primary:hover {
    background: var(--hero_button_solid_text_color, #ffffff);
    color: var(--hero_button_solid_background_color, #000000);
    border-color: var(--hero_button_solid_text_color, #ffffff);
}

.hero-btn--secondary {
    background: transparent;
    color: var(--hero_button_outline_text_color, #ffffff);
    border-color: var(--hero_button_outline_border_color, #ffffff);
}

.hero-btn--secondary:hover {
    background: var(--hero_button_outline_text_color, #ffffff);
    border-color: var(--hero_button_outline_text_color, #ffffff);
    color: var(--hero_button_outline_hover_text_color, #000000);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--hero_scroll_border_color, #ffffff);
    background: transparent;
    backdrop-filter: blur(2px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.hero-scroll:hover {
    background: var(--hero_scroll_color, #ffffff);
    border-color: var(--hero_scroll_color, #ffffff);
}

.hero-scroll:active {
    transform: translateX(-50%) scale(.98);
}

.hero-scroll::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--hero_scroll_color, #ffffff);
    border-bottom: 2px solid var(--hero_scroll_color, #ffffff);
    transform: rotate(45deg);
}

.hero-scroll:hover::before {
    border-right-color: var(--hero_scroll_hover_color, #000000);
    border-bottom-color: var(--hero_scroll_hover_color, #000000);
}

@keyframes heroBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(6px);
    }
    60% {
        transform: translateX(-50%) translateY(3px);
    }
}

.hero-scroll--animate {
    animation: heroBounce 2.4s ease-in-out infinite;
}

.hero-wrapper {
    position: relative;
    width: 100%;
}
