.umber-page {
    display: grid;
    gap: 20px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

body:has(.umber-page) {
    background: #120d0d;
}

body:has(.umber-page) div#topbar {
    border-bottom-color: #ffcec6;
    background-color: #907575;
}

body:has(.umber-page) div#topbar a#branding h1#sitename {
    color: #ffcec6;
}

body:has(.umber-page) div#topbar a#branding img#icon {
    content: url("/Assets/icon-alts/umber-pink.png");
}

body:has(.umber-page) button#navToggle span {
    background-color: #ffcec6;
}

body:has(.umber-page) nav#siteNav a:hover,
body:has(.umber-page) nav#siteNav a:focus-visible,
body:has(.umber-page) nav#navOverflowMenu a:hover,
body:has(.umber-page) nav#navOverflowMenu a:focus-visible,
body:has(.umber-page) button#navToggle:hover,
body:has(.umber-page) button#navToggle:focus-visible {
    border-color: #ffcec6;
}

body:has(.umber-page) footer#siteFooter {
    border-top-color: #ffcec6;
    background-color: #2a2020;
}

body:has(.umber-page) footer#siteFooter a {
    text-decoration-color: #ffcec6;
}

body:has(.umber-page) footer#siteFooter a:hover,
body:has(.umber-page) footer#siteFooter a:focus-visible {
    color: #ffcec6;
}

.umber-page,
.umber-page * {
    font-family: Arial, Helvetica, sans-serif;
}

.umber-hero {
    position: relative;
    display: grid;
    min-height: min(620px, calc(100svh - 160px));
    overflow: hidden;
    border: 2px solid #ffcec6;
    border-radius: 8px;
    background: #907575;
}

.umber-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.umber-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(33, 25, 25, 0.18), rgba(33, 25, 25, 0.78)),
        radial-gradient(circle at 25% 50%, rgba(255, 206, 198, 0.16), transparent 38%);
}

.umber-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    justify-self: end;
    gap: 16px;
    box-sizing: border-box;
    width: min(540px, 100%);
    padding: clamp(24px, 5vw, 54px);
}

.umber-kicker {
    color: #ffcec6;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.umber-page h1,
.umber-page h2,
.umber-page h3 {
    color: #ffcec6;
    line-height: 1.1;
}

.umber-page h1 {
    font-size: clamp(2.4rem, 8vw, 5.8rem);
}

.umber-page h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.umber-page h3 {
    font-size: 1.25rem;
}

.umber-page p,
.umber-page li,
.umber-page a {
    color: #f8eeee;
    font-size: 1.05rem;
    line-height: 1.6;
}

.umber-page a:not(.umber-button) {
    color: #ffcec6;
    text-underline-offset: 4px;
}

.umber-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.umber-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 2px solid #ffcec6;
    border-radius: 6px;
    background: #ffcec6;
    color: #211919;
    font-weight: 700;
    text-decoration: none;
}

.umber-button.secondary {
    background: #211919;
    color: #ffcec6;
}

.umber-button:hover,
.umber-button:focus-visible {
    outline: none;
    border-color: #ffffff;
}

.umber-section {
    display: grid;
    gap: 16px;
    padding: clamp(20px, 4vw, 34px);
    border: 2px solid #7b6262;
    border-radius: 8px;
    background: #2a2020;
}

.umber-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.umber-card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid #907575;
    border-radius: 8px;
    background: #171111;
}

.umber-band {
    background: #907575;
}

.umber-band h2,
.umber-band p {
    color: #211919;
}

.umber-legal {
    width: min(880px, 100%);
}

.umber-legal h1 {
    font-size: clamp(2.1rem, 6vw, 4rem);
}

.umber-legal h2 {
    margin-top: 18px;
    font-size: 1.45rem;
}

.umber-legal ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
}

@media (max-width: 760px) {
    .umber-hero {
        min-height: auto;
    }

    .umber-hero-image {
        position: relative;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .umber-hero::after {
        display: none;
    }

    .umber-hero-copy {
        justify-self: stretch;
        background: #2a2020;
    }

    .umber-grid {
        grid-template-columns: 1fr;
    }
}
