:root {
    --site-header-orange: var(--orange, #ff4b0b);
    --site-header-muted: var(--muted, #9ba5af);
}

.site-header {
    width: min(1150px, calc(100% - 2rem));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    flex: none;
    color: inherit;
    text-decoration: none;
}

.site-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    border-radius: 15%;
    background: var(--site-header-orange);
    color: #170803;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 0 28px rgba(255, 75, 11, .23);
}

.site-brand-copy {
    min-width: 0;
    display: grid;
    gap: .25rem;
}

.site-brand-copy strong {
    color: inherit;
    font-size: .95rem;
    line-height: 1;
    letter-spacing: .28rem;
    white-space: nowrap;
}

.site-brand-copy small {
    display: block;
    color: var(--site-header-muted);
    font-size: .56rem;
    line-height: 1;
    letter-spacing: .16rem;
    white-space: nowrap;
}

@media (max-width: 650px) {
    .site-header {
        width: calc(100% - 2rem);
        min-height: 78px;
        gap: .75rem;
    }

    .site-brand {
        gap: .65rem;
    }

    .site-brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 1rem;
    }

    .site-brand-copy strong {
        font-size: .7rem;
        letter-spacing: .13rem;
    }

    .site-brand-copy small {
        display: block;
        font-size: .63rem;
        letter-spacing: .09rem;
    }
}

@media (max-width: 370px) {
    .site-header {
        width: calc(100% - 1rem);
    }

    .site-brand-copy strong {
        font-size: .64rem;
        letter-spacing: .1rem;
    }

    .site-brand-copy small {
        font-size: .63rem;
        letter-spacing: .065rem;
    }
}
