@font-face {
    font-family: "XDJ Sans";
    src: url("../fonts/sans-regular.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "XDJ Sans";
    src: url("../fonts/sans-medium.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 650;
}

@font-face {
    font-family: "XDJ Sans";
    src: url("../fonts/sans-lightitalic.woff") format("woff");
    font-display: swap;
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: "XDJ DIN";
    src: url("../fonts/DIN.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

:root {
    --ink: #0b0b0a;
    --black: #080908;
    --paper: #efeee8;
    --paper-2: #e5e4dd;
    --white: #faf9f4;
    --grey: #6e6d67;
    --soft: #b8b7b0;
    --line: rgba(11, 11, 10, .2);
    --line-dark: rgba(255, 255, 255, .22);
    --signal: #f04d31;
    --blue: #304fff;
    --display: "XDJ Sans", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    --ui: "XDJ DIN", Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    --serif: "Iowan Old Style", Baskerville, "Times New Roman", "Songti SC", STSong, serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --shell: min(1480px, calc(100vw - 72px));
}

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

html {
    background: var(--paper);
    color: var(--ink);
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: -.015em;
    overflow-x: clip;
    -webkit-tap-highlight-color: rgba(240, 77, 49, .2);
}

a,
button,
input,
textarea,
select {
    touch-action: manipulation;
}

body.is-locked {
    overflow: hidden;
}

::selection {
    background: var(--signal);
    color: #fff;
}

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

img {
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--signal);
    outline-offset: 3px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: 5000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--signal);
    color: var(--ink);
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: .08em;
    transform: translateY(-150%);
    transition: transform .25s var(--ease);
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

p,
li,
dd {
    text-wrap: pretty;
}

[id] {
    scroll-margin-top: 90px;
}

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

.site-shell,
.site-main {
    min-height: 100vh;
}

.section-code {
    color: var(--grey);
    font-family: var(--ui);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-code::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--signal);
    content: "";
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 76px;
    border-bottom: 1px solid var(--line);
    background: rgba(239, 238, 232, .92);
    transition: height .35s var(--ease), background .35s ease, border-color .35s ease;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.xdj-home .site-header {
    position: fixed;
    right: 0;
    left: 0;
    border-color: transparent;
    background: transparent;
    color: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.xdj-home .site-header.is-scrolled {
    height: 64px;
    border-color: var(--line-dark);
    background: rgba(8, 9, 8, .88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -.045em;
}

.site-brand__mark {
    display: grid;
    width: 18px;
    height: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    transform: rotate(45deg);
}

.site-brand__mark i {
    display: block;
    background: currentColor;
}

.site-brand__mark i:first-child {
    background: var(--signal);
}

.desktop-navigation {
    justify-self: center;
}

.desktop-navigation .menu,
.footer-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-navigation .menu a {
    position: relative;
    padding: 10px 0;
    color: currentColor;
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .68;
    transition: opacity .2s ease;
}

.desktop-navigation .menu a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.desktop-navigation .menu a:hover,
.desktop-navigation .current-menu-item > a {
    opacity: 1;
}

.desktop-navigation .menu a:hover::after,
.desktop-navigation .current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 20px;
}

.nav-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .14em;
}

.nav-action span {
    font-size: 18px;
    line-height: 1;
}

.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 13px;
    height: 1px;
    background: currentColor;
}

/* Fullscreen overlays */
.mobile-navigation,
.search-overlay {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    padding: 30px 36px;
    background: var(--black);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .45s ease, transform .65s var(--ease), visibility .45s;
    overscroll-behavior: contain;
}

.mobile-navigation.is-open,
.search-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-navigation__top,
.search-overlay__top,
.mobile-navigation__footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, .52);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .15em;
}

.mobile-navigation__top button,
.search-overlay__top button {
    color: #fff;
    font: inherit;
}

.mobile-navigation nav {
    display: flex;
    flex: 1;
    align-items: center;
}

.mobile-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid var(--line-dark);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: clamp(38px, 8vw, 76px);
    font-weight: 400;
    letter-spacing: -.06em;
}

.mobile-menu a::after {
    font-family: var(--ui);
    font-size: 16px;
    content: "↗";
}

.mobile-navigation__footer {
    padding-top: 18px;
    padding-bottom: 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 0;
}

.search-overlay {
    background: var(--signal);
    color: var(--ink);
}

.search-overlay__top {
    border-color: rgba(11, 11, 10, .3);
    color: rgba(11, 11, 10, .56);
}

.search-overlay__top button {
    color: var(--ink);
}

.search-overlay__form {
    width: min(1100px, 100%);
    margin: auto;
}

.search-overlay__form label {
    display: block;
    margin-bottom: 28px;
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: .16em;
}

.search-overlay__form > div {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--ink);
}

.search-overlay__form > div:focus-within {
    border-color: #fff;
    box-shadow: 0 2px 0 #fff;
}

