.hero {
    align-items: flex-end;
    min-height: 100svh;
    display: flex;
    position: relative;
    overflow: hidden
}

.hero__media {
    z-index: 0;
    position: absolute;
    inset: 0
}

.hero__media img,
.hero__media video {
    object-fit: cover;
    object-position: center 30%;
    width: 100%;
    height: 100%;
    transform: scale(1.1)
}

.hero__scrim {
    z-index: 1;
    background: linear-gradient(#06070873 0%, #06070826 30%, #06070840 60%, #060708f5 100%), linear-gradient(90deg, #0607088c 0%, #0000 55%);
    position: absolute;
    inset: 0
}

.hero__brand-logo {
    position: absolute;
    top: 13%;
    left: 10%;
    z-index: 2;
    display: block;
    line-height: 0
}

.hero__brand-logo-img {
    display: block;
    width: clamp(84px, 9vw, 180px);
    height: auto
}

.hero__content {
    z-index: 2;
    padding-bottom: var(--space-6);
    position: relative
}

.hero__content .eyebrow {
    font-size: calc(var(--fs-micro) + 5px);
    font-weight: 700;
    letter-spacing: .12em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .6)
}

.hero__title-visible {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 0.6rem + 1vw, 1.05rem);
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    color: var(--fg);
    margin: 0.5em 0 0;
    max-width: 40ch;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .6)
}

@media (max-width:700px) {
    .hero__title-visible {
        font-size: 0.85rem;
        max-width: 32ch
    }
}

.hero__title {
    font-weight: 700;
    font-size: var(--fs-hero);
    margin-top: .4em;
    overflow: hidden
}

.hero__title .line {
    display: block;
    font-family: var(--font-display);
    line-height: var(--lh-tight);
    overflow: hidden
}

.hero__title .line span {
    display: block;
    transform: translateY(110%)
}

.hero__lead {
    max-width: 46ch;
    margin-top: var(--space-3)
}

.hero__actions {
    margin-top: var(--space-4);
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
    display: flex
}

.hero__actions--quad {
    gap: .7em .8em
}

.btn-ghost--sm {
    border-color: var(--c-line-strong);
    color: var(--fg);
    background: #ffffff0f;
    padding: .8em 1.4em;
    font-size: .74rem
}

.btn-ghost--sm:hover {
    border-color: var(--fg);
    background: #ffffff1f
}

@media (width<=560px) {
    .hero__actions--quad {
        gap: .6em
    }

    .hero__actions--quad .btn {
        flex: auto;
        justify-content: center
    }

    .hero__actions--quad .btn-primary {
        flex-basis: 100%
    }
}

.hero__scroll-cue {
    bottom: var(--space-3);
    right: var(--gutter);
    z-index: 2;
    font-size: var(--fs-micro);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--c-silver);
    flex-direction: column;
    align-items: center;
    gap: .6em;
    display: flex;
    position: absolute
}

.hero__scroll-cue span {
    background: linear-gradient(180deg, var(--c-silver), transparent);
    width: 1px;
    height: 34px;
    animation: 2s ease-in-out infinite scrollcue
}

@keyframes scrollcue {
    0% {
        transform-origin: top;
        transform: scaleY(0)
    }

    50% {
        transform-origin: top;
        transform: scaleY(1)
    }

    50.01% {
        transform-origin: bottom;
        transform: scaleY(1)
    }

    to {
        transform-origin: bottom;
        transform: scaleY(0)
    }
}

.scene__scrim--light {
    background: linear-gradient(#0607080d 0%, #06070833 45%, #060708eb 100%)
}

@media (width<=700px) {
    .hero__scroll-cue {
        display: none
    }
}

@media (width<=700px) {
    .hero__brand-logo {
        display: none
    }

    .hero__content .eyebrow {
        font-size: var(--fs-micro);
        font-weight: 600;
        letter-spacing: var(--tracking-wide);
        text-shadow: none;
        align-items: flex-start;
        line-height: 1.5;
        max-width: 36ch
    }

    .hero__content .eyebrow::before {
        margin-top: .7em;
        flex-shrink: 0
    }

    .hero__title {
        font-size: 2.75rem
    }

    .hero__lead {
        font-size: 0.95rem
    }
}

@media (width>=480px) and (width<=700px) {
    .hero__title {
        font-size: 3.25rem
    }
}

@media (width<=700px) {

    .hero__media img,
    .hero__media video {
        object-position: center 35%;
        transform: scale(1.02)
    }
}

@media (width<=560px) {
    .hero__actions--quad {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .6em
    }

    .hero__actions--quad .btn {
        justify-content: center;
        letter-spacing: .08em;
        padding-inline: .6em
    }

    .hero__actions--quad .btn-primary {
        grid-column: 1 / -1;
        min-height: 50px
    }

    .btn-ghost--sm {
        grid-column: auto;
        min-height: 44px;
        font-size: .68rem;
        padding-block: .7em;
        background: #ffffff0d;
        border-color: var(--c-line);
        color: var(--c-silver)
    }

    .hero__actions--quad .btn-ghost--sm:last-child {
        grid-column: 1 / -1
    }
}