.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    color: #f4f4f1;
    background: #1b262d;
    overflow: hidden;
    overflow: clip;
    isolation: isolate;
}

.home-hero__media,
.home-hero__shade {
    position: absolute;
    inset: 0;
}

.home-hero__media { z-index: -2; }

.home-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    animation: home-hero-zoom 28s ease-in-out infinite alternate;
    transform-origin: center center;
}

.home-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10, 18, 22, .58) 0%, rgba(10, 18, 22, .20) 50%, rgba(10, 18, 22, .04) 77%),
        linear-gradient(0deg, rgba(7, 14, 18, .72) 0%, rgba(7, 14, 18, .19) 48%, rgba(7, 14, 18, .03) 73%);
}

.home-hero__container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    padding-top: 160px;
    padding-bottom: clamp(56px, 7vh, 92px);
}

.home-hero__content { width: min(100%, 1120px); }

.home-hero h1 {
    max-width: 1120px;
    margin: 0;
    color: #f4f4f1;
    font-family: 'TTNorms-Medium', sans-serif;
    font-size: clamp(58px, 4.65vw, 72px);
    font-weight: 500;
    line-height: .99;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.home-hero h1 span {
    display: block;
}

.home-hero__lead {
    max-width: 640px;
    margin: 26px 0 0;
    color: rgba(244, 244, 241, .86);
    font-size: 18px;
    line-height: 1.48;
}

.home-hero__cta {
    min-height: 48px;
    margin-top: 32px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    box-sizing: border-box;
    border: 1px solid rgba(244, 244, 241, .58);
    border-radius: 2px;
    color: #f4f4f1;
    background: rgba(17, 28, 33, .32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 13px;
    line-height: 1;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.home-hero__cta span {
    color: #d7c669;
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease;
}

.home-hero__cta:hover,
.home-hero__cta:focus-visible {
    color: #15252f;
    border-color: #f4f4f1;
    background: #f4f4f1;
}

.home-hero__cta:hover span,
.home-hero__cta:focus-visible span { transform: translateX(3px); }

.home-hero__cta:focus-visible {
    outline: 2px solid #d7c669;
    outline-offset: 3px;
}

.home-hero__location {
    margin: 26px 0 0;
    color: rgba(244, 244, 241, .66);
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: .14em;
    text-transform: uppercase;
}

@keyframes home-hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.035); }
}

@media (max-width: 1199.98px) {
    .home-hero,
    .home-hero__container {
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
    }

    .home-hero__container {
        width: calc(100% - 48px);
        max-width: none;
        padding-top: 128px;
        padding-bottom: clamp(48px, 6.5vh, 76px);
    }

    .home-hero__content { width: min(100%, 1000px); }

    .home-hero h1 {
        max-width: 1000px;
        font-size: clamp(50px, 6.25vw, 64px);
    }
}

@media (max-width: 767.98px) {
    .home-hero__media img { object-position: 55% center; }

    .home-hero__shade {
        background:
            linear-gradient(90deg, rgba(10, 18, 22, .36) 0%, rgba(10, 18, 22, .06) 100%),
            linear-gradient(0deg, rgba(7, 14, 18, .84) 0%, rgba(7, 14, 18, .31) 58%, rgba(7, 14, 18, .05) 80%);
    }

    .home-hero__container {
        width: calc(100% - 28px);
        padding-top: 100px;
        padding-bottom: max(28px, env(safe-area-inset-bottom));
    }

    .home-hero h1 {
        max-width: 620px;
        font-size: clamp(36px, 9.2vw, 40px);
        line-height: 1.01;
        letter-spacing: -.032em;
    }

    .home-hero__lead {
        max-width: 500px;
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.42;
    }

    .home-hero__cta {
        min-height: 48px;
        margin-top: 24px;
        gap: 22px;
    }

    .home-hero__location {
        margin-top: 20px;
        font-size: 10px;
    }
}

@media (max-width: 374.98px) {
    .home-hero__container {
        width: calc(100% - 28px);
        padding-bottom: max(22px, env(safe-area-inset-bottom));
    }

    .home-hero h1 { font-size: clamp(34px, 9.6vw, 36px); }

    .home-hero__lead {
        margin-top: 16px;
        font-size: 15px;
    }

    .home-hero__cta { margin-top: 20px; }

    .home-hero__location {
        margin-top: 16px;
        letter-spacing: .1em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__media img { animation: none; }

    .home-hero__cta,
    .home-hero__cta span { transition: none; }
}