.search-overlay__form input {
    min-width: 0;
    flex: 1;
    padding: 12px 0 22px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: clamp(42px, 8vw, 112px);
    letter-spacing: -.07em;
}

.search-overlay__form input::placeholder {
    color: rgba(11, 11, 10, .32);
}

.search-overlay__form button {
    padding: 14px 0 14px 30px;
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: .14em;
}

.search-overlay > p {
    margin: 0;
    color: rgba(11, 11, 10, .52);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .14em;
}

/* Hero */
.home-hero {
    position: relative;
    isolation: isolate;
    min-height: 790px;
    height: 100svh;
    background: #0f1114;
    color: #fff;
    overflow: hidden;
}

.home-hero__video,
.home-hero__veil,
.home-hero__grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__video {
    object-fit: cover;
    filter: saturate(.74) contrast(1.1) brightness(.7);
    transform: scale(1.015);
}

.home-hero__veil {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 4, 7, .68), rgba(3, 4, 7, .1) 58%, rgba(3, 4, 7, .42)),
        linear-gradient(180deg, rgba(3, 4, 7, .2), rgba(3, 4, 7, .74));
}

.home-hero__grid {
    z-index: -1;
    background: linear-gradient(90deg,
        transparent calc(25% - .5px), rgba(255, 255, 255, .12) 25%, transparent calc(25% + .5px),
        transparent calc(50% - .5px), rgba(255, 255, 255, .12) 50%, transparent calc(50% + .5px),
        transparent calc(75% - .5px), rgba(255, 255, 255, .12) 75%, transparent calc(75% + .5px));
}

.home-hero__inner {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    gap: 0 18px;
    padding-top: 108px;
    padding-bottom: 28px;
}

.home-hero__edition {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .48);
    color: rgba(255, 255, 255, .58);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .17em;
}

.home-hero__title {
    grid-column: 1 / 10;
    align-self: end;
    padding-bottom: 7vh;
}

.home-hero__title > p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .68);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .1em;
}

.home-hero__title h1 {
    margin: 0;
    font-size: clamp(84px, 13.2vw, 200px);
    font-weight: 650;
    line-height: .68;
    letter-spacing: -.1em;
}

.home-hero__title h1 span,
.home-hero__title h1 em {
    display: block;
}

.home-hero__title h1 em {
    margin-top: .13em;
    padding-left: .85em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -.08em;
}

.home-hero__title-foot {
    display: flex;
    gap: 26px;
    margin-top: 36px;
    margin-left: 15vw;
    color: rgba(255, 255, 255, .44);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .18em;
}

.home-hero__title-foot span::before {
    margin-right: 7px;
    color: var(--signal);
    content: "/";
}

.hero-story {
    grid-column: 10 / 13;
    align-self: end;
    margin-bottom: 7vh;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(7, 7, 7, .34);
}

.hero-story__media {
    position: relative;
    display: block;
    height: 220px;
    background: #111;
    overflow: hidden;
}

.hero-story__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .48));
    content: "";
}

.hero-story__media img,
.hero-story__media .image-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease), filter .45s ease;
}

.hero-story:hover .hero-story__media img {
    transform: scale(1.045);
}

.hero-story__media > b {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 10px;
    font-family: var(--ui);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: .13em;
}

.hero-story__body {
    padding: 16px;
}

.hero-story .post-meta-line {
    color: rgba(255, 255, 255, .5);
}

.hero-story h2 {
    margin: 18px 0 12px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.16;
}

.hero-story__body > p {
    margin: 0;
    color: rgba(255, 255, 255, .42);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.home-hero__foot {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 2fr 8fr 2fr;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .48);
    color: rgba(255, 255, 255, .5);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .13em;
}

.home-hero__foot p {
    margin: 0;
    text-align: center;
}

.home-hero__foot a {
    justify-self: end;
    color: #fff;
}

.reveal-item {
    opacity: 0;
    animation: hero-reveal 1s var(--ease) forwards;
}

.home-hero__title { animation-delay: .12s; }
.hero-story { animation-delay: .28s; }
.home-hero__foot { animation-delay: .4s; }

