:root {
  --paper: #f5f0e6;
  --paper-deep: #e8dfd0;
  --night: #111210;
  --night-soft: #1b1c19;
  --ink: #1b1b18;
  --muted: #817c72;
  --line: rgba(27, 27, 24, 0.17);
  --line-dark: rgba(245, 240, 230, 0.18);
  --accent: #e46c2d;
  --display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.archive-page { background: var(--night); color: var(--paper); }
.reading-page { --accent: #a84412; background: var(--paper); color: var(--ink); }

.journal-header {
  position: relative;
  z-index: 20;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 58px);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.reading-page .journal-header { border-color: var(--line); }
.journal-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.journal-brand img { width: 32px; height: 29px; object-fit: contain; }
.journal-brand i { color: var(--accent); font-style: normal; }
.journal-nav { display: flex; align-items: center; gap: clamp(16px, 2.7vw, 34px); }
.journal-nav a {
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  color: #918b80;
}
.journal-nav a:hover,
.journal-nav a[aria-current='page'] { border-color: var(--accent); color: inherit; }

.archive-main { width: min(1380px, calc(100vw - 96px)); margin: 0 auto; }
.archive-hero {
  min-height: min(780px, calc(100vh - 76px));
  padding: clamp(88px, 11vw, 168px) 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
}
.archive-kicker,
.section-kicker,
.story-meta,
.legacy-source,
.article-meta,
.article-rail,
.archive-signal,
.journal-footer {
  font-family: var(--mono);
  text-transform: uppercase;
}
.archive-kicker,
.section-kicker {
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.17em;
  color: var(--accent);
}
.archive-title {
  max-width: 920px;
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(70px, 11vw, 172px);
  font-weight: 230;
  line-height: 0.82;
  letter-spacing: 0;
}
.archive-title i { display: block; color: var(--accent); font-weight: 240; }
.archive-intro {
  padding-bottom: 8px;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 300;
  line-height: 1.58;
  color: #b7b0a4;
}
.archive-intro b { color: var(--paper); font-weight: 450; }
.archive-signal {
  min-height: 64px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #8f897e;
}
.archive-signal b { color: var(--accent); font-weight: 500; }

.archive-section { padding: clamp(86px, 10vw, 150px) 0; }
.archive-section-head {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
}
.archive-section-head h2 {
  max-width: 760px;
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 260;
  line-height: 0.98;
}
.archive-section-head p {
  max-width: 520px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #9d968b;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  min-height: 650px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}
.feature-story + .feature-story { margin-top: 78px; }
.feature-story-media {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  background: transparent;
}
.feature-story-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.feature-story:hover .feature-story-media img { transform: scale(1.018); }
.feature-story-copy {
  padding: clamp(34px, 5vw, 76px);
  border-left: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.story-meta { font-size: 8px; line-height: 1.7; letter-spacing: 0.15em; color: var(--accent); }
.story-title {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 67px);
  font-weight: 270;
  line-height: 1.01;
}
.story-dek { margin-top: 24px; font-size: 15px; font-weight: 300; line-height: 1.72; color: #a8a195; }
.story-arrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); }

.trilogy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trilogy-card {
  min-width: 0;
  padding-bottom: 34px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.trilogy-card:last-child { border-right: 0; }
.trilogy-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; background: transparent; }
.trilogy-card-copy { padding: 28px 28px 0; }
.trilogy-number {
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.trilogy-card h3 { font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 290; line-height: 1.04; }
.trilogy-card p { margin-top: 18px; font-size: 13px; font-weight: 300; line-height: 1.65; color: #969085; }
.trilogy-card:hover h3 { color: var(--accent); }

.travel-story {
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}
.travel-story-copy { padding: clamp(34px, 5vw, 66px); display: flex; flex-direction: column; justify-content: space-between; gap: 54px; }
.travel-story h3 { margin-top: 22px; font-family: var(--display); font-size: clamp(36px, 4.5vw, 62px); font-weight: 270; line-height: 1.02; }
.travel-story p { margin-top: 20px; font-size: 14px; font-weight: 300; line-height: 1.7; color: #9d968b; }
.travel-story img { width: 100%; height: auto; min-height: 0; object-fit: contain; border-left: 1px solid var(--line-dark); background: transparent; }

.archive-statement {
  padding: clamp(90px, 12vw, 180px) 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 920px);
  gap: clamp(40px, 8vw, 130px);
}
.archive-statement > p:not(.section-kicker) {
  min-width: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 260;
  line-height: 1.08;
}
.archive-statement > .section-kicker {
  align-self: start;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.17em;
}
.archive-statement i { color: var(--accent); font-weight: 260; }

.article-shell { width: min(1320px, calc(100vw - 96px)); margin: 0 auto; }
.article-masthead { padding: clamp(80px, 10vw, 146px) 0 58px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.article-title {
  max-width: 1180px;
  margin-top: 26px;
  font-family: var(--display);
  font-size: clamp(54px, 8.4vw, 126px);
  font-weight: 245;
  line-height: 0.92;
  letter-spacing: 0;
}
.article-dek {
  max-width: 790px;
  margin: 36px 0 0 auto;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 300;
  line-height: 1.52;
  color: #5e5a53;
}
.legacy-source {
  max-width: 790px;
  margin: 26px 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  font-size: 10px;
  letter-spacing: 0.13em;
  color: #615d55;
}
.legacy-source a { border-bottom: 1px solid var(--accent); padding-bottom: 3px; text-decoration: none; color: var(--ink); }
.article-hero { margin-bottom: clamp(72px, 9vw, 128px); }
.article-hero img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
.article-hero figcaption {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
  color: #615d55;
}
.article-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px) minmax(120px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.article-rail {
  position: sticky;
  top: 32px;
  font-size: 10px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  color: #615d55;
}
.article-rail b { display: block; margin-bottom: 18px; color: var(--accent); font-weight: 500; }
.article-rail a { display: inline-block; margin-top: 20px; border-bottom: 1px solid var(--accent); text-decoration: none; color: var(--ink); }
.article-copy { min-width: 0; }
.article-copy a {
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.article-copy > p,
.article-copy > ul,
.article-copy > ol {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 320;
  line-height: 1.76;
  color: #37352f;
}
.article-copy > p + p,
.article-copy > p + ul,
.article-copy > p + ol,
.article-copy > ul + p,
.article-copy > ol + p { margin-top: 24px; }
.article-copy > ul,
.article-copy > ol { padding-left: 28px; }
.article-copy li + li { margin-top: 12px; }
.article-copy > h2,
.article-copy > h3 {
  margin: clamp(70px, 8vw, 108px) 0 26px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 290;
  line-height: 1.04;
}
.article-copy > h3 { font-size: clamp(29px, 3.2vw, 44px); }
.article-copy .opening { font-size: clamp(23px, 2.4vw, 31px); line-height: 1.55; color: var(--ink); }
.article-copy .short-line { font-family: var(--display); font-size: clamp(23px, 2.5vw, 30px); font-weight: 360; line-height: 1.3; color: var(--ink); }
.pull-note {
  margin: clamp(46px, 6vw, 72px) 0;
  padding: 6px 0 6px clamp(22px, 3vw, 34px);
  border-left: 3px solid var(--accent);
  color: var(--ink);
}
.pull-note b {
  display: block;
  margin-bottom: 15px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.pull-note p { max-width: 690px; font-family: var(--display); font-size: clamp(23px, 2.6vw, 34px); font-weight: 300; line-height: 1.24; }
.article-end {
  max-width: 760px;
  margin: clamp(80px, 10vw, 140px) auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 26px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #615d55;
}
.article-end a { text-decoration: none; color: var(--accent); }

.series-nav,
.related-reading {
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
}
.series-nav-label,
.related-label {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.series-links,
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.series-links a,
.related-links a {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  text-decoration: none;
}
.series-links a:last-child,
.related-links a:last-child { border-right: 0; }
.series-links span,
.related-links span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.series-links strong,
.related-links strong { font-family: var(--display); font-size: 26px; font-weight: 320; line-height: 1.08; }
.series-links a[aria-current='page'] { background: var(--ink); color: var(--paper); }

.journal-footer {
  margin-top: clamp(90px, 12vw, 170px);
  padding: 30px clamp(22px, 4vw, 58px);
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.13em;
  color: #615d55;
}
.reading-page .journal-footer { border-color: var(--line); }
.archive-page .journal-footer { color: #8f897e; }
.reading-page .journal-nav a { color: #615d55; }
.journal-footer a { text-decoration: none; }
.journal-footer a:hover { color: var(--accent); }

@media (max-width: 960px) {
  .archive-main,
  .article-shell { width: min(calc(100% - 56px), 820px); }
  .archive-hero,
  .archive-section-head,
  .feature-story,
  .travel-story { grid-template-columns: 1fr; }
  .archive-hero { min-height: auto; align-items: start; }
  .archive-intro { max-width: 620px; }
  .feature-story-copy,
  .travel-story img { border-left: 0; }
  .feature-story-copy { border-top: 1px solid var(--line-dark); }
  .travel-story img { min-height: 0; aspect-ratio: 16 / 9; order: -1; border-bottom: 1px solid var(--line-dark); }
  .trilogy { grid-template-columns: 1fr; }
  .trilogy-card { display: grid; grid-template-columns: 42% 1fr; padding: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .trilogy-card:last-child { border-bottom: 0; }
  .trilogy-card img { height: 100%; aspect-ratio: auto; min-height: 320px; }
  .trilogy-card-copy { padding: 32px; }
  .archive-statement { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-rail { position: static; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .article-layout::after { display: none; }
  .pull-note { padding-left: 22px; }
}

@media (max-width: 620px) {
  .journal-header { min-height: 68px; padding: 0 20px; }
  .journal-brand span { display: none; }
  .journal-nav { gap: 14px; }
  .journal-nav a:nth-child(2) { display: none; }
  .archive-main,
  .article-shell { width: min(calc(100% - 40px), 430px); }
  .archive-hero { padding: 76px 0 56px; gap: 40px; }
  .archive-title { font-size: clamp(64px, 22vw, 94px); }
  .archive-signal { padding: 16px 0; flex-direction: column; align-items: flex-start; }
  .archive-section { padding: 74px 0; }
  .archive-section-head { gap: 24px; }
  .feature-story { min-height: 0; }
  .feature-story-media { min-height: 0; }
  .feature-story-media img { height: auto; aspect-ratio: 16 / 9; }
  .feature-story-copy { padding: 28px 0; }
  .trilogy-card { grid-template-columns: 1fr; }
  .trilogy-card img { min-height: 0; aspect-ratio: 16 / 9; }
  .trilogy-card-copy { padding: 26px 0 34px; }
  .travel-story-copy { padding: 28px 0; }
  .archive-statement { padding: 76px 0; }
  .article-masthead { padding: 72px 0 44px; }
  .article-title { font-size: clamp(48px, 14vw, 68px); line-height: 0.98; }
  .article-dek,
  .legacy-source { margin-left: 0; }
  .article-hero { width: 100vw; margin-left: calc(50% - 50vw); }
  .article-hero figcaption { padding-left: 20px; padding-right: 20px; }
  .article-copy > p,
  .article-copy > ul,
  .article-copy > ol { font-size: 17px; line-height: 1.72; }
  .article-copy .opening { font-size: 22px; }
  .article-end { flex-direction: column; }
  .series-links,
  .related-links { grid-template-columns: 1fr; }
  .series-links a,
  .related-links a { min-height: 145px; border-right: 0; }
  .journal-footer { flex-direction: column; padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feature-story-media img { transition: none; }
}
