:root {
    --ink: #13282d;
    --accent: #d46f45;
    --text: #202628;
    --muted: #697174;
    --paper: #fff;
    --wash: #f3f0e9;
    --line: #dfe2df;
    --shell: min(1180px, calc(100vw - 48px));
    --font-sans: var(--gh-font-heading, "Libre Franklin", system-ui, sans-serif);
    --font-ui: "DM Sans", system-ui, sans-serif;
    --font-serif: var(--gh-font-body, "Newsreader", Georgia, serif);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--font-sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-sans);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.has-serif-headings h1,
.has-serif-headings h2,
.has-serif-headings h3,
.has-serif-headings h4 {
    font-family: var(--font-serif);
    font-weight: 650;
    letter-spacing: -0.025em;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: 16px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-left: 12px;
    border-left: 2px solid currentColor;
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: gap .2s ease, color .2s ease;
}

.text-link:hover {
    gap: 15px;
    color: var(--accent);
}

.text-link--light:hover {
    color: #fff;
}

.image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 25%, rgba(255,255,255,.07) 25%, rgba(255,255,255,.07) 50%, transparent 50%, transparent 75%, rgba(255,255,255,.07) 75%),
        var(--ink);
    background-size: 28px 28px;
}

/* Header */

.site-header {
    position: relative;
    z-index: 100;
    height: 132px;
    background: #fff;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
}

.brand {
    align-self: stretch;
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    width: 200px;
    color: #fff;
    background: var(--ink);
}

.brand img {
    max-width: 145px;
    max-height: 66px;
}

.brand__monogram {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    background: #fff;
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: -.04em;
    clip-path: polygon(0 0, 100% 0, 77% 50%, 100% 100%, 0 100%, 23% 50%);
}

.brand__name {
    max-width: 100px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .03em;
    line-height: 1.15;
}

.site-nav {
    justify-self: center;
}

.nav {
    display: flex;
    gap: clamp(20px, 2.8vw, 40px);
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav a {
    position: relative;
    font-family: var(--font-ui);
    font-size: .77rem;
    font-weight: 600;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.nav a:hover::after,
.nav-current a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-actions a,
.icon-button {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 6px;
    place-items: center;
    border: 0;
    color: var(--text);
    background: transparent;
    cursor: pointer;
}

.header-actions svg,
.icon-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.75;
}

.menu-toggle {
    display: none;
}

/* Home hero */

.hero {
    padding: 64px 0 48px;
}

.hero__stage {
    position: relative;
    width: min(1040px, calc(100vw - 180px));
    height: min(760px, 65vw);
    min-height: 560px;
    max-height: 760px;
    margin-inline: auto;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .55s ease, visibility .55s;
}

.hero-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.hero-slide__image {
    position: absolute;
    inset: 0 12% 0 12%;
    overflow: hidden;
    background: var(--ink);
}

.hero-slide__image picture,
.hero-slide__image img {
    width: 100%;
    height: 100%;
}

.hero-slide__image img {
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.hero-slide.is-active .hero-slide__image img {
    transform: scale(1.015);
}

.hero-slide__date {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 28%;
    font-family: var(--font-ui);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-slide__panel {
    position: absolute;
    z-index: 2;
    top: 11%;
    right: 0;
    width: 58%;
    padding: clamp(34px, 4.8vw, 64px);
    color: #fff;
    background: var(--ink);
}

.hero-slide__tag {
    display: inline-block;
    margin-bottom: 26px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255,255,255,.5);
    font-family: var(--font-ui);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-slide h1 {
    max-width: 640px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3.75rem);
    text-transform: uppercase;
}

.has-serif-headings .hero-slide h1 {
    text-transform: none;
}

.hero-slide__panel p {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.72);
    font-size: .94rem;
}

.hero__controls {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;
    display: grid;
    gap: 8px;
}

.hero__controls button {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 0;
    color: #fff;
    background: var(--ink);
    cursor: pointer;
    transition: color .2s, background .2s;
}

.hero__controls button:hover {
    color: var(--ink);
    background: var(--wash);
}

.hero__controls span {
    position: absolute;
    left: 70px;
    bottom: 17px;
    width: 70px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: .7rem;
}

.hero--empty {
    display: grid;
    min-height: 560px;
    place-items: center;
    background: var(--wash);
}

.hero-empty__panel {
    width: min(700px, calc(100% - 48px));
    padding: 70px;
    color: #fff;
    background: var(--ink);
}

.hero-empty__panel h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 6rem);
}

/* Newsletter */