@keyframes hero-reveal {
    from { opacity: 0; filter: blur(12px); transform: translateY(28px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Marquee */
.signal-marquee {
    border-bottom: 1px solid var(--ink);
    background: var(--signal);
    color: var(--ink);
    overflow: hidden;
}

.signal-marquee > div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 26px;
    padding: 13px 0;
    animation: signal-slide 24s linear infinite;
}

.signal-marquee span {
    font-family: var(--ui);
    font-size: 10px;
    letter-spacing: .15em;
}

.signal-marquee i {
    font-size: 11px;
    font-style: normal;
}

@keyframes signal-slide {
    to { transform: translateX(-50%); }
}

/* Manifesto */
.journal-intro {
    padding-top: 132px;
    padding-bottom: 150px;
}

.journal-intro__body {
    display: grid;
    grid-template-columns: 9fr 3fr;
    gap: 18px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--ink);
}

.journal-intro__headline {
    font-size: clamp(64px, 8.6vw, 132px);
    font-weight: 650;
    line-height: .86;
    letter-spacing: -.085em;
}

.journal-intro__headline span {
    display: block;
}

.journal-intro__headline span:nth-child(2) {
    padding-left: 1.1em;
}

.journal-intro__headline span:nth-child(3) {
    padding-left: .3em;
}

.journal-intro__headline em {
    font-family: var(--serif);
    font-weight: 300;
}

.journal-intro__aside {
    align-self: end;
    padding-bottom: 8px;
}

.journal-intro__aside > span {
    color: var(--signal);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
}

.journal-intro__aside p {
    margin: 24px 0 0;
    color: #4f4e49;
    font-size: 13px;
    line-height: 1.9;
}

.journal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.journal-stats > div {
    display: flex;
    min-height: 160px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-right: 1px solid var(--ink);
}

.journal-stats > div:last-child {
    border-right: 0;
}

.journal-stats strong {
    font-family: var(--serif);
    font-size: 72px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -.06em;
}

.journal-stats span {
    color: var(--grey);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
}

/* Feature split */
.feature-stage {
    display: grid;
    min-height: 760px;
    grid-template-columns: 7fr 5fr;
    background: var(--black);
    color: #fff;
}

.feature-stage__media {
    position: relative;
    min-height: 760px;
    background: #141414;
    overflow: hidden;
}

.feature-stage__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .35));
    content: "";
}

.feature-stage__media img,
.feature-stage__media .image-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.75) contrast(1.05);
    transition: filter .6s ease, transform 1.2s var(--ease);
}

.feature-stage:hover .feature-stage__media img {
    filter: grayscale(.05);
    transform: scale(1.025);
}

.feature-stage__ghost {
    position: absolute;
    z-index: 2;
    right: -6px;
    bottom: -20px;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(84px, 11vw, 178px);
    font-weight: 650;
    line-height: .68;
    letter-spacing: -.1em;
    text-align: right;
    mix-blend-mode: overlay;
}

.feature-stage__label {
    position: absolute;
    z-index: 2;
    top: 24px;
    left: 28px;
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .16em;
}

.feature-stage__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 42px;
    border-left: 1px solid var(--line-dark);
}

.post-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.feature-stage__copy .post-meta-line {
    color: rgba(255, 255, 255, .42);
}

.feature-stage__copy h2 {
    margin: auto 0 30px;
    font-size: clamp(42px, 4.7vw, 76px);
    font-weight: 400;
    line-height: .96;
    letter-spacing: -.065em;
}

.feature-stage__copy > p {
    max-width: 520px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .54);
    font-size: 13px;
    line-height: 1.85;
}

.arrow-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid currentColor;
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
}

.arrow-action i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    transition: background .25s ease, color .25s ease, transform .45s var(--ease);
}

.arrow-action:hover i {
    background: currentColor;
    color: var(--black);
    transform: rotate(45deg);
}

/* Split stories */
.split-stories {
    padding-top: 140px;
    padding-bottom: 150px;
}

.section-heading {
    display: grid;
    grid-template-columns: 2fr 7fr 3fr;
    align-items: start;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--ink);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 650;
    line-height: .86;
    letter-spacing: -.075em;
}

.section-heading > p {
    max-width: 360px;
    margin: 4px 0 0;
    color: var(--grey);
    font-size: 12px;
    line-height: 1.8;
}

.split-stories__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 70px;
}

.split-story {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ink);
}

.split-story.is-offset {
    margin-top: 130px;
}

.split-story__media {
    position: relative;
    display: block;
    height: 520px;
    margin-bottom: 18px;
    background: #c8c7c0;
    overflow: hidden;
}

.split-story__media img,
.split-story__media .image-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}

.split-story:hover .split-story__media img {
    transform: scale(1.035);
}

.split-story__media > span,
.note-card__media > span {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    color: #fff;
    font-family: var(--ui);
    font-size: 8px;
}

