html {
    min-height: 100%;
}

body {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.page {
    box-sizing: border-box;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2rem;
    min-height: 100%;
    padding: 2rem 1.5rem 4.5rem;
}

.site-footer {
    background: #000;
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 1.5rem;
    position: fixed;
    right: 0;
    z-index: 10;
}

.site-footer__nav {
    color: #595959;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.75rem;
    gap: 0.5rem;
    justify-content: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: #999999;
}

.home {
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: center;
}

.home main {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.site-header {
    align-items: center;
    display: flex;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    justify-content: center;
}

.site-header__brand {
    align-items: center;
    color: inherit;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    text-decoration: none;
}

.site-header__brand img {
    display: block;
    flex-shrink: 0;
    height: 1.5em;
    width: 1.5em;
}

.site-header__title {
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.35em;
    line-height: 1;
    text-indent: 0.35em;
    text-transform: uppercase;
}

.home section {
    border: 1px solid #1f1f1f;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    padding: 1.25rem 1.5rem;
}

.home section p {
    color: #b3b3b3;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.home section p:first-child {
    color: #e6e6e6;
    font-weight: 600;
}

.home section p:has(> a:only-child) {
    display: flex;
    justify-content: center;
}

.home section p:has(> a:only-child) a {
    border: 1px solid #404040;
    color: #e6e6e6;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.home section p:has(> a:only-child) a:hover {
    border-color: #737373;
    color: #fff;
}

article {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    max-width: 40rem;
    width: 100%;
}

article > main {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 0.75rem;
}

article > main h1 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0;
}

article > main h2 {
    color: #e6e6e6;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

article > main p,
article > main li {
    color: #b3b3b3;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

article > main ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding-left: 1.25rem;
}

article > main address a,
article > main p a {
    color: #b3b3b3;
    text-decoration: underline;
    text-decoration-color: #383838;
    text-underline-offset: 0.2em;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

article > main address a:hover,
article > main p a:hover {
    color: #e6e6e6;
    text-decoration-color: #737373;
}

article > main address {
    color: #b3b3b3;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.65;
}

article > main strong {
    color: #e6e6e6;
    font-weight: 600;
}

article > main hr {
    border: 0;
    border-top: 1px solid #1f1f1f;
    margin: 0;
}

article > main hr + p {
    display: flex;
    justify-content: center;
}

article > main hr + p a {
    border: 1px solid #404040;
    color: #e6e6e6;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.15s ease, color 0.15s ease;
}

article > main hr + p a:hover {
    border-color: #737373;
    color: #fff;
}
