.hero-art {
    background: var(--ink);
    transform: none;
    isolation: isolate;
}

.hero-art img,
.hero-art__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-art img {
    object-fit: cover;
    object-position: center top;
    filter: saturate(.8) contrast(1.05);
}

.hero-art__overlay {
    background: linear-gradient(135deg, rgba(33, 31, 32, .72), rgba(223, 47, 46, .2) 55%, rgba(33, 31, 32, .45));
    z-index: 1;
}

.hero-art__word,
.hero-art__caption {
    z-index: 2;
}

/* The logo is part of the header flow, so the notice can never pass beneath it. */
.site-header__inner {
    min-height: 170px;
}

.brand img {
    position: static;
    flex: 0 0 auto;
}

.status-banner__inner {
    padding-left: 0;
    justify-content: center;
    text-align: center;
    position: relative;
}

.status-banner__inner > a {
    position: absolute;
    right: 0;
}

.hero-art__word {
    text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}

@media (max-width: 800px) {
    .site-header__inner {
        min-height: 112px;
    }

    .brand img {
        width: 105px;
        height: 105px;
    }

    .site-nav {
        top: 112px;
    }

    .status-banner__inner {
        padding: 12px 0 14px;
        align-items: center;
    }

    .status-banner__inner > a {
        position: static;
    }

    .hero-art {
        transform: none;
    }
}