.split-story h3 {
    max-width: 640px;
    margin: 24px 0 0;
    font-size: clamp(28px, 3.2vw, 50px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.055em;
}

/* Topic index */
.topic-index {
    padding: 130px 0 145px;
    background: var(--black);
    color: #fff;
}

.topic-index__head {
    display: grid;
    grid-template-columns: 2fr 10fr;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
}

.topic-index .section-code {
    color: rgba(255, 255, 255, .42);
}

.topic-index__head h2 {
    margin: 0;
    font-size: clamp(70px, 10vw, 150px);
    font-weight: 650;
    line-height: .8;
    letter-spacing: -.09em;
}

.topic-index__head h2 em {
    margin-right: .08em;
    font-family: var(--serif);
    font-weight: 300;
}

.topic-index__list {
    margin-top: 90px;
    border-top: 1px solid var(--line-dark);
}

.topic-index__list a {
    display: grid;
    grid-template-columns: 1fr 7fr 3fr 1fr;
    align-items: center;
    gap: 18px;
    min-height: 94px;
    border-bottom: 1px solid var(--line-dark);
    transition: padding .45s var(--ease), background .25s ease, color .25s ease;
}

.topic-index__list a:hover {
    padding-right: 16px;
    padding-left: 16px;
    background: var(--signal);
    color: var(--ink);
}

.topic-index__list span,
.topic-index__list small {
    color: rgba(255, 255, 255, .42);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .13em;
}

.topic-index__list a:hover span,
.topic-index__list a:hover small {
    color: rgba(11, 11, 10, .55);
}

.topic-index__list strong {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -.05em;
}

.topic-index__list i {
    justify-self: end;
    font-size: 20px;
    font-style: normal;
}

/* Cards and archive */
.latest-notes {
    padding-top: 140px;
    padding-bottom: 150px;
}

.section-heading--wide {
    grid-template-columns: 2fr 8fr 2fr;
    align-items: end;
}

.section-heading--wide > a {
    justify-self: end;
    padding-bottom: 6px;
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 64px 18px;
    margin-top: 72px;
}

.note-card {
    min-width: 0;
}

.note-card:nth-child(4n + 2),
.note-card:nth-child(4n + 4) {
    transform: translateY(54px);
}

.note-card__media {
    position: relative;
    display: block;
    height: 350px;
    margin-bottom: 18px;
    background: #d2d1ca;
    overflow: hidden;
}

.note-card__media img,
.note-card__media .image-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease), filter .45s ease;
}

.note-card:hover .note-card__media img {
    transform: scale(1.045);
}

.image-fallback {
    display: block;
    background:
        radial-gradient(circle at 20% 20%, rgba(240, 77, 49, .75), transparent 25%),
        linear-gradient(135deg, #a9aec4, #282b35 48%, #111 48%, #111 52%, #d7d3c7 52%);
}

.note-card h3 {
    margin: 18px 0 12px;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
}

.note-card > p {
    display: -webkit-box;
    margin: 0;
    color: var(--grey);
    font-size: 11px;
    line-height: 1.7;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.note-card__foot {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.note-card__foot a {
    color: var(--ink);
}

.closing-banner {
    position: relative;
    min-height: 720px;
    background: var(--signal);
    color: var(--ink);
    overflow: hidden;
}

.closing-banner__track {
    position: absolute;
    top: 42px;
    left: 0;
    display: flex;
    width: max-content;
    color: rgba(11, 11, 10, .11);
    font-size: 140px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: -.07em;
    white-space: nowrap;
    animation: closing-slide 34s linear infinite;
}

@keyframes closing-slide {
    to { transform: translateX(-50%); }
}

.closing-banner__inner {
    position: relative;
    display: flex;
    min-height: 720px;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 54px;
}

.closing-banner__inner > span {
    margin-bottom: 24px;
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .15em;
}

.closing-banner h2 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(62px, 8.4vw, 130px);
    font-weight: 650;
    line-height: .86;
    letter-spacing: -.085em;
}

.closing-banner h2 em {
    font-family: var(--serif);
    font-weight: 300;
}

.closing-banner__inner > a {
    align-self: flex-end;
    margin-top: -24px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
}

/* Archive and search */
.archive-hero {
    padding-top: 118px;
    padding-bottom: 74px;
}

.archive-hero h1 {
    margin: 26px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--ink);
    font-size: clamp(70px, 10vw, 152px);
    font-weight: 650;
    line-height: .82;
    letter-spacing: -.09em;
}

.archive-hero h1 em {
    font-family: var(--serif);
    font-weight: 300;
}

.archive-hero > p,
.archive-hero__description {
    max-width: 640px;
    margin: 30px 0 0 auto;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.85;
}

.archive-content {
    padding-bottom: 130px;
}

.notes-grid--archive {
    margin-top: 0;
    padding-top: 60px;
    border-top: 1px solid var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 110px;
}

.nav-links .page-numbers {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--ui);
    font-size: 9px;
}

.nav-links .current,
.nav-links a:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.nav-links .prev,
.nav-links .next {
    width: auto;
    padding: 0 18px;
    border-radius: 999px;
}

.empty-state {
    min-height: 540px;
    padding-top: 90px;
    border-top: 1px solid var(--ink);
}

.empty-state > span {
    color: var(--signal);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .14em;
}

.empty-state h2 {
    margin: 22px 0 42px;
    font-size: clamp(48px, 7vw, 94px);
    font-weight: 400;
    letter-spacing: -.07em;
}

