@font-face {
    font-family: "Larien Sans";
    src: local("Helvetica Neue");
    font-style: normal;
    font-weight: 300 700;
}

:root {
    --paper: #f0ece4;
    --ink: #20201e;
    --muted: #68665f;
    --accent: #a84932;
    --line: rgba(32, 32, 30, 0.24);
    --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
    --sans: "Larien Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: var(--ink);
    color: var(--ink);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--paper);
    font-family: var(--sans);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.page-shell {
    display: flex;
    min-height: calc(100vh - 74px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 34px clamp(24px, 5vw, 76px) 44px;
    flex-direction: column;
}

.page-main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.site-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.wordmark {
    font-family: var(--serif);
    font-size: clamp(31px, 3vw, 43px);
    line-height: 1;
    letter-spacing: -0.055em;
    text-decoration: none;
}

.wordmark span {
    color: var(--accent);
}

.eyebrow,
.kicker,
.outlook > p,
.outlook li,
.site-footer {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--muted);
}

.hero {
    display: grid;
    flex: 1;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(56px, 9vw, 140px);
    align-items: center;
    padding: clamp(60px, 9vh, 104px) 0 clamp(54px, 8vh, 88px);
}

.hero-copy {
    max-width: 760px;
}

.kicker {
    margin-bottom: 25px;
    color: var(--accent);
}

h1 {
    max-width: 730px;
    font-family: var(--serif);
    font-size: clamp(58px, 8.2vw, 118px);
    font-weight: 400;
    line-height: 0.84;
    letter-spacing: -0.06em;
}

h1 em {
    color: var(--accent);
    font-weight: 400;
}

.intro {
    max-width: 590px;
    margin-top: clamp(34px, 5vw, 58px);
    font-family: var(--serif);
    font-size: clamp(21px, 2vw, 29px);
    line-height: 1.32;
}

.status {
    max-width: 500px;
    margin-top: 21px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.fashion-mark {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, transparent 47%, rgba(168, 73, 50, 0.11) 47%, rgba(168, 73, 50, 0.11) 53%, transparent 53%),
        #e6dfd4;
}

.fashion-mark::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68%;
    aspect-ratio: 1 / 1.35;
    border: 1px solid var(--accent);
    border-radius: 50% 50% 46% 46% / 39% 39% 61% 61%;
    content: "";
    transform: translate(-50%, -48%) rotate(-7deg);
}

.fashion-mark__line {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 1px;
    height: 82%;
    background: var(--line);
    transform-origin: center;
}

.fashion-mark__line--one {
    transform: translate(-50%, -50%) rotate(19deg);
}

.fashion-mark__line--two {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fashion-mark__line--three {
    transform: translate(-50%, -50%) rotate(71deg);
}

.fashion-mark__label {
    position: absolute;
    right: 17px;
    bottom: 15px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.18em;
}

.outlook {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.outlook > p {
    color: var(--accent);
}

.outlook ul {
    display: flex;
    list-style: none;
}

.outlook li + li::before {
    margin: 0 14px;
    color: var(--accent);
    content: "·";
}

.site-footer {
    display: grid;
    min-height: 74px;
    padding: 0 clamp(24px, 5vw, 76px);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: var(--ink);
    color: #d8d3ca;
}

.footer-note {
    color: #8f8b84;
}

.site-footer nav {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

.not-found {
    display: flex;
    flex: 1;
    max-width: 780px;
    padding: clamp(60px, 11vh, 130px) 0;
    flex-direction: column;
    justify-content: center;
}

.not-found .status a {
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.site-footer a {
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
    text-decoration-color: var(--accent);
}

@media (max-width: 820px) {
    .page-shell {
        min-height: auto;
    }

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

    .fashion-mark {
        min-height: 360px;
    }

    .outlook {
        gap: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        min-height: 116px;
        padding-top: 25px;
        padding-bottom: 25px;
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .footer-note {
        display: none;
    }
}

@media (max-width: 520px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .hero {
        padding-top: 48px;
    }

    h1 {
        font-size: clamp(54px, 18vw, 82px);
    }

    .fashion-mark {
        min-height: 285px;
    }

    .outlook ul {
        gap: 10px;
        flex-direction: column;
    }

    .outlook li + li::before {
        margin: 0 8px 0 0;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}
