.site-header {
    height: 122px;
    transition: height .34s ease, box-shadow .34s ease;
}

.site-header.is-compact {
    height: 86px;
    box-shadow: 0 10px 38px rgba(16, 17, 24, .06);
}

.brand {
    width: 270px;
    min-width: 270px;
    transition: width .34s ease, min-width .34s ease;
}

.site-header.is-compact .brand {
    width: 170px;
    min-width: 170px;
}

.brand-logo-switch {
    display: grid;
    place-items: center start;
    width: 270px;
    height: 76px;
    transition: width .34s ease, height .34s ease;
}

.brand-logo {
    display: block;
    grid-area: 1 / 1;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    transition: opacity .24s ease, transform .34s ease, max-width .34s ease, max-height .34s ease;
}

.brand-logo--primary {
    max-width: 270px;
    max-height: 76px;
    opacity: 1;
    transform: scale(1);
    transform-origin: left center;
}

.brand-logo--compact {
    max-width: 170px;
    max-height: 48px;
    opacity: 0;
    transform: scale(.9);
    transform-origin: left center;
}

.site-header.is-compact .brand-logo-switch {
    width: 170px;
    height: 48px;
}

.site-header.is-compact .brand-logo--primary {
    opacity: 0;
    transform: scale(.82);
}

.site-header.is-compact .brand-logo--compact {
    opacity: 1;
    transform: scale(1);
}

.system-brand-logo {
    display: block;
    width: 172px;
    height: 48px;
    overflow: visible;
    color: var(--accent);
}

.system-brand-logo text {
    fill: var(--ink);
    font: 950 31px/1 ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -1.4px;
}

.system-brand-logo .logo-dot {
    fill: var(--signal);
}

.system-brand-logo--footer {
    width: 190px;
    height: 55px;
    margin-bottom: 18px;
    color: var(--signal);
}

.system-brand-logo--footer text {
    fill: #fff;
}

.footer-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 240px;
    max-height: 82px;
    margin-bottom: 18px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 900px) {
    .site-header {
        height: 96px;
    }

    .site-header.is-compact {
        height: 72px;
    }

    .brand {
        width: 185px;
        min-width: 185px;
    }

    .site-header.is-compact .brand {
        width: 135px;
        min-width: 135px;
    }

    .site-header nav {
        top: 96px;
    }

    .site-header.is-compact nav {
        top: 72px;
    }

    .brand-logo-switch {
        width: 185px;
        height: 55px;
    }

    .brand-logo--primary {
        max-width: 185px;
        max-height: 55px;
    }

    .brand-logo--compact {
        max-width: 135px;
        max-height: 40px;
    }

    .site-header.is-compact .brand-logo-switch {
        width: 135px;
        height: 40px;
    }

    .system-brand-logo {
        width: 142px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .brand,
    .brand-logo-switch,
    .brand-logo {
        transition: none;
    }
}
