:root {
    --page-bg: #0d0907;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: var(--page-bg);
}

body {
    color: #f6ead8;
    font-family: Georgia, "Times New Roman", serif;
}

.site-shell {
    width: 100%;
    min-height: 100svh;
    background: var(--page-bg);
}

.hero-wrap {
    display: block;
    width: 100%;
    min-height: 100svh;
    line-height: 0;
    background: var(--page-bg);
}

.hero-art {
    display: block;
    width: 100%;
    height: 100svh;
    object-fit: cover;
    object-position: center center;
    background: var(--page-bg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) and (orientation: portrait) {
    .hero-art {
        object-position: center top;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero-art {
        object-position: center center;
    }
}
