.site-header {
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(245, 169, 0, 0.22);
    color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    min-width: max-content;
}

.brand__mark {
    align-items: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
    border-radius: 50%;
    color: var(--color-black);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.brand__text strong,
.brand__text small {
    display: block;
}

.brand__text strong {
    color: var(--color-white);
    font-size: 21px;
    letter-spacing: 0;
    line-height: 1;
}

.brand__text small {
    color: var(--color-gold-soft);
    font-size: 9px;
    font-weight: 700;
    margin-top: 4px;
}

.primary-nav {
    justify-self: center;
}

.primary-nav .menu,
.site-footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav .menu {
    align-items: center;
    display: flex;
    gap: 24px;
}

.primary-nav a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.nav-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 42px;
    padding: 8px;
    width: 42px;
}

.nav-toggle__line {
    background: var(--color-white);
    display: block;
    height: 2px;
    margin: 6px 0;
    width: 24px;
}

.section {
    padding: 96px 0;
}

.section--dark {
    background: var(--color-black);
    color: var(--color-white);
}

.section-heading {
    margin-bottom: 34px;
    max-width: 720px;
}

.split {
    display: grid;
    gap: 48px;
    grid-template-columns: 0.9fr 1.1fr;
}

.content-wrap {
    max-width: 920px;
}

.content-wrap--narrow {
    max-width: 760px;
}

.site-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(245, 169, 0, 0.18);
    color: var(--color-white);
    padding: 56px 0 42px;
}

.site-footer__grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.6fr 0.8fr 1fr 0.9fr 1.5fr;
}

.site-footer h2 {
    color: var(--color-white);
    font-size: 13px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.site-footer .menu li {
    margin-bottom: 8px;
}

.site-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 36px 0 0;
    padding-top: 22px;
    text-align: center;
}