.empty-state > a {
    border-bottom: 1px solid var(--ink);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .12em;
}

/* Single article */
.reading-progress {
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
}

.single-story__header {
    padding-top: 96px;
    padding-bottom: 58px;
}

.single-story__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--ink);
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.single-story__meta span:first-child {
    color: var(--signal);
}

.single-story__header h1 {
    max-width: 1320px;
    margin: 58px 0 0;
    font-size: clamp(58px, 8vw, 124px);
    font-weight: 650;
    line-height: .9;
    letter-spacing: -.08em;
}

.single-story__deck {
    max-width: 700px;
    margin: 42px 0 0 auto;
    color: var(--grey);
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    line-height: 1.45;
}

.single-story__byline {
    display: flex;
    max-width: 700px;
    align-items: center;
    gap: 12px;
    margin: 48px 0 0 auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.single-story__byline img {
    border-radius: 50%;
}

.single-story__byline div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.single-story__byline small,
.single-story__byline > a {
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .12em;
}

.single-story__byline strong {
    font-size: 12px;
    font-weight: 400;
}

.single-story__byline > a {
    margin-left: auto;
    color: var(--ink);
}

.single-story__hero {
    width: 100%;
    height: min(76vw, 880px);
    margin: 0;
    background: #bbb;
    overflow: hidden;
}

.single-story__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 8fr 2fr;
    gap: 18px;
    padding-top: 96px;
    padding-bottom: 110px;
}

.article-rail {
    grid-column: 1;
    align-self: start;
    position: sticky;
    top: 96px;
}

.article-rail > span {
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .14em;
}

.article-rail__share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 32px;
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.article-column {
    grid-column: 3 / 11;
    min-width: 0;
}

.article-content {
    color: #282824;
    font-size: 17px;
    line-height: 1.95;
    overflow-wrap: anywhere;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content p {
    margin: 0 0 1.55em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--ink);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.article-content h2 {
    margin: 2.4em 0 .9em;
    padding-top: 18px;
    border-top: 1px solid var(--ink);
    font-size: 42px;
}

.article-content h3 {
    margin: 2em 0 .8em;
    font-size: 30px;
}

.article-content h4 {
    font-size: 22px;
}

.article-content a {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content img,
.article-content video,
.article-content iframe {
    max-width: 100%;
    border-radius: 2px;
}

.article-content figure {
    max-width: 100%;
    margin: 2.2em 0;
}

.article-content figcaption {
    margin-top: 10px;
    color: var(--grey);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .05em;
}

.article-content blockquote {
    margin: 2em 0;
    padding: 26px 30px;
    border-left: 3px solid var(--signal);
    background: var(--paper-2);
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
}

.article-content pre {
    max-width: 100%;
    margin: 2em 0;
    padding: 24px;
    border-left: 3px solid var(--blue);
    background: #181917;
    color: #ededdf;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 13px;
    line-height: 1.7;
    overflow-x: auto;
}

.article-content code {
    padding: .16em .36em;
    border-radius: 2px;
    background: #dcdbd4;
    color: #222;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .88em;
}

.article-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.article-content table {
    width: 100%;
    margin: 2em 0;
    border-collapse: collapse;
}

.article-content th,
.article-content td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
}

.article-content th {
    background: var(--ink);
    color: #fff;
}

/* Standalone resource vault */
.resource-vault {
    margin-top: 80px;
    border-top: 1px solid var(--ink);
}

.resource-vault__header {
    display: grid;
    grid-template-columns: 2fr 6fr;
    gap: 18px;
    padding: 22px 0 42px;
}

.resource-vault__header > span {
    color: var(--signal);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .14em;
}

.resource-vault__header h2 {
    margin: 0;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: -.06em;
}

.resource-vault__list {
    border-top: 1px solid var(--ink);
}

.resource-card {
    display: grid;
    grid-template-columns: 1fr 7fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ink);
}

.resource-card__index {
    color: var(--grey);
    font-family: var(--serif);
    font-size: 46px;
    font-style: italic;
}

.resource-card__title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.resource-card__title h3 {
    margin: 0;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
}

.resource-card__title > a {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.resource-card__attributes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    margin: 28px 0 0;
    border-top: 1px solid var(--line);
}

.resource-card__attributes > div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.resource-card__attributes dt,
.resource-card__attributes dd {
    margin: 0;
    font-size: 11px;
}

.resource-card__attributes dt {
    color: var(--grey);
}

.resource-card__permission {
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 16px;
    background: var(--ink);
    color: #fff;
}

.resource-card.is-open .resource-card__permission {
    background: var(--paper-2);
    color: var(--ink);
}

.resource-card__permission span,
.resource-card__permission a {
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .11em;
}

.resource-card__permission strong {
    font-size: 12px;
    font-weight: 400;
}

.resource-card__permission a {
    justify-self: end;
    color: #ff8f7c;
}

