@font-face {
  font-family: "Newsreader Local";
  src: url("/assets/fonts/newsreader-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Local";
  src: url("/assets/fonts/ibm-plex-sans-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --paper: #ece9df;
  --paper-deep: #dcd7c9;
  --ink: #17201c;
  --ink-soft: #455049;
  --moss: #354e42;
  --moss-deep: #182a23;
  --rust: #c7633d;
  --sky: #99aeb0;
  --line: rgba(23, 32, 28, 0.2);
  --display: "Newsreader Local", "Iowan Old Style", "Baskerville", "Noto Serif SC", "Songti SC", serif;
  --sans: "IBM Plex Sans Local", "Avenir Next", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --shell: min(1380px, calc(100vw - 80px));
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 8%, rgba(153, 174, 176, 0.24), transparent 27rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 32rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(23, 32, 28, 0.022) 1px, transparent 1px);
  background-size: 100% 7px;
  content: "";
  pointer-events: none;
}

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

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

button {
  border: 0;
}

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

p,
h1,
h2,
h3,
dl,
dd,
blockquote {
  margin: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--paper);
  background: var(--rust);
}

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

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

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

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  animation: reading-progress linear;
  animation-timeline: scroll(root);
}

@keyframes reading-progress {
  to { transform: scaleX(1); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  background: rgba(236, 233, 223, 0.82);
  backdrop-filter: blur(14px);
  transition: min-height 300ms var(--ease), border-color 300ms var(--ease), background-color 300ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 72px;
  border-color: var(--line);
  background: rgba(236, 233, 223, 0.94);
}

.site-header-dark {
  color: var(--paper);
  background: rgba(23, 32, 28, 0.84);
}

.site-header-dark.is-scrolled {
  border-color: rgba(236, 233, 223, 0.18);
  background: rgba(23, 32, 28, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 12px;
}

.brand-glyph {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-glyph i {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transform: rotate(-23deg);
}

.brand-glyph i:last-child {
  width: 15px;
  transform: rotate(62deg) translateX(3px);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.2vw, 58px);
}

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  position: relative;
  z-index: 102;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.language-picker {
  position: relative;
  display: inline-grid;
  flex: none;
  place-items: center;
}

.language-picker::after {
  position: absolute;
  right: 13px;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.language-select {
  width: 100%;
  min-width: 96px;
  height: 34px;
  padding: 0 30px 0 13px;
  border: 1px solid rgba(24, 42, 35, 0.28);
  border-radius: 999px;
  outline: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.26);
  font: 650 9px/1 var(--sans);
  letter-spacing: 0.08em;
  cursor: pointer;
  appearance: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-select:hover {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.46);
}

.language-select:focus-visible {
  border-color: currentColor;
  box-shadow: 0 0 0 3px rgba(199, 99, 61, 0.2);
}

.site-header-dark .language-select {
  border-color: rgba(236, 233, 223, 0.38);
  background: rgba(236, 233, 223, 0.08);
}

.site-header-dark .language-select:hover {
  border-color: var(--paper);
  background: rgba(236, 233, 223, 0.14);
}

.language-select option {
  color: var(--ink);
  background: var(--paper);
}

.language-picker-floating {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 10;
  color: var(--ink);
}

.issue-link {
  justify-self: end;
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-transform: uppercase;
}

.issue-link span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.issue-link strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  background: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #b8c9c1;
}

.text-link,
.quiet-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  transition: gap 240ms var(--ease), color 240ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  padding: 16px 20px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 240ms ease, background-color 240ms ease;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: transparent;
}

.button-light:hover {
  color: var(--ink);
  background: var(--paper);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal].delay-1 { transition-delay: 100ms; }
.js [data-reveal].delay-2 { transition-delay: 200ms; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.82fr);
  align-items: end;
  min-height: calc(100vh - 92px);
  padding-top: 5vh;
  padding-bottom: 6vh;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  overflow: hidden;
  background: var(--moss);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 233, 223, 0.2);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.018);
}

