.home-hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    overflow: hidden;
    background: var(--color-navy-950);
    color: var(--color-white);
}

.home-hero__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgb(4 20 36 / 97%) 0%, rgb(4 20 36 / 84%) 28%, rgb(4 20 36 / 26%) 60%, rgb(4 20 36 / 5%) 100%),
        linear-gradient(0deg, rgb(4 20 36 / 36%), transparent 48%),
        url("/assets/artwork/hero-phoenix-home-v1.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 64px));
    margin-left: max(32px, calc((100% - var(--content-width)) / 2));
    padding: clamp(54px, 7vh, 88px) 0 94px;
}

.home-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.7rem, 4.25vw, 4.65rem);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.03;
    text-wrap: balance;
}

.home-hero__lede {
    max-width: 640px;
    margin: 22px 0 28px;
    color: rgb(255 255 255 / 88%);
    font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.property-search {
    max-width: 700px;
    margin-bottom: 18px;
}

.property-search label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.property-search__controls {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 12px;
}

.property-search__field {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

.property-search__field i {
    width: 22px;
    color: var(--color-navy-950);
    text-align: center;
}

.property-search__field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-navy-950);
}

.property-search__field input::placeholder {
    color: #7b8793;
}

.home-hero__boundary {
    display: flex;
    max-width: 650px;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0 0;
    color: rgb(255 255 255 / 78%);
    font-size: .88rem;
}

.home-hero__boundary i {
    width: 24px;
    flex: 0 0 24px;
    padding-top: 3px;
    text-align: center;
}

.home-hero__pagination {
    display: flex;
    gap: 8px;
    margin-top: 42px;
}

.home-hero__pagination span {
    width: 26px;
    height: 5px;
    border-radius: 20px;
    background: rgb(255 255 255 / 44%);
}

.home-hero__pagination .is-active {
    background: var(--color-red-500);
}

.home-hero__scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 50%;
    display: grid;
    justify-items: center;
    color: var(--color-white);
    font-size: .84rem;
    text-decoration: none;
    transform: translateX(-50%);
}

.home-hero__scroll-cue i {
    width: 28px;
    margin-top: 5px;
    text-align: center;
    animation: hero-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-cue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 1120px) {
    .home-hero {
        min-height: calc(100svh - 82px);
    }
}

@media (max-width: 700px) {
    .home-hero {
        min-height: calc(100svh - 74px);
        align-items: end;
    }

    .home-hero__backdrop {
        background-image:
            linear-gradient(0deg, rgb(4 20 36 / 98%) 5%, rgb(4 20 36 / 82%) 52%, rgb(4 20 36 / 18%) 100%),
            url("/assets/artwork/hero-phoenix-home-v1.png");
        background-position: 68% center;
    }

    .home-hero__content {
        width: auto;
        margin: 0;
        padding: 180px 20px 88px;
    }

    .home-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.45rem);
    }

    .property-search__controls {
        grid-template-columns: 1fr;
    }

    .property-search .button,
    .home-hero .button--outline {
        width: 100%;
    }

    .home-hero__scroll-cue {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__scroll-cue i {
        animation: none;
    }
}
