.spa-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.spa-site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.spa-site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    flex: 0 0 auto;
    text-decoration: none;
}

.spa-site-header__logo {
    display: block;
    width: auto;
    height: 3.8rem;
    max-width: 220px;
    object-fit: contain;
}

.spa-site-header__title {
    color: #eabd4c;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.spa-site-header__toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.spa-site-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.spa-site-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
    flex-wrap: nowrap;
}

.spa-site-header__link {
    color: #eabd4c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.spa-site-header__link:hover,
.spa-site-header__link:focus-visible {
    color: #fff;
    opacity: 1;
}

.spa-site-header__link--active {
    color: #f59e0b;
}

@media (max-width: 1100px) {
    .spa-site-header__inner {
        flex-wrap: wrap;
    }

    .spa-site-header__toggle {
        display: inline-flex;
    }

    .spa-site-header__nav {
        display: none;
        width: 100%;
        margin-left: 0;
        padding-top: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .spa-site-header__nav.is-open {
        display: flex;
    }
}

@media (max-width: 640px) {
    .spa-site-header__inner {
        padding: 0.7rem 1rem;
        gap: 0.75rem;
    }

    .spa-site-header__logo {
        height: 3.1rem;
    }

    .spa-site-header__title {
        font-size: 0.95rem;
        white-space: normal;
    }
}

#cookiesdirective > div:nth-child(2) {
    align-items: flex-start !important;
    padding-top: 96px;
}

#cookiesdirective .cookie-wrapper {
    margin-top: 0 !important;
}
