:root {
    --site-header-height: 84px;
    --site-header-height-mobile: 70px;
}

html.preloader-seen .preloader {
    display: none !important;
}

html {
    scroll-padding-top: calc(var(--site-header-height) + 20px);
    overflow-x: hidden;
}

body {
    padding-top: var(--site-header-height);
    overflow-x: hidden;
}

[id] {
    scroll-margin-top: calc(var(--site-header-height) + 20px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 2000;
    width: 100%;
    background: #101010;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: box-shadow 180ms ease;
}

.site-header .header {
    min-height: var(--site-header-height);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: min-height 180ms ease, padding 180ms ease;
}

.site-header .header__logo img {
    max-height: 64px;
    width: auto;
    transition: max-height 180ms ease;
}

.site-header.is-compact {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.site-header.is-compact .header {
    min-height: 62px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.site-header.is-compact .header__logo img {
    max-height: 50px;
}

.site-header .header__nav {
    align-items: center;
    margin: 0;
}

.site-header .header__nav-item-link--active,
.site-header [aria-current="page"] {
    color: #dcc08e;
}

.site-header .header__nav-item--dropdown.is-open .dropdown {
    display: flex;
    padding: 20px;
}

.site-header .header__nav-item--dropdown.is-force-closed .dropdown {
    display: none !important;
}

.site-header .header__burger {
    padding: 0;
    background: transparent;
}

.site-header .header__burger-dropdown {
    padding: 0;
    border: 0;
    background: transparent;
}

.service-placeholder {
    min-height: 62vh;
    display: flex;
    align-items: center;
    background-color: #1f1f1f;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.service-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(16, 16, 16, 0.94), rgba(16, 16, 16, 0.56));
}

.service-placeholder__content {
    max-width: 760px;
    padding: 90px 0;
}

.service-placeholder__title {
    margin: 0 0 24px;
    font-family: "NEXT-ART", "Gravity", sans-serif;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.08;
}

.service-placeholder__text {
    max-width: 680px;
    margin: 0 0 32px;
    font-family: "Gravity", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4;
}

.service-placeholder__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    background: linear-gradient(265.3deg, #dcc08e -18.61%, #a78650 98.26%);
    color: #101010;
    font-family: "Gravity", sans-serif;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 991px) {
    :root {
        --site-header-height: var(--site-header-height-mobile);
    }

    .site-header .header {
        min-height: var(--site-header-height-mobile);
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header .header__logo img,
    .site-header.is-compact .header__logo img {
        max-height: 54px;
    }

    .site-header.is-compact .header {
        min-height: 60px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .site-header .header__burger-content {
        position: fixed;
        height: 100vh;
        height: 100dvh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header .header,
    .site-header .header__logo img {
        transition: none;
    }
}
