
.brock-home-hero {
    --bch-desktop-height: 750px;
    --bch-mobile-height: 720px;
    --bch-overlay: .32;
    position: relative;
    width: 100%;
    height: var(--bch-desktop-height);
    overflow: hidden;
    background: #0a0a0a;
    isolation: isolate;
}

.brock-home-hero,
.brock-home-hero * {
    box-sizing: border-box;
}

.brock-home-hero__track,
.brock-home-hero__slide,
.brock-home-hero__media,
.brock-home-hero__media picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.brock-home-hero__slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

.brock-home-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.brock-home-hero.is-ready .brock-home-hero__slide {
    transition: opacity .72s cubic-bezier(.22,.61,.36,1), visibility .72s linear;
}

.brock-home-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--bch-pos-desktop, center center);
}

.brock-home-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,.68) 0%,
            rgba(0,0,0,.50) 22%,
            rgba(0,0,0,.26) 46%,
            rgba(0,0,0,.10) 72%,
            rgba(0,0,0,.04) 100%);
}

.brock-home-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 64px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(42px, 6vw, 84px);
}

.brock-home-hero__content {
    width: min(600px, 48vw);
    color: #fff;
    padding: 0 0 88px;
    text-shadow: 0 2px 20px rgba(0,0,0,.20);
}

.brock-home-hero__eyebrow {
    margin: 0 0 14px;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #fff;
}

.brock-home-hero__title {
    margin: 0 0 18px;
    padding: 0;
    color: #fff;
    font-size: clamp(56px, 6.3vw, 112px);
    line-height: .88;
    letter-spacing: -.05em;
    font-weight: 900;
}

.brock-home-hero__text {
    max-width: 36rem;
    font-size: clamp(16px, 1.12vw, 20px);
    line-height: 1.6;
    color: #fff;
}

.brock-home-hero__text p {
    margin: 0 0 16px;
    padding: 0;
}

.brock-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.brock-home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 48px;
    padding: 12px 22px;
    border: 2px solid #fff;
    border-radius: 2px;
    background: #fff;
    color: #000 !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.brock-home-hero__button:hover,
.brock-home-hero__button:focus-visible {
    transform: translateY(-2px);
}

.brock-home-hero__button--ghost {
    background: #000;
    color: #fff !important;
    border-color: #000;
}

.brock-home-hero__button--ghost:hover,
.brock-home-hero__button--ghost:focus-visible {
    background: #161616;
    border-color: #161616;
}

.brock-home-hero__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 64px;
    border: 0;
    background: rgba(0,0,0,.46);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.brock-home-hero__arrow span {
    font-size: 42px;
    line-height: 1;
    margin-top: -3px;
}

.brock-home-hero__arrow--prev { left: 0; }
.brock-home-hero__arrow--next { right: 0; }

.brock-home-hero__controls {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.brock-home-hero__toggle {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 14px;
    border: 2px solid rgba(255,255,255,.86);
    border-radius: 999px;
    background: rgba(0,0,0,.48);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.brock-home-hero__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.brock-home-hero__dot {
    width: 34px;
    height: 6px;
    min-width: 34px;
    min-height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.42);
    cursor: pointer;
    overflow: hidden;
}

.brock-home-hero__dot.is-active,
.brock-home-hero__dot[aria-current="true"] {
    background: #fff;
}

.brock-home-hero__arrow:focus-visible,
.brock-home-hero__dot:focus-visible,
.brock-home-hero__button:focus-visible,
.brock-home-hero__toggle:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.screen-reader-text.brock-home-hero__sr-status {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 980px) {
    .brock-home-hero__inner {
        width: min(100% - 48px, 900px);
        padding-top: 44px;
    }

    .brock-home-hero__content {
        width: min(620px, 68vw);
        padding-bottom: 92px;
    }
}

@media (max-width: 767px) {
    .brock-home-hero {
        height: var(--bch-mobile-height);
        min-height: 580px;
        max-height: calc(100svh - 12px);
    }

    .brock-home-hero__image {
        object-position: var(--bch-pos-mobile, center center);
    }

    .brock-home-hero__shade {
        background:
            linear-gradient(180deg,
                rgba(0,0,0,.74) 0%,
                rgba(0,0,0,.60) 24%,
                rgba(0,0,0,.34) 48%,
                rgba(0,0,0,.14) 74%,
                rgba(0,0,0,.04) 100%);
    }

    .brock-home-hero__inner {
        width: calc(100% - 32px);
        padding-top: 32px;
    }

    .brock-home-hero__content {
        width: 100%;
        max-width: 100%;
        padding-bottom: 84px;
        text-shadow: 0 2px 18px rgba(0,0,0,.28);
    }

    .brock-home-hero__eyebrow {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .brock-home-hero__title {
        margin-bottom: 12px;
        font-size: clamp(46px, 14.6vw, 74px);
        line-height: .92;
    }

    .brock-home-hero__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.5;
    }

    .brock-home-hero__text p {
        margin-bottom: 12px;
    }

    .brock-home-hero__actions {
        margin-top: 18px;
        gap: 8px;
    }

    .brock-home-hero__button {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .brock-home-hero__arrow {
        top: 46%;
        width: 40px;
        height: 52px;
        background: rgba(0,0,0,.34);
    }

    .brock-home-hero__arrow span {
        font-size: 34px;
    }

    .brock-home-hero__controls {
        left: 16px;
        right: 16px;
        bottom: 16px;
        transform: none;
        justify-content: space-between;
        gap: 10px;
    }

    .brock-home-hero__toggle {
        padding: 9px 12px;
        font-size: 13px;
    }

    .brock-home-hero__dot {
        width: 24px;
        min-width: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brock-home-hero.is-ready .brock-home-hero__slide,
    .brock-home-hero__button {
        transition: none !important;
    }
}