.resource-card.is-open .resource-card__permission a {
    color: var(--blue);
}

.resource-card__actions {
    margin-top: 14px;
}

.resource-download {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid var(--ink);
    background: var(--signal);
    color: var(--ink);
}

.resource-download + .resource-download {
    margin-top: 8px;
}

.resource-download span {
    font-size: 16px;
}

.resource-download b {
    font-family: var(--ui);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: .12em;
}

.resource-codes {
    display: flex;
    gap: 24px;
    margin-top: 10px;
    color: var(--grey);
    font-family: var(--ui);
    font-size: 9px;
}

.resource-codes button {
    margin-left: 6px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--ink);
    color: var(--ink);
}

.article-declaration {
    margin-top: 70px;
    padding: 24px;
    border: 1px solid var(--ink);
    background: var(--paper-2);
}

.article-declaration > span {
    color: var(--signal);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .14em;
}

.article-declaration p {
    margin: 20px 0 0;
    color: #3d3d39;
    font-size: 12px;
    line-height: 1.8;
}

.article-declaration a {
    color: var(--blue);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 42px;
}

.article-tags > span,
.article-tags a {
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.article-tags > span {
    margin-right: 8px;
    color: var(--grey);
}

.article-tags a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.post-navigation-custom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 72px;
    padding-top: 20px;
    border-top: 1px solid var(--ink);
}

.post-navigation-custom > div {
    min-width: 0;
}

.post-navigation-custom > div:last-child {
    text-align: right;
}

.post-navigation-custom span {
    display: block;
    margin-bottom: 12px;
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .12em;
}

.post-navigation-custom a {
    font-size: 15px;
}

/* Comments */
.comments-area {
    margin-top: 90px;
    padding-top: 20px;
    border-top: 1px solid var(--ink);
}

.comments-area__header {
    display: grid;
    grid-template-columns: 2fr 6fr;
    gap: 18px;
    margin-bottom: 40px;
}

.comments-area__header > span {
    color: var(--signal);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .12em;
}

.comments-area__header h2,
.comment-reply-title {
    margin: 0;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -.05em;
}

.comment-list,
.comment-list .children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-list .children {
    margin-left: 48px;
}

.comment-body {
    margin-bottom: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--white);
}

.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-style: normal;
}

.comment-metadata,
.comment-metadata a,
.reply a {
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .08em;
}

.comment-content {
    margin-top: 18px;
    color: #33332f;
    line-height: 1.8;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    margin-top: 14px;
}

.comment-respond {
    margin-top: 64px;
    padding: 28px;
    background: var(--paper-2);
}

.comment-notes,
.logged-in-as {
    color: var(--grey);
    font-size: 11px;
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.comment-form-comment,
.comment-notes,
.logged-in-as,
.form-submit,
.comment-form-cookies-consent {
    grid-column: 1 / -1;
}

.comment-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--grey);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: var(--white);
    color: var(--ink);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form input:focus-visible,
.comment-form textarea:focus-visible,
.search-form input:focus-visible {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(48, 79, 255, .15);
}

.form-submit input,
.search-submit {
    padding: 13px 20px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
}

/* Pages and 404 */
.standard-page {
    padding-top: 110px;
    padding-bottom: 130px;
}

.standard-page > header h1 {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--ink);
    font-size: clamp(64px, 9vw, 138px);
    font-weight: 650;
    line-height: .85;
    letter-spacing: -.09em;
}

.standard-page__content {
    max-width: 860px;
    margin: 76px auto 0;
    font-size: 17px;
    line-height: 1.9;
}

.not-found-page {
    min-height: 780px;
    padding-top: 120px;
    padding-bottom: 90px;
}

.not-found-page > span {
    color: var(--signal);
    font-family: var(--ui);
    font-size: 9px;
    letter-spacing: .14em;
}

.not-found-page__number {
    margin-top: 30px;
    border-top: 1px solid var(--ink);
    font-size: clamp(180px, 32vw, 500px);
    font-weight: 650;
    line-height: .72;
    letter-spacing: -.12em;
}

.not-found-page h1 {
    max-width: 800px;
    margin: 70px 0 50px auto;
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.065em;
}

.not-found-page h1 em {
    font-family: var(--serif);
    font-weight: 300;
}

/* Footer */
.site-footer {
    padding: 34px 0 28px;
    background: var(--black);
    color: #fff;
    overflow: hidden;
}

.site-footer__top,
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__top {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line-dark);
}

.site-footer .section-code {
    color: rgba(255, 255, 255, .42);
}

.site-footer__top > a {
    color: rgba(255, 255, 255, .56);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .12em;
}

.site-footer__stage {
    position: relative;
    min-height: 720px;
    padding: 92px 0 58px;
}