.home__newsletter {
    padding-block: 48px 72px;
}

.newsletter {
    padding: 6px;
    background: repeating-linear-gradient(135deg, #d6d6d0 0 1px, transparent 1px 4px);
}

.newsletter__inner {
    padding: 50px clamp(28px, 8vw, 118px);
    text-align: center;
    color: #fff;
    background: var(--ink);
}

.newsletter .eyebrow {
    color: rgba(255,255,255,.62);
}

.newsletter h2 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.newsletter__inner > p:not(.eyebrow) {
    margin-bottom: 26px;
    color: rgba(255,255,255,.68);
    font-size: .87rem;
}

.newsletter-form__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 720px;
    margin-inline: auto;
}

.newsletter-form input {
    min-width: 0;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 0;
    outline: none;
    color: #fff;
    background: rgba(255,255,255,.08);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,.5);
}

.newsletter-form input:focus {
    border-color: #fff;
}

.newsletter-form button {
    min-width: 130px;
    padding: 14px 22px;
    border: 1px solid #fff;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
}

.button-loading,
.form-message {
    display: none;
}

.newsletter-form.loading .button-label {
    display: none;
}

.newsletter-form.loading .button-loading,
.newsletter-form.success .form-message--success,
.newsletter-form.error .form-message--error {
    display: block;
}

.form-message {
    margin: 14px 0 0;
    font-size: .78rem;
}

/* Topics */

.topic-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-bottom: 100px;
}

.topic-tile {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: var(--ink);
}

.topic-tile::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(8,22,25,.32));
    content: "";
}

.topic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.topic-tile:hover img {
    transform: scale(1.04);
}

.topic-tile > span:last-child {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 22px;
    padding: 8px 13px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.75);
    background: var(--ink);
    font-family: var(--font-ui);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

/* Stories */

.stories {
    padding-bottom: 120px;
}

.section-heading {
    margin-bottom: 44px;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    text-transform: uppercase;
}

.has-serif-headings .section-heading h2 {
    text-transform: none;
}

.section-heading::after {
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 23px;
    background: var(--accent);
    content: "";
}

.stories__layout {
    display: grid;
    grid-template-columns: minmax(0, 2.25fr) minmax(250px, .72fr);
    gap: clamp(48px, 6vw, 84px);
    align-items: start;
}

.story-feed {
    display: grid;
    gap: 92px;
}

.story-card__image {
    position: relative;
    display: block;
    height: clamp(340px, 45vw, 560px);
    overflow: hidden;
    background: var(--ink);
}

.story-card__image picture,
.story-card__image img {
    width: 100%;
    height: 100%;
}

.story-card__image img {
    object-fit: cover;
    transition: transform .5s ease;
}

.story-card:hover .story-card__image img {
    transform: scale(1.018);
}

.story-card__tag {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 50%;
    padding: 16px 10px;
    color: #fff;
    background: var(--ink);
    font-family: var(--font-ui);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
}

.story-card__body {
    padding-top: 29px;
}

