.site-header {
    width: 100%;
    background: #111111;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-block: 28px;
}

.site-logo {
    display: block;
    line-height: 0;
}

.site-logo img {
    display: block;
    width: 100px;
    height: auto;
}

.desktop-nav {
    margin-left: auto;
}

.desktop-nav__list {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.desktop-nav a {
    color: #b8b8b8;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1100;
    width: 28px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    right: 0;
    display: block;
    width: 20px;
    height: 1px;
    background: #b8b8b8;
    border-radius: 999px;
    transition:
        top 420ms cubic-bezier(0.22, 1, 0.36, 1),
        width 420ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 220ms ease,
        background-color 180ms ease;
}

.menu-toggle span:nth-child(1) {
    top: 7px;
}

.menu-toggle span:nth-child(2) {
    top: 15px;
}

.menu-toggle span:nth-child(3) {
    top: 23px;
    width: 16px;
}

.menu-toggle:hover span,
.menu-toggle:focus-visible span {
    background: #ffffff;
}

.menu-toggle[aria-expanded="true"] span {
    top: 15px;
    right: 0;
    width: 28px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-inline: 48px;
}
.site-footer {
    margin-top: 160px;
    padding-block: 120px 48px;
    background: #ffffff;
    color: #111111;
}

.site-footer__logo {
    display: block;
    width: 110px;
    margin-bottom: 48px;
    line-height: 0;
}

.site-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-footer__intro {
    margin: 0 0 56px;
    font-size: 15px;
    line-height: 1.5;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 64px;
}

.site-footer__nav a {
    display: block;
    color: inherit;
    font-size: 13px;
    text-decoration-line: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 3px;
}

.site-footer__contact {
    margin: 0 0 72px;
    font-size: 13px;
    font-style: normal;
    line-height: 1.6;
}

.site-footer__disclaimer {
    margin: 0 0 72px;
    font-size: 12px;
    line-height: 1.5;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    font-size: 12px;
}

.site-footer__bottom a {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 3px;
}