.site-footer__word {
    position: absolute;
    top: 40px;
    left: -12px;
    color: rgba(255, 255, 255, .035);
    font-size: clamp(140px, 22vw, 350px);
    font-weight: 650;
    letter-spacing: -.1em;
    pointer-events: none;
}

.site-footer__copy {
    position: relative;
    display: grid;
    height: 100%;
    grid-template-columns: 8fr 4fr;
    align-items: end;
    gap: 18px;
    padding-top: 190px;
}

.site-footer__copy h2 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(62px, 8.2vw, 126px);
    font-weight: 650;
    line-height: .86;
    letter-spacing: -.085em;
}

.site-footer__copy h2 em {
    font-family: var(--serif);
    font-weight: 300;
}

.site-footer__copy > div p {
    max-width: 400px;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, .54);
    font-size: 12px;
    line-height: 1.85;
}

.site-footer__copy nav,
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.site-footer__copy nav a {
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .1em;
}

.site-footer__bottom {
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, .38);
    font-family: var(--ui);
    font-size: 8px;
    letter-spacing: .13em;
}

/* Motion */
.js .reveal-section {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(30px);
    transition: opacity .95s var(--ease), filter .95s var(--ease), transform .95s var(--ease);
}

.js .reveal-section.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 1180px) {
    :root { --shell: min(1120px, calc(100vw - 44px)); }
    .home-hero__title { grid-column: 1 / 10; }
    .hero-story { grid-column: 10 / 13; }
    .hero-story__media { height: 190px; }
    .notes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .note-card:nth-child(4n + 2), .note-card:nth-child(4n + 4) { transform: none; }
    .note-card:nth-child(3n + 2) { transform: translateY(46px); }
    .article-layout { grid-template-columns: 2fr 9fr 1fr; }
    .article-column { grid-column: 3 / 12; }
}

