.hero__header {
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem 4rem;
}

.hero__header.is-scrolled {
    position: fixed;
    padding: 0.75rem 4rem;
    background: var(--dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    animation: header-slide-in 0.35s ease-out;
    top: 0;
}

@media (min-width: 1025px) {
    .hero__header {
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .hero__header.is-scrolled {
        position: fixed;
        padding: 0.75rem 4rem;
        background: var(--dark);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
        animation: header-slide-in 0.35s ease-out;
    }
}

@keyframes header-slide-in {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.hero__header-left {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero__header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero__logo {
    width: 6.875rem;
}

.hero__logo img {
    width: 100%;
    height: 100%;
}

.hero__nav {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.125rem;
}

.hero__nav-link {
    font-size: 1.125rem;
    line-height: 1.55;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
    transition: 0.2s all;
}

.hero__nav-link:hover {
    color: var(--orange);
}

.hero__phone {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.55;
}

.hero__phone-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.hero__phone-icon svg {
    width: 1.7188rem;
    height: 1.7188rem;
}

.hero__address {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    max-width: 20rem;
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.2;
}

.hero__address-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.hero__address-icon svg {
    width: 2.3438rem;
    height: 2.3438rem;
}   

.hero__cta {
    padding: 0.75rem 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 0.1875rem;
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.55;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border 0.2s ease-in-out;
}

.hero__cta:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

@media(max-width: 1024px) {
    .hero__header { padding: 1.5rem 1.5rem; }
    .hero__header.is-scrolled { padding: 1rem 1.5rem; }
}