.hero-coordinate {
  position: absolute;
  bottom: 20px;
  left: 22px;
  display: flex;
  gap: 20px;
  color: #f0ede4;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.hero-index {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 7px 10px;
  color: var(--paper);
  border: 1px solid rgba(236, 233, 223, 0.5);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 2vw clamp(30px, 5vw, 86px);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 25px 0 28px;
  font-family: var(--display);
  font-size: clamp(56px, 6.1vw, 104px);
  font-weight: 380;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-lead {
  max-width: 430px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.75;
}

.issue-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.issue-rail-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  min-height: 76px;
  gap: 30px;
}

.issue-rail p {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.issue-rail span {
  font-family: var(--display);
  font-size: 27px;
}

.section {
  padding-top: clamp(90px, 10vw, 160px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: end;
  margin-bottom: 58px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(46px, 5.2vw, 80px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  align-items: start;
  gap: clamp(22px, 3vw, 48px);
}

.story-card-wide {
  padding-right: clamp(0px, 2vw, 32px);
}

.story-image {
  position: relative;
  display: block;
  aspect-ratio: 1.28;
  overflow: hidden;
  background: var(--paper-deep);
}

.story-image.portrait {
  aspect-ratio: 0.82;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.story-image:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.image-number {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  border: 1px solid rgba(236, 233, 223, 0.65);
  border-radius: 50%;
  font-size: 10px;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 14px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card h3 {
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.story-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 350ms var(--ease), background-position 0s 350ms;
}

.story-card h3 a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.story-card > p {
  max-width: 480px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.film-feature {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 35%, rgba(199, 99, 61, 0.17), transparent 24rem),
    var(--ink);
}

.film-feature::before {
  position: absolute;
  top: -38%;
  right: 6%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(236, 233, 223, 0.08);
  border-radius: 50%;
  content: "";
}

.film-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  align-items: center;
  min-height: 820px;
  gap: clamp(50px, 8vw, 130px);
}

.film-poster {
  position: relative;
}

.film-poster img {
  width: 100%;
  border: 1px solid rgba(236, 233, 223, 0.12);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(236, 233, 223, 0.8);
  border-radius: 50%;
  background: rgba(23, 32, 28, 0.36);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: color 250ms ease, background-color 250ms ease, transform 250ms var(--ease);
}

.play-button:hover {
  color: var(--ink);
  background: var(--paper);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button span {
  margin-left: 4px;
  font-size: 20px;
}

.film-copy h2 {
  margin: 25px 0 6px;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 100px);
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.film-subtitle {
  color: #9eb3aa;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-copy > p:not(.eyebrow):not(.film-subtitle) {
  max-width: 440px;
  margin: 32px 0;
  color: #c7cec9;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.75;
}

.film-note {
  position: absolute;
  right: 0;
  bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: #92a59c;
}

.film-note span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.film-note strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.sound-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.sound-copy h2 {
  max-width: 570px;
  margin: 27px 0 25px;
  font-family: var(--display);
  font-size: clamp(55px, 6.2vw, 98px);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.sound-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 14px;
}

.sound-wave {
  padding: 48px 40px 28px;
  color: var(--paper);
  background: var(--moss);
}

.wave-bars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 230px;
  gap: 5px;
}

.wave-bars i {
  width: 2px;
  height: 25%;
  background: currentColor;
  opacity: 0.82;
  animation: wave 2.6s ease-in-out infinite alternate;
}

.wave-bars i:nth-child(3n) { height: 68%; animation-delay: -0.8s; }
.wave-bars i:nth-child(4n) { height: 42%; animation-delay: -1.4s; }
.wave-bars i:nth-child(5n) { height: 88%; animation-delay: -2s; }
.wave-bars i:nth-child(7n) { height: 57%; animation-delay: -0.4s; }

@keyframes wave {
  to { transform: scaleY(0.42); opacity: 0.45; }
}

.sound-wave p {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(236, 233, 223, 0.28);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.site-footer {
  padding-top: 75px;
  color: var(--paper);
  background: var(--moss-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 70px;
}

.footer-brand {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.05em;
}

.footer-grid > div:first-child p {
  margin-top: 12px;
  color: #a9b5af;
  font-size: 12px;
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: #82958c;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child):not(.footer-issue) a {
  display: block;
  width: max-content;
  margin-bottom: 9px;
  color: #c4cec9;
  font-size: 12px;
}

.footer-grid a:hover {
  color: white;
}

.footer-issue {
  justify-self: end;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 10px;
}

.footer-issue span {
  font-size: 10px;
  letter-spacing: 0.16em;
}

.footer-issue strong {
  font-family: var(--display);
  font-size: 75px;
  font-weight: 300;
  line-height: 0.8;
}

.footer-issue small {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: #82958c;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 17px 0 22px;
  border-top: 1px solid rgba(236, 233, 223, 0.15);
  color: #82958c;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Journal */
.page-masthead {
  padding-top: clamp(80px, 10vw, 150px);
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
}

.masthead-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  margin-top: 35px;
  gap: 60px;
}

.masthead-grid h1 {
  font-family: var(--display);
  font-size: clamp(100px, 16vw, 235px);
  font-weight: 290;
  letter-spacing: -0.075em;
  line-height: 0.7;
}

.masthead-grid p {
  max-width: 520px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.7;
}

.archive-section {
  padding-top: 45px;
  padding-bottom: 130px;
}

.filter-bar {
  display: flex;
  gap: 38px;
  margin-bottom: 55px;
}

.filter-bar button {
  padding: 5px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.filter-bar button span {
  margin-left: 4px;
  color: #879088;
  font-size: 8px;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px clamp(35px, 5vw, 80px);
}

.archive-card.feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.archive-card > img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.archive-card:not(.feature) > img {
  aspect-ratio: 1.18;
}

.archive-card-copy h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 62px);
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.archive-card-copy h2 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-position 0s 320ms, background-size 320ms var(--ease);
}

.archive-card-copy h2 a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.archive-card-copy > p {
  max-width: 600px;
  margin: 20px 0 27px;
  color: var(--ink-soft);
  font-size: 13px;
}

.archive-card-copy .quiet-link {
  margin-top: 2px;
}

/* Article */
.article-page {
  background:
    radial-gradient(circle at 92% 12%, rgba(153, 174, 176, 0.2), transparent 30rem),
    var(--paper);
}

.article-masthead {
  padding-top: clamp(55px, 7vw, 100px);
  padding-bottom: clamp(70px, 9vw, 130px);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(75px, 10vw, 145px);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, gap 220ms var(--ease);
}

.article-back:hover {
  gap: 16px;
  color: var(--rust);
}

.article-title-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 45px;
}

.article-title-grid h1 {
  max-width: 1120px;
  margin: 30px 0 38px;
  font-family: var(--display);
  font-size: clamp(68px, 9.4vw, 148px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.article-dek {
  max-width: 690px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.75;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 42px;
  color: #68746d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-number {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 250;
  line-height: 0.65;
  -webkit-text-stroke: 1px rgba(23, 32, 28, 0.22);
}

.article-cover {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.article-cover > img,
.article-cover picture,
.article-cover picture img {
  display: block;
  width: 100%;
}

.article-cover > img,
.article-cover picture img {
  aspect-ratio: 1.72;
  object-fit: cover;
}

.article-cover-photo picture img {
  filter: saturate(0.88) contrast(0.98);
}

.article-cover figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 2px 0;
  color: #6f7973;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 780px) minmax(20px, 0.2fr);
  gap: clamp(40px, 7vw, 110px);
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(110px, 12vw, 180px);
}

.article-aside {
  grid-column: 1;
}

.article-aside-sticky {
  position: sticky;
  top: 110px;
  padding-top: 15px;
  border-top: 1px solid var(--ink);
}

.article-aside-sticky > p {
  margin-bottom: 25px;
  color: var(--rust);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-aside dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.article-aside dt {
  color: #77817a;
}

.article-aside dd {
  text-align: right;
}

.article-prose {
  grid-column: 2;
  min-width: 0;
}

.article-prose .article-lead {
  margin-bottom: clamp(65px, 7vw, 100px);
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.article-prose > h2 {
  margin: 72px 0 24px;
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.article-prose > h2:first-of-type {
  margin-top: 0;
}

.article-prose > p:not(.article-lead) {
  margin-bottom: 29px;
  color: #2f3833;
  font-family: var(--display);
  font-size: 19px;
  line-height: 2;
}

.article-prose blockquote {
  position: relative;
  margin: clamp(60px, 7vw, 95px) -13% clamp(60px, 7vw, 95px) 7%;
  padding: 38px 0 38px 42px;
  border-left: 2px solid var(--rust);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 47px);
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.article-prose blockquote::before {
  position: absolute;
  top: -14px;
  left: 40px;
  color: var(--rust);
  content: "FIELD NOTE";
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.article-inline-figure {
  margin: clamp(65px, 8vw, 110px) -14%;
}

.article-inline-figure img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.article-inline-figure:not(.article-inline-wide) img {
  aspect-ratio: 1.35;
}

.article-inline-wide img {
  aspect-ratio: 1.5;
}

.article-inline-figure figcaption {
  max-width: 650px;
  margin-top: 12px;
  color: #707a74;
  font-size: 10px;
  line-height: 1.6;
}

.article-ledger {
  margin-top: clamp(75px, 9vw, 125px);
  border-top: 1px solid var(--ink);
}

.article-ledger > h2 {
  padding: 25px 0 35px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 450;
}

.article-ledger > div {
  display: grid;
  grid-template-columns: 90px 160px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.article-ledger > div:last-child {
  border-bottom: 1px solid var(--line);
}

.article-ledger span {
  color: var(--rust);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-ledger strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 520;
}

.article-ledger p {
  color: var(--ink-soft);
  font-size: 11px;
}

.article-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(100px, 12vw, 180px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-next a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 175px;
  padding: 30px clamp(20px, 4vw, 60px);
  transition: color 250ms ease, background-color 250ms ease;
}

.article-next a + a {
  align-items: flex-end;
  border-left: 1px solid var(--line);
  text-align: right;
}

.article-next a:hover {
  color: var(--paper);
  background: var(--moss);
}

.article-next span {
  margin-bottom: 12px;
  color: #77817a;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.article-next strong {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 430;
  letter-spacing: -0.025em;
}

.text-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 510px;
  padding: 30px;
  color: var(--paper);
  background: var(--moss);
}

.text-card.rust {
  background: var(--rust);
}

.text-card .story-meta,
.text-card .archive-card-copy > p {
  color: rgba(236, 233, 223, 0.75);
}

.text-card-number {
  font-family: var(--display);
  font-size: 150px;
  font-weight: 250;
  line-height: 0.8;
  opacity: 0.25;
}

.long-read {
  padding: 120px 0 140px;
  background: #f6f3ea;
}

.long-read-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.3fr;
  gap: 50px;
}

.long-read aside {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 8px;
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.long-read aside p {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.prose {
  grid-column: 2;
  max-width: 760px;
}

.prose p {
  margin-bottom: 27px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.95;
}

.prose .prose-lead {
  margin-bottom: 47px;
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.prose blockquote {
  margin: 55px -15% 55px 8%;
  padding: 30px 0 30px 35px;
  border-left: 2px solid var(--rust);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  line-height: 1.4;
}

/* Watch */
.watch-page {
  color: var(--paper);
  background: var(--ink);
}

.watch-page::before {
  background-image: linear-gradient(rgba(236, 233, 223, 0.025) 1px, transparent 1px);
}

.watch-hero {
  padding-top: 75px;
  padding-bottom: 75px;
}

.watch-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 32px;
}

.watch-title .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}

.watch-title h1 {
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.watch-title > p:last-child {
  color: #8da097;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.video-frame {
  background: #080d0b;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080d0b;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  padding: 13px 3px;
  color: #7d9087;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-details {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 0.75fr;
  gap: clamp(45px, 7vw, 110px);
  padding-top: 90px;
  padding-bottom: 140px;
  border-top: 1px solid rgba(236, 233, 223, 0.14);
}

.film-details h2 {
  margin-bottom: 23px;
  color: #899c93;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-synopsis p {
  margin-bottom: 18px;
  color: #c7cec9;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.75;
}

.chapters button {
  display: grid;
  grid-template-columns: 60px 1fr;
  width: 100%;
  padding: 14px 0;
  color: #c7cec9;
  border-top: 1px solid rgba(236, 233, 223, 0.14);
  background: none;
  cursor: pointer;
  text-align: left;
}

.chapters button:last-child {
  border-bottom: 1px solid rgba(236, 233, 223, 0.14);
}

.chapters button:hover {
  color: var(--rust);
}

.chapters button span {
  color: #74867d;
  font-size: 9px;
}

.chapters button strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 450;
}

.film-credits > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  padding: 10px 0;
  border-top: 1px solid rgba(236, 233, 223, 0.14);
  font-size: 10px;
}

.film-credits dt { color: #74867d; }
.film-credits dd { color: #c7cec9; }

.watch-archive {
  padding-bottom: 150px;
}

.watch-archive .section-heading {
  border-color: rgba(236, 233, 223, 0.15);
}

.film-list article {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid rgba(236, 233, 223, 0.15);
}

.film-list article > span,
.film-list article > strong,
.film-list p {
  color: #74867d;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-list h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

/* Downloads */
.download-masthead {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  color: var(--paper);
  background: var(--rust);
}

.download-masthead::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(236, 233, 223, 0.08) 10%);
  content: "";
}

.download-title {
  position: relative;
}

.download-title .eyebrow {
  color: #f3d6c7;
}

.download-title h1 {
  margin: 35px 0 25px;
  font-family: var(--display);
  font-size: clamp(85px, 14vw, 210px);
  font-weight: 280;
  letter-spacing: -0.075em;
  line-height: 0.75;
}

.download-title > p:last-child {
  max-width: 540px;
  margin-left: 48%;
  color: #f3ddd1;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.7;
}

.archive-seal {
  position: absolute;
  top: 60px;
  right: 5vw;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(236, 233, 223, 0.45);
  border-radius: 50%;
  transform: rotate(8deg);
}

.archive-seal span,
.archive-seal i {
  position: absolute;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.archive-seal span { top: 29px; }
.archive-seal i { bottom: 27px; font-style: normal; }
.archive-seal strong { font-family: var(--display); font-size: 28px; font-weight: 450; }

.download-list {
  padding-top: 85px;
  padding-bottom: 80px;
}

.download-item {
  display: grid;
  grid-template-columns: 80px 1fr 245px;
  gap: clamp(25px, 4vw, 70px);
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}

.download-item:first-child {
  border-top: 1px solid var(--line);
}

.download-index {
  font-family: var(--display);
  font-size: 65px;
  font-weight: 300;
  line-height: 1;
}

.download-info h2 {
  margin: 13px 0 16px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.download-info > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 13px;
}

.download-info dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.download-info dl > div {
  min-width: 0;
  padding: 13px 16px 0 0;
}

.download-info dt {
  margin-bottom: 4px;
  color: #7b857e;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-info dd {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-info audio {
  width: 100%;
  max-width: 650px;
  height: 44px;
  margin-top: 24px;
}

.download-button {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 175px;
  padding: 22px;
  color: var(--paper);
  background: var(--ink);
  transition: color 250ms ease, background-color 250ms ease, transform 250ms var(--ease);
}

.download-button:hover {
  color: var(--ink);
  outline: 1px solid var(--ink);
  background: transparent;
  transform: translateY(-4px);
}

.download-button span {
  align-self: start;
  font-size: 11px;
  font-weight: 650;
}

.download-button strong {
  align-self: end;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.download-button i {
  grid-row: 1 / 3;
  grid-column: 2;
  font-family: var(--display);
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
}

.archive-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding-top: 32px;
  padding-bottom: 120px;
  color: var(--ink-soft);
  font-size: 11px;
}

.archive-note span {
  color: var(--ink);
  font-weight: 650;
  letter-spacing: 0.12em;
}

.archive-note p { max-width: 720px; }

/* About */
.about-hero {
  min-height: 740px;
  padding-top: 110px;
}

.about-hero h1 {
  max-width: 1100px;
  margin-top: 35px;
  font-family: var(--display);
  font-size: clamp(67px, 10vw, 150px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(300px, 600px) auto;
  align-items: end;
  justify-content: end;
  margin-top: 70px;
  gap: 80px;
}

.about-intro p {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.8;
}

.about-intro span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-band {
  padding: 55px 0;
  color: var(--paper);
  background: var(--moss);
}

.about-band .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.about-band p {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
}

.principles {
  padding-top: 130px;
  padding-bottom: 140px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.principle-grid article {
  min-height: 430px;
  padding: 32px;
  background: var(--paper);
}

.principle-grid span {
  display: block;
  margin-bottom: 120px;
  color: var(--rust);
  font-family: var(--display);
  font-size: 40px;
}

.principle-grid h3 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 430;
}

.principle-grid p {
  color: var(--ink-soft);
  font-size: 13px;
}

.colophon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 140px;
  gap: 100px;
}

.colophon h2 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 350;
  letter-spacing: -0.05em;
}

.colophon dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.colophon dl > div:last-child { border-bottom: 1px solid var(--line); }
.colophon dt { color: #748078; }

.not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 8vw;
}

.not-found > span {
  color: var(--rust);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.not-found h1 {
  margin: 30px 0 50px;
  font-family: var(--display);
  font-size: clamp(60px, 11vw, 160px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1000px); }
  .site-header { padding-inline: 24px; }
  .hero { grid-template-columns: 1.2fr 0.8fr; }
  .hero-visual { min-height: 560px; }
  .hero-copy { padding-left: 35px; }
  .story-grid { grid-template-columns: 1.15fr 0.85fr; }
  .story-card:last-child { grid-column: 2; }
  .story-card:nth-child(2), .story-card:nth-child(3) { grid-row: span 1; }
  .film-grid { min-height: 680px; }
  .download-item { grid-template-columns: 60px 1fr 205px; }
  .article-body { grid-template-columns: minmax(135px, 0.3fr) minmax(0, 720px); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 36px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 74px; padding-inline: 18px; background: rgba(236, 233, 223, 0.98); backdrop-filter: none; }
  .site-header-dark { background: rgba(23, 32, 28, 0.98); }
  .site-header.is-scrolled { min-height: 64px; }
  .header-tools { gap: 10px; }
  .language-select { min-width: 90px; height: 32px; }
  body.nav-open .header-tools { color: var(--paper); }
  body.nav-open .language-select { border-color: rgba(236, 233, 223, 0.5); background: rgba(236, 233, 223, 0.1); }
  .issue-link { display: none; }
  .nav-toggle { position: relative; z-index: 102; display: flex; align-items: center; gap: 8px; padding: 10px 0 10px 14px; cursor: pointer; }
  .nav-toggle span { margin-right: 4px; font-size: 9px; font-weight: 650; letter-spacing: 0.13em; }
  .nav-toggle i { width: 17px; height: 1px; background: currentColor; transition: transform 250ms ease; }
  .nav-toggle i:last-child { position: absolute; right: 0; transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i:last-child { transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 20vw; color: var(--paper); background: rgba(24, 42, 35, 0.98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity 250ms ease, transform 250ms var(--ease); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: var(--display); font-size: 42px; font-weight: 350; }
  .hero { grid-template-columns: 1fr; padding-top: 24px; padding-bottom: 75px; }
  .hero-visual { min-height: auto; aspect-ratio: 0.95; }
  .hero-copy { margin-top: calc(-1 * clamp(200px, 27vw, 250px)); padding: 0 20px; }
  .js .hero-copy[data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-copy .eyebrow { color: var(--paper); }
  .hero-copy h1 { position: relative; color: var(--paper); font-size: clamp(52px, 14vw, 80px); text-shadow: 0 3px 28px rgba(12, 22, 18, 0.34); }
  .hero-lead { margin-top: 45px; color: var(--ink-soft); }
  .issue-rail-inner { grid-template-columns: 1fr 1fr; padding: 20px 0; }
  .issue-rail p:nth-child(2) { display: none; }
  .issue-rail span { justify-self: end; }
  .section-heading { grid-template-columns: 1fr auto; row-gap: 17px; }
  .section-heading .eyebrow { grid-column: 1 / -1; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card-wide { grid-column: 1 / -1; padding: 0; }
  .story-card:last-child { grid-column: auto; }
  .film-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 80px; padding-bottom: 100px; gap: 55px; }
  .film-copy { max-width: 600px; }
  .film-note { display: none; }
  .sound-section { grid-template-columns: 1fr; }
  .sound-wave { order: -1; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-issue { display: none; }
  .masthead-grid { grid-template-columns: 1fr; gap: 60px; }
  .masthead-grid h1 { font-size: clamp(95px, 27vw, 170px); }
  .archive-card.feature { grid-template-columns: 1fr; }
  .long-read-grid { grid-template-columns: 1fr; }
  .prose { grid-column: 1; }
  .prose blockquote { margin-right: 0; }
  .watch-title { grid-template-columns: 1fr; }
  .watch-title > p:last-child { margin-top: 25px; }
  .film-details { grid-template-columns: 1fr 1fr; }
  .film-synopsis { grid-column: 1 / -1; }
  .download-title > p:last-child { margin-left: 28%; }
  .archive-seal { width: 120px; height: 120px; }
  .archive-seal span { top: 18px; }
  .archive-seal i { bottom: 17px; }
  .download-item { grid-template-columns: 45px 1fr; }
  .download-button { grid-column: 2; min-height: 115px; }
  .about-hero { min-height: 680px; }
  .about-intro { grid-template-columns: 1fr; gap: 25px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 330px; }
  .principle-grid span { margin-bottom: 70px; }
  .colophon { grid-template-columns: 1fr; gap: 50px; }
  .article-back { margin-bottom: 85px; }
  .article-title-grid { grid-template-columns: 1fr; }
  .article-number { display: none; }
  .article-cover { width: calc(100% - 36px); }
  .article-body { grid-template-columns: 1fr; gap: 70px; }
  .article-aside, .article-prose { grid-column: 1; }
  .article-aside-sticky { position: static; }
  .article-aside dl { display: grid; grid-template-columns: repeat(4, 1fr); }
  .article-aside dl > div { display: block; padding-right: 12px; }
  .article-aside dd { margin-top: 5px; text-align: left; }
  .article-prose blockquote { margin-right: 0; margin-left: 5%; }
  .article-inline-figure { margin-right: 0; margin-left: 0; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .brand-copy small { display: none; }
  .brand-glyph { width: 33px; height: 33px; }
  .header-tools { gap: 6px; }
  .language-select { width: 82px; min-width: 82px; padding-inline: 11px 26px; }
  .language-picker::after { right: 11px; }
  .nav-toggle { padding-left: 8px; }
  .nav-toggle span { display: none; }
  .hero-visual { aspect-ratio: 0.78; }
  .hero-copy { padding-inline: 10px; }
  .hero-copy h1 { font-size: 14.5vw; }
  .hero-lead { font-size: 16px; }
  .hero-coordinate { display: none; }
  .issue-rail-inner { gap: 10px; }
  .issue-rail p:nth-child(3) { display: none; }
  .issue-rail-inner { grid-template-columns: 1fr auto; }
  .section { padding-top: 85px; padding-bottom: 95px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .quiet-link { margin-top: 5px; }
  .story-grid { grid-template-columns: 1fr; gap: 65px; }
  .story-card:last-child { grid-column: 1; }
  .story-image.portrait { aspect-ratio: 1.04; }
  .film-grid { padding-top: 60px; padding-bottom: 80px; }
  .play-button { width: 66px; height: 66px; }
  .sound-wave { padding: 30px 22px 20px; }
  .wave-bars { height: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom p:last-child { display: none; }
  .page-masthead { padding-top: 75px; }
  .archive-grid { grid-template-columns: 1fr; gap: 65px; }
  .archive-card.feature { grid-column: 1; padding-bottom: 60px; }
  .filter-bar { overflow-x: auto; gap: 25px; padding-bottom: 8px; }
  .filter-bar button { flex: 0 0 auto; }
  .text-card { min-height: 430px; }
  .long-read { padding: 85px 0; }
  .prose p { font-size: 17px; }
  .prose blockquote { margin-left: 0; padding-left: 23px; }
  .watch-hero { padding-top: 50px; }
  .watch-title h1 { font-size: 15vw; }
  .film-details { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 100px; }
  .film-synopsis { grid-column: 1; }
  .film-list article { grid-template-columns: 55px 1fr; min-height: 95px; }
  .film-list article > strong { display: none; }
  .film-list h3 { font-size: 24px; }
  .download-masthead { padding: 90px 0 70px; }
  .download-title h1 { font-size: 20vw; }
  .download-title > p:last-child { margin: 45px 0 0; }
  .archive-seal { top: 28px; right: -25px; width: 105px; height: 105px; opacity: 0.55; }
  .download-item { grid-template-columns: 1fr; padding: 45px 0; }
  .download-index { font-size: 45px; }
  .download-info dl { grid-template-columns: 1fr 1fr; }
  .download-button { grid-column: 1; }
  .archive-note { grid-template-columns: 1fr; gap: 15px; }
  .about-hero { min-height: auto; padding-top: 85px; padding-bottom: 100px; }
  .about-hero h1 { font-size: 15vw; }
  .about-band .shell { grid-template-columns: 1fr; gap: 25px; }
  .principles { padding-top: 90px; padding-bottom: 100px; }
  .colophon dl > div { grid-template-columns: 100px 1fr; }
  .article-masthead { padding-top: 45px; padding-bottom: 70px; }
  .article-back { margin-bottom: 62px; }
  .article-title-grid h1 { margin-top: 24px; font-size: 16vw; }
  .article-dek { font-size: 17px; }
  .article-byline { gap: 9px 18px; margin-top: 32px; }
  .article-cover { width: 100%; }
  .article-cover > img, .article-cover picture img { aspect-ratio: 1.06; }
  .article-cover figcaption { padding: 10px 14px 0; }
  .article-cover figcaption span:last-child { display: none; }
  .article-body { gap: 58px; padding-top: 70px; padding-bottom: 95px; }
  .article-aside dl { grid-template-columns: 1fr 1fr; }
  .article-prose .article-lead { font-size: 29px; }
  .article-prose > p:not(.article-lead) { font-size: 17px; line-height: 1.9; }
  .article-prose blockquote { margin: 55px 0; padding: 34px 0 34px 24px; font-size: 29px; }
  .article-prose blockquote::before { left: 23px; }
  .article-inline-figure { margin-top: 65px; margin-bottom: 65px; }
  .article-inline-figure img, .article-inline-figure:not(.article-inline-wide) img, .article-inline-wide img { aspect-ratio: 1.05; }
  .article-ledger > div { grid-template-columns: 70px 1fr; gap: 8px 14px; }
  .article-ledger p { grid-column: 2; }
  .article-next { grid-template-columns: 1fr; }
  .article-next a { min-height: 140px; padding: 25px 18px; }
  .article-next a + a { align-items: flex-start; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