@media (max-width: 980px) {
    .desktop-navigation { display: none; }
    .site-header__inner { grid-template-columns: 1fr auto; }
    .menu-toggle { display: grid; }
    .home-hero__title { grid-column: 1 / -1; }
    .hero-story { display: none; }
    .journal-intro__body { grid-template-columns: 1fr; }
    .journal-intro__aside { max-width: 520px; margin-top: 42px; margin-left: auto; }
    .feature-stage { grid-template-columns: 1fr; }
    .feature-stage__media { min-height: 620px; }
    .feature-stage__copy { min-height: 540px; border-top: 1px solid var(--line-dark); border-left: 0; }
    .topic-index__head { grid-template-columns: 1fr; }
    .topic-index__list a { grid-template-columns: 1fr 6fr 4fr 1fr; }
    .notes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .note-card:nth-child(3n + 2) { transform: none; }
    .note-card:nth-child(even) { transform: translateY(44px); }
    .article-layout { grid-template-columns: 1fr 10fr 1fr; }
    .article-rail { display: none; }
    .article-column { grid-column: 2 / 12; }
    .site-footer__copy { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
    :root { --shell: calc(100vw - 24px); }
    body { font-size: 14px; padding-bottom: 0; }
    .site-header { height: 62px; }
    .nav-action { display: none; }
    .mobile-navigation, .search-overlay {
        padding-top: max(22px, env(safe-area-inset-top));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: max(22px, env(safe-area-inset-bottom));
        padding-left: max(16px, env(safe-area-inset-left));
    }
    .home-hero { min-height: 720px; }
    .home-hero__inner { padding-top: 84px; padding-bottom: 18px; }
    .home-hero__edition { font-size: 7px; }
    .home-hero__edition span:last-child { display: none; }
    .home-hero__title { padding-bottom: 6vh; }
    .home-hero__title h1 { font-size: clamp(76px, 27vw, 112px); }
    .home-hero__title h1 em { padding-left: .2em; }
    .home-hero__title-foot { margin-top: 30px; margin-left: 0; }
    .home-hero__foot { grid-template-columns: 1fr auto; }
    .home-hero__foot > span { display: none; }
    .home-hero__foot p { max-width: 280px; text-align: left; }
    .signal-marquee > div { padding-block: 10px; }
    .journal-intro { padding-top: 82px; padding-bottom: 92px; }
    .journal-intro__headline { font-size: clamp(54px, 16vw, 76px); }
    .journal-intro__headline span:nth-child(2) { padding-left: .4em; }
    .journal-intro__headline span:nth-child(3) { padding-left: 0; }
    .journal-stats { grid-template-columns: 1fr; margin-top: 58px; }
    .journal-stats > div { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--ink); }
    .journal-stats > div:last-child { border-bottom: 0; }
    .journal-stats strong { font-size: 58px; }
    .feature-stage, .feature-stage__media { min-height: 500px; }
    .feature-stage__ghost { font-size: 94px; }
    .feature-stage__copy { min-height: 500px; padding: 28px 20px; }
    .feature-stage__copy h2 { font-size: 40px; }
    .split-stories { padding-top: 82px; padding-bottom: 92px; }
    .section-heading, .section-heading--wide { grid-template-columns: 1fr; gap: 18px; }
    .section-heading h2 { font-size: 54px; }
    .section-heading--wide > a { justify-self: start; }
    .split-stories__grid { grid-template-columns: 1fr; gap: 50px; margin-top: 42px; }
    .split-story.is-offset { margin-top: 0; }
    .split-story__media { height: 360px; }
    .split-story h3 { font-size: 31px; }
    .topic-index { padding: 82px 0 92px; }
    .topic-index__head h2 { font-size: 70px; }
    .topic-index__list { margin-top: 48px; }
    .topic-index__list a { grid-template-columns: 36px 1fr auto; min-height: 76px; }
    .topic-index__list small { display: none; }
    .topic-index__list strong { font-size: 27px; }
    .latest-notes { padding-top: 82px; padding-bottom: 108px; }
    .notes-grid, .notes-grid--archive { grid-template-columns: 1fr; gap: 50px; margin-top: 46px; }
    .note-card:nth-child(even) { transform: none; }
    .note-card__media { height: 360px; }
    .note-card h3 { font-size: 26px; }
    .closing-banner, .closing-banner__inner { min-height: 620px; }
    .closing-banner__track { font-size: 86px; }
    .closing-banner h2 { font-size: 54px; }
    .closing-banner__inner > a { align-self: flex-start; margin-top: 34px; }
    .archive-hero { padding-top: 66px; padding-bottom: 46px; }
    .archive-hero h1 { font-size: 68px; }
    .notes-grid--archive { padding-top: 34px; }
    .single-story__header { padding-top: 64px; padding-bottom: 44px; }
    .single-story__meta { flex-wrap: wrap; gap: 10px 18px; }
    .single-story__header h1 { margin-top: 42px; font-size: 48px; }
    .single-story__deck { margin-top: 30px; font-size: 19px; }
    .single-story__byline { margin-top: 34px; }
    .single-story__hero { height: 66vw; min-height: 300px; }
    .article-layout { display: block; padding-top: 54px; padding-bottom: 76px; }
    .article-content { font-size: 16px; line-height: 1.9; }
    .article-content h2 { font-size: 32px; }
    .article-content h3 { font-size: 25px; }
    .resource-vault { margin-top: 58px; }
    .resource-vault__header { grid-template-columns: 1fr; }
    .resource-vault__header h2 { font-size: 42px; }
    .resource-card { grid-template-columns: 1fr; }
    .resource-card__index { font-size: 34px; }
    .resource-card__permission { grid-template-columns: 1fr; gap: 8px; }
    .resource-card__permission a { justify-self: start; margin-top: 8px; }
    .resource-card__attributes { grid-template-columns: 1fr; }
    .post-navigation-custom { grid-template-columns: 1fr; gap: 34px; }
    .post-navigation-custom > div:last-child { text-align: left; }
    .comments-area { margin-top: 70px; }
    .comments-area__header { grid-template-columns: 1fr; }
    .comment-list .children { margin-left: 16px; }
    .comment-meta { align-items: flex-start; flex-direction: column; }
    .comment-form { grid-template-columns: 1fr; }
    .comment-form > * { grid-column: 1 !important; }
    .comment-respond { padding: 20px 16px; }
    .standard-page { padding-top: 68px; padding-bottom: 82px; }
    .standard-page > header h1 { font-size: 64px; }
    .standard-page__content { margin-top: 48px; font-size: 16px; }
    .not-found-page { min-height: 680px; padding-top: 70px; }
    .not-found-page__number { font-size: 190px; }
    .not-found-page h1 { margin-top: 54px; font-size: 48px; }
    .site-footer__stage { min-height: 620px; padding-top: 56px; }
    .site-footer__word { top: 24px; font-size: 120px; }
    .site-footer__copy { padding-top: 160px; }
    .site-footer__copy h2 { font-size: 53px; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .home-hero__title > p { max-width: 280px; line-height: 1.6; }
    .home-hero__title-foot { gap: 13px; font-size: 7px; }
    .home-hero__foot p { display: none; }
    .home-hero__foot { grid-template-columns: 1fr; }
    .home-hero__foot a { justify-self: start; }
    .split-story__media, .note-card__media { height: 300px; }
    .topic-index__list strong { font-size: 23px; }
    .resource-card__title { flex-direction: column; }
    .article-declaration { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal-item, .js .reveal-section { opacity: 1 !important; filter: none !important; transform: none !important; }
}

@media print {
    .site-header, .mobile-navigation, .search-overlay, .site-footer, .reading-progress, .article-rail { display: none !important; }
    body, .site-main { background: #fff !important; color: #000 !important; }
    .article-layout { display: block; width: 100%; padding: 0; }
    .article-column { width: 100%; }
    a { color: #000 !important; text-decoration: none !important; }
}