.story-card__meta {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.story-card__meta span::before {
    margin-right: 18px;
    content: "•";
}

.story-card h3 {
    margin-bottom: 19px;
    font-size: clamp(1.8rem, 3.2vw, 2.9rem);
    text-transform: uppercase;
}

.has-serif-headings .story-card h3 {
    text-transform: none;
}

.story-card__body > p {
    max-width: 700px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .94rem;
}

.sidebar {
    position: sticky;
    top: 28px;
    display: grid;
    gap: 48px;
}

.author-card {
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.author-card__cover {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    opacity: .8;
}

.author-card__body {
    position: relative;
    padding: 35px 28px 29px;
    text-align: center;
}

.author-card__avatar {
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 64px;
    border: 4px solid var(--ink);
    border-radius: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.author-card .eyebrow {
    color: rgba(255,255,255,.55);
}

.author-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.author-card__body > p:last-child {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: .82rem;
}

.sidebar-list {
    border-top: 3px solid var(--ink);
    padding-top: 25px;
}

.sidebar-list .eyebrow {
    color: var(--text);
}

.sidebar-list ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.sidebar-list li > span {
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.sidebar-list li a {
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.45;
}

.newsletter--compact {
    padding: 0;
    background: none;
}

.newsletter--compact .newsletter__inner {
    padding: 34px 25px;
}

.newsletter--compact h2 {
    font-size: 1.25rem;
}

.newsletter--compact .newsletter-form__row {
    display: block;
}

.newsletter--compact input,
.newsletter--compact button {
    width: 100%;
}

.newsletter--compact button {
    margin-top: 10px;
}

.empty-state {
    padding: 70px;
    color: #fff;
    background: var(--ink);
}

/* Archives */

.archive {
    padding-block: 90px 130px;
}

.archive-header {
    max-width: 860px;
    margin-bottom: 72px;
}

.archive-header h1,
.page-header h1 {
    margin-bottom: 22px;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
}

.archive-header > p:not(.eyebrow),
.page-header > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.1rem;
}

.archive-header--image {
    max-width: none;
    min-height: 420px;
    padding: 80px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(9,25,28,.9), rgba(9,25,28,.25)),
        var(--archive-image) center/cover;
}

.archive-header--image > p:not(.eyebrow) {
    color: rgba(255,255,255,.78);
}

.author-header img {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.author-header > span {
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: .75rem;
    text-transform: uppercase;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 30px;
}

.archive-card__image {
    display: block;
    height: 260px;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--ink);
}

.archive-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.archive-card:hover .archive-card__image img {
    transform: scale(1.025);
}

.archive-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.archive-card__meta a {
    color: var(--accent);
}

.archive-card h2 {
    margin-bottom: 13px;
    font-size: 1.55rem;
}

.archive-card > p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 85px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.pagination__next {
    justify-self: end;
}

/* Post and page */

.post {
    padding-top: 80px;
}

.post-hero {
    max-width: 1020px;
    margin-bottom: 55px;
    text-align: center;
}

.post-hero__meta {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.post-hero__meta a {
    color: var(--accent);
}

.post-hero h1 {
    max-width: 1000px;
    margin: 0 auto 30px;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.post-hero__excerpt {
    max-width: 720px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.5;
}

.post-hero__byline {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-ui);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-hero__byline > a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.post-hero__byline img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.post-share {
    padding-left: 25px;
    border-left: 1px solid var(--line);
}

.post-feature {
    width: min(1320px, calc(100vw - 48px));
    margin-bottom: 65px;
}

.post-feature img {
    width: 100%;
    max-height: 780px;
    object-fit: cover;
}

.post-feature figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: .72rem;
    text-align: center;
}

.post-content {
    width: min(720px, calc(100vw - 48px));
    margin-inline: auto;
    font-family: var(--font-serif);
    font-size: 1.18rem;
    line-height: 1.82;
}

.post-content > * {
    margin-bottom: 1.65em;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2em;
    margin-bottom: .65em;
    font-family: var(--font-sans);
}

.post-content h2 {
    font-size: 2.2rem;
}

.post-content h3 {
    font-size: 1.65rem;
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content blockquote {
    padding: 8px 0 8px 30px;
    border-left: 4px solid var(--accent);
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.45;
}

.post-content :is(.kg-width-wide, .kg-gallery-card) {
    width: min(1040px, calc(100vw - 48px));
    margin-left: 50%;
    transform: translateX(-50%);
}

.post-content .kg-width-full {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.post-content iframe,
.post-content video {
    max-width: 100%;
}

.post-content figcaption {
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: .72rem;
    line-height: 1.5;
    text-align: center;
}

.post-footer {
    width: min(900px, calc(100vw - 48px));
    padding-block: 60px 100px;
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.post-tags a {
    padding: 8px 13px;
    border: 1px solid var(--line);
    font-family: var(--font-ui);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.post-comments {
    margin-top: 70px;
}

.related {
    padding-block: 90px 120px;
    border-top: 1px solid var(--line);
}

.related .archive-grid {
    grid-template-columns: repeat(3, 1fr);
}

.page {
    padding-block: 90px 120px;
}

.page-header {
    width: min(920px, var(--shell));
    margin-bottom: 60px;
}

.page .post-content {
    min-height: 25vh;
}

.error-page {
    min-height: 65vh;
    padding-block: 130px;
}

.error-page h1 {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: clamp(3rem, 8vw, 7rem);
}

/* Footer */

.site-footer {
    color: #fff;
    background: var(--ink);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 55px;
    align-items: center;
    width: var(--shell);
    min-height: 210px;
    margin-inline: auto;
}

.footer-brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-family: var(--font-ui);
    font-weight: 600;
}

.footer-brand img {
    max-width: 150px;
    max-height: 55px;
}

.site-footer__inner > p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
}

.footer-meta {
    color: rgba(255,255,255,.58);
    font-family: var(--font-ui);
    font-size: .68rem;
    text-align: right;
    text-transform: uppercase;
}

.footer-meta .nav {
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.footer-meta .nav a {
    font-size: .63rem;
}

@media (max-width: 1020px) {
    :root {
        --shell: min(100% - 40px, 900px);
    }

    .site-header {
        height: 106px;
    }

    .site-header__inner {
        grid-template-columns: 170px 1fr auto;
    }

    .brand {
        width: 155px;
    }

    .brand__name {
        font-size: .82rem;
    }

    .site-nav .nav {
        gap: 20px;
    }

    .site-nav .nav a {
        font-size: .69rem;
    }

    .header-actions a {
        display: none;
    }

    .hero {
        padding-top: 44px;
    }

    .hero__stage {
        width: calc(100vw - 80px);
        height: 680px;
    }

    .hero-slide__image {
        inset-inline: 8%;
    }

    .hero-slide__panel {
        width: 65%;
    }

    .stories__layout {
        grid-template-columns: minmax(0, 1fr) 250px;
        gap: 45px;
    }

    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --shell: calc(100% - 32px);
    }

    .site-header {
        height: 82px;
    }

    .site-header__inner {
        grid-template-columns: 128px 1fr auto;
        width: 100%;
        padding-right: 16px;
    }

    .brand {
        position: relative;
        z-index: 2;
        width: 128px;
    }

    .brand__monogram {
        width: 34px;
        height: 34px;
        font-size: .65rem;
    }

    .brand__name {
        display: none;
    }

    .menu-toggle {
        z-index: 2;
        grid-column: 3;
        grid-row: 1;
        display: grid;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 12px 9px;
        border: 0;
        background: transparent;
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        height: 2px;
        background: var(--ink);
        transition: transform .2s ease;
    }

    .menu-open .menu-toggle span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 0;
        display: grid;
        visibility: hidden;
        place-items: center;
        padding: 100px 24px 40px;
        opacity: 0;
        background: var(--paper);
        transition: opacity .25s, visibility .25s;
    }

    .menu-open .site-nav {
        visibility: visible;
        opacity: 1;
    }

    .site-nav .nav {
        display: grid;
        gap: 26px;
        text-align: center;
    }

    .site-nav .nav a {
        font-size: 1.1rem;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        margin-right: 8px;
    }

    .hero {
        padding: 24px 0 38px;
    }

    .hero__stage {
        width: calc(100vw - 32px);
        height: 650px;
        min-height: 0;
    }

    .hero-slide__image {
        inset: 0 0 145px;
    }

    .hero-slide__panel {
        top: auto;
        right: 0;
        bottom: 45px;
        width: calc(100% - 24px);
        padding: 27px;
    }

    .hero-slide__tag {
        margin-bottom: 16px;
    }

    .hero-slide h1 {
        margin-bottom: 13px;
        font-size: clamp(1.65rem, 8vw, 2.35rem);
    }

    .hero-slide__panel p {
        display: none;
    }

    .hero-slide__date {
        display: none;
    }

    .hero__controls {
        bottom: 0;
        display: flex;
    }

    .hero__controls button {
        width: 42px;
        height: 42px;
    }

    .hero__controls span {
        left: 98px;
        bottom: 12px;
    }

    .home__newsletter {
        padding-block: 25px 52px;
    }

    .newsletter__inner {
        padding: 38px 20px;
    }

    .newsletter-form__row {
        display: block;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-form button {
        margin-top: 10px;
    }

    .topic-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 72px;
    }

    .topic-tile {
        height: 130px;
    }

    .stories {
        padding-bottom: 85px;
    }

    .stories__layout {
        display: block;
    }

    .story-feed {
        gap: 65px;
    }

    .story-card__image {
        height: 62vw;
        min-height: 250px;
    }

    .story-card h3 {
        font-size: 1.85rem;
    }

    .sidebar {
        position: static;
        margin-top: 90px;
    }

    .archive {
        padding-block: 65px 90px;
    }

    .archive-header {
        margin-bottom: 48px;
    }

    .archive-header h1,
    .page-header h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .archive-header--image {
        min-height: 360px;
        padding: 44px 25px;
    }

    .archive-grid,
    .related .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-card__image {
        height: 62vw;
    }

    .post {
        padding-top: 55px;
    }

    .post-hero__meta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .post-hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .post-feature {
        width: 100%;
    }

    .post-content {
        width: calc(100vw - 40px);
        font-size: 1.08rem;
    }

    .post-content :is(.kg-width-wide, .kg-gallery-card) {
        width: calc(100vw - 20px);
    }

    .site-footer__inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 55px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-meta {
        text-align: center;
    }

    .footer-meta .nav {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
