* {
    box-sizing: border-box;
}

:root {
    --paper: #f6f1e8;
    --surface: #fffaf0;
    --ink: #111111;
    --muted: #5c5851;
    --quiet: #8b857a;
    --rule: #d6ccbb;
    --rule-strong: #1c1c1c;
    --accent: #b3232f;
    --accent-soft: #f1dfd7;
}

html {
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.62;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--rule-strong);
}

.topline {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 26px 24px 20px;
    border-bottom: 1px solid var(--rule);
}

.publication {
    display: inline-block;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(2.2rem, 8vw, 5.8rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-decoration: none;
}

.tagline {
    margin: 9px 0 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-nav {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 24px;
}

.nav-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 13px 0;
    border-right: 1px solid var(--rule);
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-item:first-child {
    padding-right: 22px;
}

.nav-item:last-child {
    padding-left: 22px;
    border-right: 0;
}

.nav-item:hover {
    color: var(--ink);
}

.nav-item.is-active {
    color: var(--ink);
}

.nav-item.is-active span:last-child {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
}

.nav-index {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
}

.page {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: clamp(42px, 7vw, 82px) 24px 88px;
}

.article {
    max-width: 760px;
    margin: 0 auto;
}

.kicker {
    margin: 0 0 15px;
    color: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 900px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(2.45rem, 6.2vw, 5.4rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.standfirst {
    margin: 25px 0 32px;
    padding: 0 0 26px;
    border-bottom: 1px solid var(--rule-strong);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.12rem, 2.1vw, 1.42rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.018em;
}

.lead-art {
    margin: 0 0 38px;
}

.lead-art img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--rule-strong);
    background: #fff;
    filter: grayscale(100%);
}

.lead-art figcaption {
    margin: 9px 0 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    line-height: 1.35;
}

.article p:not(.kicker):not(.standfirst) {
    margin: 0 0 1.18rem;
    color: var(--ink);
    font-size: clamp(1.05rem, 1.6vw, 1.16rem);
}

.article p:not(.kicker):not(.standfirst) + p:not(.kicker):not(.standfirst) {
    text-indent: 1.15em;
}

.lead-art + p,
.standfirst + p {
    text-indent: 0 !important;
}

.article p:not(.kicker):not(.standfirst):first-of-type::first-letter {
    float: left;
    margin: 0.07em 0.1em 0 0;
    color: var(--accent);
    font-size: 4.2em;
    line-height: 0.75;
}

@media (min-width: 980px) {
    .article {
        max-width: 780px;
    }

    .lead-art {
        margin-left: -92px;
        margin-right: -92px;
    }
}

@media (max-width: 700px) {
    .topline {
        padding: 20px 18px 16px;
    }

    .section-nav {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .nav-item,
    .nav-item:first-child,
    .nav-item:last-child {
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid var(--rule);
    }

    .nav-item:last-child {
        border-bottom: 0;
    }

    .page {
        padding: 34px 18px 64px;
    }

    h1 {
        font-size: clamp(2.15rem, 12vw, 3.7rem);
    }

    .standfirst {
        font-size: 1.08rem;
    }

    .article p:not(.kicker):not(.standfirst) + p:not(.kicker):not(.standfirst) {
        text-indent: 0;
    }
}

@media print {
    body {
        background: #fff;
    }

    .site-header {
        display: none;
    }

    .page {
        padding: 24px;
    }

    .lead-art img {
        max-width: 100%;
    }
}
