:root {
  --paper: #f4ecdf;
  --sky: #efe5d7;
  --sky-deep: #e6d9c9;
  --line: #d8cab8;
  --line-strong: #bea991;
  --ink: #2a221c;
  --ink-soft: #6b5f55;
  --accent: #5f7d99;
  --accent-deep: #3f5f79;
  --shadow: 0 28px 60px -44px rgba(59, 43, 26, 0.24);
  --max: 1180px;
  --fast: 220ms ease;
  --slow: 520ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f2ea 0%, var(--paper) 100%);
  line-height: 1.7;
}

.js body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--slow), transform var(--slow);
}

.js body.is-ready {
  opacity: 1;
  transform: none;
}

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

a,
button {
  transition:
    color var(--fast),
    background-color var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.page-wrap {
  overflow-x: clip;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 202, 184, 0.9);
  background: rgba(248, 242, 234, 0.92);
  backdrop-filter: blur(14px);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.signature {
  font-family: "Newsreader", serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.chapter-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.chapter-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.chapter-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fast);
}

.chapter-nav a:hover,
.chapter-nav a:focus-visible,
.chapter-nav a[aria-current="page"] {
  color: var(--ink);
}

.chapter-nav a:hover::after,
.chapter-nav a:focus-visible::after,
.chapter-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-pill {
  padding: 0.8rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: transparent;
}

.nav-pill::after {
  display: none;
}

.menu-switch {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker,
.story-tag {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.9rem);
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

h3 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
}

p,
blockquote {
  margin: 0;
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 0.4rem;
  background: var(--sky);
  font-family: inherit;
  font-size: 0.95em;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.action-link:hover,
.action-link:focus-visible,
.nav-pill:hover,
.nav-pill:focus-visible {
  transform: translateY(-2px);
}

.action-link--solid {
  border-color: rgba(63, 95, 121, 0.18);
  background: var(--sky);
  color: var(--accent-deep);
  box-shadow: none;
}

.action-link--solid:hover,
.action-link--solid:focus-visible {
  border-color: rgba(63, 95, 121, 0.32);
  background: var(--sky-deep);
}

.action-link--line {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.action-link--line:hover,
.action-link--line:focus-visible {
  border-color: var(--accent);
}

.lead-panel {
  padding: clamp(1.6rem, 3.4vw, 2.6rem) 0 clamp(1.9rem, 3vw, 2.5rem);
}

.founder-biography {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lead-panel > .page-shell {
  width: min(calc(100% - 2rem), 81rem);
}

.founder-biography .container {
  width: min(calc(100% - 2rem), 68.75rem);
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 40px;
}

.lead-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 26.5rem);
  gap: 0.9rem clamp(0.12rem, 0.42vw, 0.4rem);
  align-items: start;
}

.founder-biography-grid {
  width: 100%;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 64px;
  row-gap: 2rem;
  align-items: center;
  align-content: center;
}

.lead-panel__copy,
.lead-panel__primary,
.lead-panel__portrait {
  min-width: 0;
}

.lead-panel__copy {
  display: grid;
  gap: 1.05rem;
  align-content: start;
  max-width: none;
  padding-right: 0.2rem;
}

.founder-biography .lead-panel__copy {
  gap: 0;
  max-width: none;
  align-self: center;
}

.lead-panel__primary {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding-top: 0;
  max-width: none;
}

.founder-biography .lead-panel__headline-block {
  gap: 0.8rem;
}

.lead-panel__headline-block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lead-panel__primary h1 {
  display: grid;
  gap: 0.08em;
  max-width: none;
  font-size: clamp(2.5rem, 3.65vw, 3rem);
  line-height: 1.06;
  text-wrap: balance;
}

.founder-biography .lead-panel__primary h1 {
  max-width: 580px;
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: 0;
}

.lead-panel__line {
  display: block;
  white-space: nowrap;
}

.lead-panel__body {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
  align-content: start;
}

.founder-biography .lead-panel__body {
  gap: 0;
}

.lead-panel__deck {
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.72;
}

.founder-biography .lead-panel__deck {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.65;
}

.founder-biography .lead-panel__deck:last-child {
  margin-bottom: 0;
}

.note-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 1rem 2rem;
  width: 100%;
  max-width: none;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.note-rail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.62;
}

.note-rail p + p {
  padding-left: 1.35rem;
  border-left: 1px solid rgba(190, 169, 145, 0.72);
}

.note-rail span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.95rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  place-self: stretch;
  margin-inline: 0;
  margin-top: 0;
}

.lead-panel__actions .action-link--solid {
  min-width: 10.2rem;
  justify-content: center;
  padding: 0.8rem 1.02rem;
  font-size: 0.76rem;
}

.lead-panel__actions .action-link--line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  font-size: 0.76rem;
}

.lead-panel__actions .action-link--line svg {
  width: 0.84rem;
  height: 0.84rem;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(1px);
}

.lead-panel__portrait {
  position: relative;
  display: grid;
  gap: 0.85rem;
  grid-column: 2;
  width: min(100%, 26.5rem);
  align-self: start;
  justify-self: end;
  justify-items: stretch;
  padding-top: 0;
}

.founder-biography .lead-panel__portrait {
  width: 100%;
  max-width: 420px;
  gap: 1.25rem;
  align-self: center;
  justify-self: end;
}

.founder-biography .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-biography .image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 420px;
}

.lead-panel__image-frame {
  position: relative;
  width: 100%;
  margin: 0;
  margin-left: auto;
  padding: 0.58rem;
  overflow: hidden;
  border: 1px solid rgba(190, 169, 145, 0.9);
  border-radius: 0;
  background: var(--paper);
  box-shadow: 0 18px 34px -36px rgba(59, 43, 26, 0.22);
}

.lead-panel__image-frame::before {
  content: "";
  position: absolute;
  inset: -0.3rem;
  border: 1px solid rgba(190, 169, 145, 0.42);
  pointer-events: none;
}

.lead-panel__image-frame::after {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid rgba(190, 169, 145, 0.52);
  pointer-events: none;
}

.lead-panel__image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 380ms ease;
}

.lead-panel__image-frame:hover img {
  transform: scale(1.02);
}

.founder-biography .cta-group {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.founder-biography .note-rail {
  margin-top: 1.8rem;
  padding-top: 1.15rem;
  gap: 1rem 1.6rem;
}

.founder-biography .note-rail p {
  font-size: 0.98rem;
  line-height: 1.58;
}

.opening-spread__copy p,
.chapter-band__top p,
.tailnote__copy {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.founder-outline,
.present-tense,
.feature-run,
.chapter-shelf,
.chapter-column,
.chapter-split,
.afterword,
.correspondence,
.contact-sheet,
.contact-types,
.reply-note {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.snapshot-left {
  display: block;
  padding-right: 34px;
}

.snapshot-left > .snapshot-label {
  margin-bottom: 18px;
}

.snapshot-title {
  max-width: 440px;
  margin: 0 0 28px;
  font-size: 62px;
  line-height: 0.96;
  letter-spacing: 0;
}

.snapshot-text-group {
  max-width: 500px;
}

.snapshot-text-group p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.65;
  color: #5f5952;
}

.snapshot-text-group p:last-child {
  margin-bottom: 0;
}

.snapshot-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 34px;
  padding-left: 34px;
}

.snapshot-item {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(60, 52, 43, 0.12);
}

.snapshot-item:nth-child(-n + 2) {
  padding-top: 0;
  border-top: 0;
}

.snapshot-label {
  margin: 0 0 14px;
  color: #3f5f7a;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.snapshot-label::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  margin-top: 8px;
  background: rgba(63, 95, 122, 0.7);
}

.snapshot-heading {
  max-width: 240px;
  margin: 0 0 14px;
  color: #2f2924;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

.snapshot-body,
.moment__meta {
  max-width: 260px;
  margin: 0;
  color: #5f5952;
  font-size: 16px;
  line-height: 1.65;
}

.present-tense__grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 280px;
  gap: 1.5rem 2rem;
  align-items: start;
}

.present-tense__intro {
  grid-column: 1 / span 2;
  max-width: 29rem;
}

.present-tense__intro h2,
.year-ribbon__head h2,
.feature-run__lead h2,
.passage__grid h2,
.afterword__grid h2,
.chapter-intro h2 {
  max-width: 14ch;
}

.present-tense__body {
  grid-column: 2;
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  color: var(--ink-soft);
}

.field-note {
  grid-column: 3;
  display: grid;
  gap: 1rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
}

.field-note__item {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.field-note__item p:last-child {
  color: var(--ink-soft);
}

.present-tense__image {
  grid-column: 1 / span 3;
  margin-top: 0.8rem;
}

.media-wash {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: var(--ink-soft);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--fast), box-shadow var(--fast);
}

.media-wash::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(63, 95, 121, 0.22);
  border-radius: 0.7rem;
}

.media-wash span {
  position: relative;
  max-width: 18rem;
}

.media-wash:hover,
.media-wash:focus-within {
  transform: translateY(-4px);
}

.media-wash--portrait {
  min-height: 430px;
}

.media-wash--landscape {
  min-height: 265px;
}

.media-wash--square {
  min-height: 320px;
}

.media-wash--mini {
  min-height: 170px;
}

.archive-stack,
.archive-grid {
  display: grid;
  gap: 0.8rem;
}

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

.archive-grid--three .archive-card:first-child {
  grid-column: 1 / -1;
}

.archive-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(248, 242, 234, 0.86);
  box-shadow: var(--shadow);
}

.archive-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 380ms ease;
}

.archive-card:hover img,
.archive-card:focus-within img {
  transform: scale(1.02);
}

.archive-card--portrait img {
  aspect-ratio: 4 / 5;
}

.archive-card--square img {
  aspect-ratio: 1 / 1;
}

.archive-card--landscape img {
  aspect-ratio: 16 / 11;
}

.archive-card--wide img {
  aspect-ratio: 16 / 10;
}

.archive-card--natural img {
  height: auto;
}

.year-ribbon,
.chapter-band,
.chapter-dossier {
  padding: clamp(4.8rem, 8vw, 6.8rem) 0;
}

.year-ribbon__head {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.moment-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 30vw);
  gap: 1rem;
  overflow-x: auto;
  padding: 1.1rem 0 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-snap-type: x mandatory;
}

.moment-strip::-webkit-scrollbar {
  height: 10px;
}

.moment-strip::-webkit-scrollbar-track {
  background: transparent;
}

.moment-strip::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
}

.moment {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 255px;
  padding: 0 0 1rem;
  scroll-snap-align: start;
}

.moment + .moment {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.moment:nth-child(even) {
  padding-top: 3rem;
}

.moment__year {
  color: var(--accent-deep);
  font-family: "Newsreader", serif;
  font-size: 2.9rem;
  letter-spacing: 0;
  line-height: 0.9;
}

.moment__meta {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.moment p:last-of-type {
  color: var(--ink-soft);
}

.interlude {
  padding: clamp(5rem, 9vw, 7.2rem) 0;
  background: var(--sky);
}

.interlude__line,
.pull-quote {
  max-width: 14ch;
  font-family: "Newsreader", serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.feature-run__lead {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.feature-stack {
  display: grid;
  gap: 4rem;
}

.essay-cut {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: 2rem 3rem;
  align-items: start;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.essay-cut--mirror {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 0.95fr);
}

.essay-cut--mirror .essay-cut__copy {
  order: 2;
}

.essay-cut--mirror .essay-cut__media {
  order: 1;
}

.essay-cut__copy {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.essay-cut__copy p {
  color: var(--ink-soft);
}

.essay-cut__facts,
.chapter-column__markers {
  display: grid;
  gap: 0.95rem;
}

.fact-line {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.fact-line span {
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact-line p {
  color: var(--ink-soft);
}

.passage {
  padding: 4rem 0 6rem;
}

.passage__grid,
.tailnote__grid,
.opening-spread__grid,
.chapter-band__body,
.afterword__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.passage__grid {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.passage__copy,
.afterword__copy {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.passage__copy p,
.afterword__copy p,
.annotation-row__item p:last-child,
.annotation-panel p:last-child,
.opening-spread__aside p:last-child,
.opening-spread__note p:last-child,
.chapter-shelf__copy p,
.chapter-column__body p,
.chapter-column__side p:last-child,
.chapter-split__essay p,
.chapter-intro p,
.dossier-slip p:last-child {
  color: var(--ink-soft);
}

.tailnote {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid var(--line);
}

.tailnote__grid {
  align-items: end;
}

.tailnote__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.2rem;
}

.tailnote__links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.tailnote__links a:hover,
.tailnote__links a:focus-visible {
  color: var(--accent-deep);
}

.correspondence {
  padding-bottom: 2.4rem;
}

.correspondence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 2rem 3rem;
  align-items: end;
}

.correspondence__lead {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.correspondence__lead h1 {
  max-width: 11ch;
}

.correspondence__deck,
.correspondence__note p:last-child,
.contact-case p,
.reply-note__body p {
  color: var(--ink-soft);
}

.correspondence__note {
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-sheet {
  padding-top: clamp(4.2rem, 6.2vw, 5.6rem);
  padding-bottom: clamp(4.4rem, 7vw, 6rem);
}

.contact-sheet__frame {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 2.8vw, 2.45rem);
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 240, 0.36));
}

.contact-sheet__top {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 4.4vw, 64px);
  align-items: center;
}

.contact-sheet__intro {
  display: grid;
  justify-items: start;
  align-self: center;
  gap: clamp(0.9rem, 1.4vw, 1.1rem);
  width: min(100%, 54rem);
  margin: 0;
  text-align: left;
}

.contact-sheet__intro h1 {
  max-width: 14ch;
  font-size: clamp(3.35rem, 5.15vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.contact-sheet__headline-line {
  display: block;
}

.contact-sheet__deck {
  max-width: 41rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.22vw, 1.18rem);
  line-height: 1.72;
}

.contact-sheet__availability {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1.1rem;
  align-items: start;
  max-width: 42rem;
  padding-top: 1rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(21, 20, 19, 0.14);
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}

.contact-sheet__availability span {
  display: block;
  margin-bottom: 0;
  padding-top: 0.12rem;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
  text-transform: uppercase;
}

.contact-sheet__grid {
  display: grid;
  gap: 0;
  align-items: start;
  padding-top: 0.15rem;
  border-top: 0;
}

.contact-sheet__main {
  display: grid;
  gap: 0;
  max-width: none;
  padding: 0.35rem;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.52);
}

.contact-types__intro h2 {
  max-width: 14ch;
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
}

.contact-lines__item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.5rem;
  min-height: 100%;
  padding: 1.15rem clamp(18px, 2vw, 24px) 1.3rem;
  border-top: 0;
}

.contact-lines__item + .contact-lines__item {
  border-left: 1px solid rgba(21, 20, 19, 0.12);
}

.contact-lines__item span {
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-lines__item p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.contact-lines__item a {
  width: fit-content;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
  text-decoration: none;
}

.contact-lines__item a:hover,
.contact-lines__item a:focus-visible {
  color: var(--accent-deep);
}

.contact-sheet__actions,
.reply-note__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.65rem;
}

.contact-sheet__actions {
  justify-content: flex-start;
}

.contact-sheet__actions .action-link--solid {
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  border-color: rgba(21, 20, 19, 0.9);
  background: #171411;
  color: #fbfaf6;
}

.contact-sheet__actions .action-link--solid:hover,
.contact-sheet__actions .action-link--solid:focus-visible {
  border-color: #2a241f;
  background: #2a241f;
}

.contact-sheet__actions .action-link--line {
  color: var(--ink-soft);
  border-bottom-color: rgba(21, 20, 19, 0.12);
}

.contact-sheet__actions .action-link--line:hover,
.contact-sheet__actions .action-link--line:focus-visible {
  color: var(--accent-deep);
  border-color: rgba(63, 95, 121, 0.42);
}

.contact-sheet__media {
  width: min(100%, 430px);
  justify-self: end;
}

.contact-sheet .contact-portrait {
  display: grid;
  gap: 0;
  padding: 0.72rem;
  border-color: rgba(21, 20, 19, 0.16);
  border-radius: 0.72rem;
  background: #fffdf8;
  box-shadow: none;
}

.contact-sheet .contact-portrait img {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(21, 20, 19, 0.08);
  border-radius: 0.24rem;
}

.contact-sheet .contact-portrait figcaption {
  padding: 0.82rem 0.08rem 0.02rem;
  margin-top: 0.72rem;
  border-top: 1px solid rgba(21, 20, 19, 0.12);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-inquiry {
  display: grid;
  justify-items: center;
  padding-top: clamp(1.45rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(21, 20, 19, 0.14);
}

.contact-form {
  display: grid;
  width: min(100%, 920px);
  gap: clamp(1rem, 1.8vw, 1.25rem);
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(21, 20, 19, 0.14);
  border-radius: 0.72rem;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 24px 60px -50px rgba(21, 20, 19, 0.38);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.15rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.contact-form label > span {
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(21, 20, 19, 0.16);
  border-radius: 0.38rem;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form input,
.contact-form select {
  height: 3.25rem;
  padding: 0 0.95rem;
}

.contact-form textarea {
  min-height: 11rem;
  padding: 0.9rem 0.95rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(75, 81, 79, 0.52);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15, 71, 97, 0.16);
  border-color: rgba(15, 71, 97, 0.42);
  background: #fffdf8;
}

.contact-form__footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.35rem;
}

.contact-form__footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form__footer a {
  color: var(--ink);
  text-decoration: none;
}

.contact-form__footer a:hover,
.contact-form__footer a:focus-visible {
  color: var(--accent-deep);
}

.contact-form button.action-link {
  cursor: pointer;
  border-color: rgba(21, 20, 19, 0.9);
  background: #171411;
  color: #fbfaf6;
  font-family: inherit;
}

.contact-form button.action-link:hover,
.contact-form button.action-link:focus-visible {
  border-color: #2a241f;
  background: #2a241f;
}

.contact-types {
  background: var(--sky);
}

.contact-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 52px);
  align-items: start;
}

.contact-types__intro {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.contact-types__intro h2 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  line-height: 0.96;
  text-wrap: balance;
}

.contact-types__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.contact-case {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
}

.contact-case h3 {
  max-width: 16ch;
  font-size: clamp(1.45rem, 1.7vw, 1.9rem);
  line-height: 1.08;
}

.reply-note__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.8fr);
  gap: 2rem 3rem;
  align-items: start;
}

.reply-note__quote {
  max-width: 12ch;
}

.reply-note__body {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.opening-spread {
  padding: clamp(4.6rem, 8vw, 7rem) 0 3rem;
}

.opening-spread--title-only {
  padding-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.opening-spread__grid {
  grid-template-columns: 210px minmax(0, 1fr) 240px;
  align-items: end;
}

.opening-spread--title-only .opening-spread__grid {
  grid-template-columns: 1fr;
}

.opening-spread__aside,
.opening-spread__note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.opening-spread__copy {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.opening-spread--title-only .opening-spread__copy {
  max-width: none;
}

.opening-spread--title-only + .chapter-shelf {
  padding-top: clamp(1.2rem, 3vw, 2rem);
}

.chapter-shelf__grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 330px;
  gap: 2rem;
  align-items: start;
}

.year-mark {
  display: grid;
  gap: 0.35rem;
}

.year-mark__year {
  margin: 0;
  color: var(--accent-deep);
  font-family: "Newsreader", serif;
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 0.86;
}

.year-mark__title {
  color: var(--ink);
  font-family: "Newsreader", serif;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.chapter-shelf__copy,
.chapter-column__body,
.chapter-split__essay,
.chapter-intro {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.annotation-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.45rem;
}

.annotation-row--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 40rem;
}

.annotation-row__item,
.annotation-panel {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.chapter-band {
  background: var(--sky);
}

.chapter-band__top {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.chapter-band__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.annotation-panel--media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1rem;
}

.resell-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.98fr);
  gap: clamp(2.25rem, 5vw, 6rem);
  align-items: start;
}

.resell-spread__intro {
  display: grid;
  gap: 1rem;
  max-width: 43rem;
}

.resell-spread__intro h2 {
  max-width: 15.5ch;
}

.resell-spread__intro h2 span {
  display: block;
  white-space: nowrap;
}

.resell-spread__intro p {
  color: var(--ink-soft);
}

body.journey-page #year-2018-2019::before {
  top: clamp(1.05rem, 2vw, 1.75rem);
  right: max(2rem, calc((100vw - 1320px) / 2 + 1rem));
  font-size: clamp(4.8rem, 8.6vw, 9.4rem);
  opacity: 0.82;
}

.resell-spread__media-panel {
  display: grid;
  gap: clamp(1rem, 1.7vw, 1.35rem);
  padding-top: clamp(4rem, 6vw, 5.7rem);
}

.resell-spread__photo-group {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.76fr);
  grid-template-areas:
    "hero supportA"
    "hero supportB";
  gap: clamp(0.75rem, 1.2vw, 1rem);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: clamp(340px, 31vw, 430px);
  align-items: stretch;
}

.resell-spread__photo-group .archive-card {
  height: 100%;
  min-width: 0;
}

.resell-spread__hero {
  grid-area: hero;
}

.resell-spread__support--shipping {
  grid-area: supportA;
}

.resell-spread__support--inventory {
  grid-area: supportB;
}

.resell-spread__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}

.resell-spread__hero img,
.resell-spread__support img {
  width: 100%;
  display: block;
  object-fit: cover;
}

body.journey-page #year-2018-2019 .resell-spread__photo-group img {
  height: 100%;
  aspect-ratio: auto;
}

.resell-spread__hero img {
  height: clamp(340px, 31vw, 430px);
  aspect-ratio: auto;
  object-position: center 42%;
}

.resell-spread__support img {
  height: clamp(164px, 14.7vw, 207px);
  aspect-ratio: auto;
}

.resell-spread__support--shipping img {
  object-position: center top;
}

.resell-spread__support--inventory img {
  object-position: center 34%;
}

.resell-spread__note {
  align-self: start;
  gap: 0.55rem;
  padding: clamp(0.95rem, 1.4vw, 1.15rem) 0 0;
}

.resell-spread__note p:not(.story-tag) {
  max-width: 30rem;
}

@media (max-width: 1024px) {
  .resell-spread {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 5vw, 3rem);
  }

  .resell-spread__intro {
    max-width: 58rem;
  }

  .resell-spread__intro h2 {
    max-width: 15.5ch;
  }

  .resell-spread__media-panel {
    padding-top: clamp(2rem, 7vw, 4rem);
  }

  .resell-spread__photo-group {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.68fr);
    height: clamp(340px, 55vw, 500px);
  }

  .resell-spread__hero img {
    height: clamp(340px, 55vw, 500px);
  }

  .resell-spread__support img {
    height: clamp(165px, 26vw, 240px);
  }
}

@media (max-width: 700px) {
  .resell-spread {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .resell-spread__intro h2 {
    max-width: 100%;
  }

  body.journey-page #year-2018-2019::before {
    top: 0.75rem;
    right: 1rem;
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .resell-spread__media-panel {
    gap: 0.95rem;
    padding-top: 0;
  }

  .resell-spread__photo-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "hero hero"
      "supportA supportB";
    grid-template-rows: auto auto;
    gap: 0.75rem;
    height: auto;
  }

  .resell-spread__photo-group .archive-card {
    height: auto;
  }

  body.journey-page #year-2018-2019 .resell-spread__photo-group img {
    aspect-ratio: auto;
  }

  .resell-spread__hero img {
    height: clamp(300px, 92vw, 360px);
    max-height: none;
  }

  .resell-spread__support img {
    height: clamp(118px, 38vw, 150px);
  }

  body.journey-page #year-2018-2019 .resell-spread__hero img {
    height: clamp(300px, 92vw, 360px);
  }

  body.journey-page #year-2018-2019 .resell-spread__support img {
    height: clamp(118px, 38vw, 150px);
  }

  .resell-spread__support--shipping img {
    aspect-ratio: 16 / 10;
  }

  .resell-spread__support--inventory img {
    aspect-ratio: 1 / 1;
  }

  .resell-spread__notes {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.chapter-band--year-2022 .chapter-band__top {
  max-width: min(100%, 56rem);
}

.chapter-band--year-2022 .chapter-band__body {
  grid-template-columns: 1fr;
}

.chapter-band--year-2022 .chapter-band__details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.chapter-band--year-2022 .annotation-panel--media {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.archive-stack--2022 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.archive-stack--2022 .archive-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .chapter-band--year-2022 .chapter-band__details,
  .chapter-band--year-2022 .annotation-panel--media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .archive-stack--2022 {
    grid-template-columns: 1fr;
  }
}

.chapter-column__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: start;
}

.chapter-column--text-only .chapter-column__grid {
  grid-template-columns: minmax(0, 48rem);
}

.chapter-column--text-only .chapter-column__body {
  max-width: 48rem;
}

.chapter-column__side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
}

.chapter-split__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.chapter-split__stack {
  display: grid;
  gap: 1rem;
}

.pull-quote--small {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.chapter-dossier__spread {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.chapter-dossier__lead {
  display: grid;
  grid-template-columns: minmax(0, 42rem) minmax(280px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.chapter-dossier__lead .chapter-intro {
  max-width: none;
}

.chapter-dossier__photo {
  margin: 0;
  min-width: 0;
}

.chapter-dossier__photo img {
  object-position: center;
}

.dossier-slip {
  display: grid;
  gap: 0.7rem;
  min-height: 260px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--sky);
  box-shadow: var(--shadow);
}

.dossier-slip:nth-child(2) {
  transform: translateY(1.5rem);
}

.dossier-slip:nth-child(3) {
  transform: translateY(0.6rem);
}

.rise {
  opacity: 1;
  transform: none;
}

.js .rise {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--slow), transform var(--slow);
}

.js .rise.is-seen {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .year-ribbon__head,
  .feature-run__lead,
  .essay-cut,
  .essay-cut--mirror,
  .passage__grid,
  .tailnote__grid,
  .opening-spread__grid,
  .chapter-shelf__grid,
  .chapter-band__body,
  .chapter-column__grid,
  .chapter-split__grid,
  .afterword__grid,
  .correspondence__grid,
  .contact-sheet__grid,
  .reply-note__grid {
    grid-template-columns: 1fr;
  }

  .present-tense__grid {
    grid-template-columns: 1fr 1fr;
  }

  .present-tense__intro,
  .present-tense__body,
  .field-note,
  .present-tense__image {
    grid-column: auto;
  }

  .essay-cut--mirror .essay-cut__copy,
  .essay-cut--mirror .essay-cut__media {
    order: initial;
  }

  .chapter-column__side {
    position: static;
  }

  .annotation-row,
  .chapter-band__details {
    grid-template-columns: 1fr;
  }

  .annotation-panel--media {
    grid-template-columns: 1fr;
  }

  .contact-types__cards {
    grid-template-columns: 1fr 1fr;
  }

  .snapshot-title {
    font-size: clamp(3.35rem, 5.8vw, 3.75rem);
  }

  .tailnote__links {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .lead-panel {
    padding-top: 1.45rem;
    padding-bottom: 2.2rem;
  }

  .founder-biography {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 72px;
  }

  .lead-panel__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 22rem);
    gap: 1rem 0.8rem;
  }

  .founder-biography .lead-panel__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18.5rem, 21.5rem);
    column-gap: 1.5rem;
    row-gap: 1.9rem;
  }

  .lead-panel__copy {
    max-width: 100%;
  }

  .lead-panel__primary h1 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
  }

  .founder-biography .lead-panel__primary h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 4.2vw, 2.95rem);
  }

  .lead-panel__line {
    white-space: normal;
  }

  .lead-panel__body,
  .note-rail {
    max-width: 100%;
  }

  .founder-biography .lead-panel__deck {
    max-width: 520px;
    font-size: 1.07rem;
  }

  .lead-panel__image-frame {
    margin-left: 0;
  }

  .note-rail {
    gap: 1rem 1.4rem;
  }

  .note-rail p + p {
    padding-left: 1rem;
  }

  .snapshot-title {
    font-size: clamp(3.15rem, 6vw, 3.55rem);
  }

  .snapshot-text-group p,
  .snapshot-body {
    font-size: 15px;
  }

  .snapshot-heading {
    font-size: 22px;
  }
}

@media (max-width: 940px) {
  .snapshot-left,
  .snapshot-right {
    padding-left: 0;
    padding-right: 0;
  }

  .snapshot-title,
  .snapshot-text-group,
  .snapshot-heading,
  .snapshot-body {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .lead-panel__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-biography .lead-panel__grid {
    grid-template-columns: 1fr;
    row-gap: 1.8rem;
  }

  .lead-panel__copy {
    padding-right: 0;
  }

  .lead-panel__portrait {
    grid-column: auto;
    width: min(100%, 24rem);
    justify-self: center;
  }

  .founder-biography .lead-panel__copy,
  .founder-biography .lead-panel__deck {
    max-width: 100%;
  }

  .founder-biography .lead-panel__portrait {
    width: min(100%, 23rem);
    justify-self: center;
  }

  .founder-biography .lead-panel__primary h1 {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .masthead__inner {
    position: relative;
  }

  .menu-switch {
    display: inline-flex;
  }

  .chapter-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0.3rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 0.45rem;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .chapter-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .chapter-nav a {
    padding: 0.7rem 0.2rem;
  }

  .nav-pill {
    width: fit-content;
    margin-top: 0.2rem;
  }

  .present-tense__grid,
  .snapshot-right,
  .chapter-dossier__spread,
  .contact-types__grid {
    grid-template-columns: 1fr;
  }

  .contact-types__cards {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    padding-top: 1.2rem;
    padding-bottom: 2rem;
  }

  .founder-biography {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 64px;
  }

  .lead-panel__primary {
    gap: 0.75rem;
  }

  .lead-panel__primary h1 {
    font-size: clamp(2rem, 6vw, 2.55rem);
  }

  .founder-biography .lead-panel__primary h1 {
    margin-bottom: 20px;
    font-size: clamp(2.1rem, 6vw, 2.55rem);
  }

  .lead-panel__body {
    gap: 0.85rem;
  }

  .lead-panel__portrait {
    gap: 0.75rem;
  }

  .founder-outline {
    padding: 64px 0;
  }

  .snapshot-right {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .snapshot-item:nth-child(n) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .snapshot-item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .snapshot-title {
    font-size: clamp(2.75rem, 8vw, 3.25rem);
  }

  .snapshot-heading,
  .snapshot-body {
    max-width: 100%;
  }

  .note-rail {
    grid-template-columns: 1fr;
  }

  .note-rail p + p {
    padding-left: 0;
    padding-top: 0.9rem;
    border-left: 0;
    border-top: 1px solid rgba(190, 169, 145, 0.72);
  }

  .moment-strip {
    grid-auto-columns: minmax(230px, 72vw);
  }

  .dossier-slip:nth-child(2),
  .dossier-slip:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .present-tense,
  .year-ribbon,
  .interlude,
  .feature-run,
  .passage,
  .opening-spread,
  .chapter-shelf,
  .chapter-band,
  .chapter-column,
  .chapter-split,
  .chapter-dossier,
  .afterword,
  .correspondence,
  .contact-sheet,
  .contact-types,
  .reply-note {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .lead-panel {
    padding-top: 0.95rem;
    padding-bottom: 1.8rem;
  }

  .founder-biography {
    padding-top: 84px;
    padding-bottom: 56px;
  }

  .lead-panel__grid {
    gap: 0.9rem;
  }

  .founder-biography .lead-panel__grid {
    row-gap: 1.6rem;
  }

  .lead-panel__primary {
    gap: 0.7rem;
  }

  .lead-panel__headline-block {
    gap: 0.45rem;
  }

  .lead-panel__primary h1 {
    font-size: clamp(1.9rem, 7.4vw, 2.18rem);
  }

  .founder-biography .lead-panel__primary h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(1.95rem, 7.2vw, 2.2rem);
  }

  .lead-panel__deck {
    font-size: 1.06rem;
  }

  .founder-biography .lead-panel__deck {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .lead-panel__actions {
    gap: 0.6rem 0.85rem;
  }

  .lead-panel__image-frame {
    width: 100%;
    padding: 0.45rem;
  }

  .snapshot-title {
    font-size: clamp(2.3rem, 11vw, 2.9rem);
    line-height: 0.98;
  }

  .snapshot-text-group p,
  .snapshot-body {
    font-size: 1rem;
    line-height: 1.62;
  }

  .snapshot-heading {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .snapshot-item {
    padding-top: 16px;
  }

  .lead-panel__actions .action-link--solid {
    padding: 0.82rem 1.05rem;
  }

  .fact-line {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-lines__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

.contact-sheet__actions,
.reply-note__links {
  flex-direction: column;
  align-items: stretch;
}
}

@media (max-width: 1280px) {
  .founder-biography .lead-panel__primary h1 {
    font-size: 48px;
  }

  .founder-biography-grid {
    column-gap: 52px;
  }
}

@media (max-width: 1024px) {
  .founder-biography {
    min-height: auto;
    padding: 104px 0 72px;
  }

  .founder-biography .container {
    padding: 0 40px;
  }

  .founder-biography-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .founder-biography .lead-panel__primary h1 {
    max-width: 100%;
    font-size: 40px;
  }

  .founder-biography .lead-panel__line {
    white-space: normal;
  }

  .founder-biography .lead-panel__deck {
    max-width: 100%;
  }

  .founder-biography .lead-panel__portrait {
    max-width: 380px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .founder-biography {
    min-height: auto;
    padding: 80px 0 60px;
    align-items: flex-start;
  }

  .founder-biography .container {
    padding: 0 20px;
  }

  .founder-biography-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .founder-biography .lead-panel__portrait {
    order: -1;
    max-width: 360px;
    width: 100%;
    justify-self: center;
  }

  .founder-biography .image-wrapper {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .founder-biography .lead-panel__copy {
    max-width: 100%;
  }

  .founder-biography .lead-panel__primary h1 {
    max-width: 100%;
    font-size: 32px;
  }

  .founder-biography .lead-panel__deck {
    max-width: 100%;
    font-size: 16px;
  }

  .founder-biography .note-rail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-biography .note-rail p + p {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(190, 169, 145, 0.72);
  }
}

/* Founder Biography overlap fix */
.founder-biography-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 64px;
  align-items: start;
}

.founder-biography-text {
  display: grid;
  gap: 0;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.founder-biography-media {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
  width: 100%;
  max-width: 420px;
  grid-column: auto;
  justify-self: end;
  position: static;
}

.founder-biography .lead-panel__portrait {
  position: static;
}

.founder-biography .image-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.founder-biography .image-wrapper img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.founder-biography .lead-panel__primary h1,
.founder-biography .lead-panel__deck,
.founder-biography .note-rail {
  max-width: 600px;
}

.founder-biography .lead-panel__line {
  white-space: normal;
}

.founder-biography .note-rail {
  grid-column: auto;
  width: 100%;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .founder-biography-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-biography-media {
    order: -1;
    justify-self: center;
  }

  .founder-biography .image-wrapper {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .founder-biography .lead-panel__primary h1,
  .founder-biography .lead-panel__deck,
  .founder-biography .note-rail {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .founder-biography-grid {
    gap: 32px;
  }

  .founder-biography-media {
    max-width: 360px;
  }
}

/* Editorial upgrade */
:root {
  --paper: #f7f2e8;
  --sky: #e8eef2;
  --sky-deep: #d8e2e8;
  --line: #c9c1b5;
  --line-strong: #171717;
  --ink: #151413;
  --ink-soft: #5d625f;
  --accent: #0f6380;
  --accent-deep: #063c55;
  --signal: #a83b2b;
  --gold: #a9863d;
  --shadow: 0 24px 54px -36px rgba(10, 10, 10, 0.44);
  --max: 1240px;
}

::selection {
  background: rgba(168, 59, 43, 0.2);
}

html {
  background: var(--ink);
}

body {
  background:
    linear-gradient(90deg, rgba(15, 99, 128, 0.07) 0 1px, transparent 1px) center / 76px 100%,
    linear-gradient(180deg, #fbfaf6 0%, var(--paper) 42%, #eef4f4 100%);
  color: var(--ink);
  line-height: 1.62;
  text-rendering: geometricPrecision;
}

.page-shell {
  width: min(calc(100% - clamp(1.25rem, 4vw, 4rem)), var(--max));
}

h1,
h2,
h3,
.signature,
.moment__year,
.year-mark__year,
.year-mark__title,
.interlude__line,
.pull-quote {
  letter-spacing: 0;
}

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

p {
  text-wrap: pretty;
}

.masthead {
  border-bottom: 1px solid rgba(21, 20, 19, 0.16);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(18px) saturate(1.08);
}

.masthead__inner {
  min-height: 72px;
}

.signature {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.chapter-nav {
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
}

.chapter-nav a {
  color: #53514d;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.chapter-nav a::after {
  background: var(--signal);
}

.nav-pill,
.menu-switch,
.action-link,
.archive-card,
.media-wash,
.dossier-slip,
.contact-case {
  border-radius: 0.45rem;
}

.nav-pill {
  border-color: rgba(21, 20, 19, 0.22);
  background: rgba(255, 255, 255, 0.42);
}

.kicker,
.story-tag {
  color: var(--accent-deep);
  letter-spacing: 0.14em;
}

.action-link {
  min-height: 44px;
  padding: 0.82rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.action-link--solid {
  border-color: var(--ink);
  background: var(--ink);
  color: #fffaf0;
}

.action-link--solid:hover,
.action-link--solid:focus-visible {
  border-color: var(--signal);
  background: var(--signal);
  color: #fffaf0;
}

.action-link--line {
  color: var(--ink);
}

.founder-biography {
  min-height: auto;
  padding: clamp(1rem, 1.8vw, 1.5rem) 0 clamp(4rem, 7vw, 6.6rem);
  border-bottom: 1px solid rgba(21, 20, 19, 0.2);
  background:
    linear-gradient(90deg, transparent 0 58%, #111820 58% 100%),
    linear-gradient(180deg, #fbfaf6 0%, #f0eadf 100%);
}

.founder-biography .container {
  width: min(calc(100% - clamp(1.25rem, 4vw, 4rem)), var(--max));
  max-width: var(--max);
  padding: 0;
}

.founder-biography-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.92fr);
  gap: clamp(2rem, 4.6vw, 4rem);
  align-items: center;
}

.founder-biography-text {
  align-content: center;
}

.founder-biography .lead-panel__headline-block {
  gap: 1rem;
}

.founder-biography .lead-panel__primary h1 {
  max-width: 680px;
  margin-bottom: clamp(1.2rem, 2vw, 1.7rem);
  font-size: clamp(3.1rem, 4.85vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.founder-biography .lead-panel__deck {
  max-width: 650px;
  color: #41433f;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.68;
}

.career-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: clamp(1.4rem, 2.2vw, 2rem);
  border-top: 1px solid rgba(21, 20, 19, 0.24);
  border-bottom: 1px solid rgba(21, 20, 19, 0.24);
}

.career-index__item {
  display: grid;
  align-content: start;
  gap: 0.26rem;
  min-width: 0;
  padding: 1rem 1rem 1rem 0;
}

.career-index__item + .career-index__item {
  padding-left: 1rem;
  border-left: 1px solid rgba(21, 20, 19, 0.16);
}

.career-index__item span {
  display: block;
  color: var(--signal);
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.9;
}

.career-index__item p {
  margin: 0;
  color: #4b514f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.founder-biography .note-rail {
  max-width: 760px;
  margin-top: 1.4rem;
  border-color: rgba(21, 20, 19, 0.24);
}

.founder-biography .note-rail p {
  color: #4f5451;
}

.founder-biography .lead-panel__portrait {
  max-width: 560px;
}

.founder-biography .lead-panel__image-frame img {
  max-width: none;
}

.lead-panel__image-frame {
  padding: 0.52rem;
  border: 1px solid rgba(255, 250, 240, 0.36);
  background: #fffaf0;
  box-shadow: 0 30px 80px -42px rgba(0, 0, 0, 0.72);
}

.lead-panel__image-frame::before,
.lead-panel__image-frame::after {
  display: none;
}

.lead-panel__image-frame img {
  aspect-ratio: 4 / 5;
  object-position: center top;
  filter: saturate(0.95) contrast(1.03);
}

.lead-panel__image-frame figcaption,
.editorial-photo figcaption,
.contact-portrait figcaption {
  margin: 0;
  padding: 0.65rem 0.25rem 0.15rem;
  color: #66625c;
  font-size: 0.78rem;
  line-height: 1.42;
}

.founder-biography .cta-group {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0.85rem;
  justify-content: stretch;
  width: 100%;
}

.founder-biography .lead-panel__actions .action-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-transform: none;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    background-color 280ms var(--ease-out),
    border-color 280ms var(--ease-out),
    color 280ms var(--ease-out);
}

.founder-biography .lead-panel__actions .action-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transform: translateY(18%) scale(0.98);
  transition:
    opacity 240ms var(--ease-out),
    transform 320ms var(--ease-out);
  z-index: -1;
}

.founder-biography .lead-panel__actions .action-link--solid {
  min-width: 0;
  border-color: #fffaf0;
  background: #fffaf0;
  color: #111820;
}

.founder-biography .lead-panel__actions .action-link--solid::before {
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.04), rgba(17, 24, 32, 0.1));
}

.founder-biography .lead-panel__actions .action-link--solid:hover,
.founder-biography .lead-panel__actions .action-link--solid:focus-visible {
  border-color: #fffdf7;
  background: #fffdf7;
  box-shadow: 0 20px 36px -26px rgba(5, 10, 16, 0.55);
}

.founder-biography .lead-panel__actions .action-link--solid:hover::before,
.founder-biography .lead-panel__actions .action-link--solid:focus-visible::before {
  opacity: 1;
  transform: none;
}

.founder-biography .lead-panel__actions .action-link--line {
  min-width: 0;
  padding-inline: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 0.45rem;
  color: #fffaf0;
}

.founder-biography .lead-panel__actions .action-link--line::before {
  background: #fffaf0;
}

.founder-biography .lead-panel__actions .action-link--line span,
.founder-biography .lead-panel__actions .action-link--line svg {
  position: relative;
  z-index: 1;
  transition: transform 260ms var(--ease-out);
}

.founder-biography .lead-panel__actions .action-link--line:hover,
.founder-biography .lead-panel__actions .action-link--line:focus-visible {
  border-color: #fffaf0;
  color: #111820;
  box-shadow: 0 20px 36px -28px rgba(255, 250, 240, 0.28);
}

.founder-biography .lead-panel__actions .action-link--line:hover::before,
.founder-biography .lead-panel__actions .action-link--line:focus-visible::before {
  opacity: 1;
  transform: none;
}

.founder-biography .lead-panel__actions .action-link--line:hover span,
.founder-biography .lead-panel__actions .action-link--line:focus-visible span {
  transform: translateX(-2px);
}

.founder-biography .lead-panel__actions .action-link--line:hover svg,
.founder-biography .lead-panel__actions .action-link--line:focus-visible svg {
  transform: translateX(4px);
}

.snapshot-title,
.snapshot-heading {
  color: #fffaf0;
}

.snapshot-title {
  max-width: 520px;
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  line-height: 0.93;
}

.snapshot-label,
.snapshot-label::after {
  color: #8fc8dc;
}

.snapshot-label::after {
  background: var(--signal);
}

.snapshot-text-group p,
.snapshot-body {
  color: rgba(255, 250, 240, 0.72);
}

.snapshot-item {
  border-top-color: rgba(255, 250, 240, 0.16);
}

.snapshot-item:nth-child(-n + 2) {
  border-top: 0;
}

.present-tense,
.feature-run,
.contact-sheet,
.reply-note,
.afterword {
  background: #fbfaf6;
}

.present-tense__grid {
  grid-template-columns: 0.72fr 1fr 0.78fr;
  gap: clamp(1.4rem, 3vw, 2.5rem);
}

.present-tense__intro h2,
.year-ribbon__head h2,
.feature-run__lead h2,
.passage__grid h2,
.afterword__grid h2,
.chapter-intro h2 {
  max-width: 16ch;
}

.field-note {
  border-top-color: var(--ink);
}

.field-note__item {
  border-top-color: rgba(21, 20, 19, 0.18);
}

.proof-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 3vw, 2.4rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(21, 20, 19, 0.26);
  border-radius: 0.45rem;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.05) 0 1px, transparent 1px) center / 54px 100%,
    #111820;
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.proof-board__headline h3 {
  max-width: 11ch;
  margin-top: 0.55rem;
  color: #fffaf0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.proof-board .story-tag {
  color: #8fc8dc;
}

.proof-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 240, 0.2);
  border-left: 1px solid rgba(255, 250, 240, 0.2);
}

.proof-board__grid article {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  min-height: 170px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 250, 240, 0.2);
  border-bottom: 1px solid rgba(255, 250, 240, 0.2);
}

.proof-board__grid span {
  color: #fffaf0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-board__grid p {
  color: rgba(255, 250, 240, 0.72);
}

.year-ribbon {
  background: linear-gradient(180deg, #eef4f4 0%, #fbfaf6 100%);
}

.year-ribbon__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.year-ribbon__head h2 {
  max-width: none;
}

.year-ribbon__button {
  justify-self: end;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(21, 20, 19, 0.28);
  border-radius: 0.45rem;
  background: rgba(255, 250, 240, 0.44);
}

.year-ribbon__button:hover,
.year-ribbon__button:focus-visible {
  border-color: var(--ink);
  background: rgba(255, 250, 240, 0.76);
}

.year-ribbon__track {
  position: relative;
}

.year-ribbon__track::before {
  position: absolute;
  pointer-events: none;
}

.year-ribbon__track::before {
  content: "";
  top: 1.15rem;
  right: 0;
  bottom: 1.45rem;
  z-index: 4;
  width: clamp(5.25rem, 8vw, 7rem);
  background: linear-gradient(
    90deg,
    rgba(251, 250, 246, 0),
    rgba(251, 250, 246, 0.84) 58%,
    rgba(251, 250, 246, 0.98)
  );
}

.year-ribbon__control {
  appearance: none;
  position: absolute;
  top: 50%;
  right: clamp(-0.65rem, -0.75vw, -0.25rem);
  z-index: 5;
  display: grid;
  width: clamp(2.85rem, 3.5vw, 3.25rem);
  height: clamp(2.85rem, 3.5vw, 3.25rem);
  place-items: center;
  border: 1px solid rgba(21, 20, 19, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(248, 244, 236, 0.88));
  box-shadow:
    0 18px 36px -28px rgba(21, 20, 19, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: rgba(21, 20, 19, 0.82);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    color var(--fast),
    opacity var(--fast),
    transform var(--fast);
}

.year-ribbon__control span {
  display: block;
  transform: translateY(-1px);
}

.year-ribbon__control:hover,
.year-ribbon__control:focus-visible {
  border-color: rgba(166, 54, 42, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 1), rgba(248, 244, 236, 0.96));
  box-shadow:
    0 22px 42px -28px rgba(21, 20, 19, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: rgba(21, 20, 19, 0.94);
  transform: translateY(calc(-50% - 1px));
}

.year-ribbon__control:focus-visible {
  outline: 2px solid rgba(166, 54, 42, 0.32);
  outline-offset: 4px;
}

.year-ribbon__control:disabled {
  cursor: default;
  opacity: 0.42;
  transform: translateY(-50%);
}

.moment-strip {
  --moment-gap: clamp(0.85rem, 1.2vw, 1.05rem);

  gap: var(--moment-gap);
  padding: 1.15rem clamp(3.45rem, 5vw, 4.8rem) 1.45rem 0;
  border-top-color: rgba(21, 20, 19, 0.2);
  border-bottom-color: rgba(21, 20, 19, 0.16);
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 20, 19, 0.28) rgba(21, 20, 19, 0.05);
}

.moment-strip::-webkit-scrollbar {
  height: 8px;
}

.moment-strip::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.05);
}

.moment-strip::-webkit-scrollbar-thumb {
  border: 2px solid rgba(251, 250, 246, 0.88);
  border-radius: 999px;
  background: rgba(21, 20, 19, 0.26);
}

.moment {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 0.72rem;
  min-height: 365px;
  padding: clamp(1.35rem, 2vw, 1.65rem);
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 253, 249, 0.76);
  box-shadow:
    0 18px 46px -38px rgba(21, 20, 19, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

.moment + .moment {
  padding-left: clamp(1.35rem, 2vw, 1.65rem);
  border-left-color: rgba(21, 20, 19, 0.1);
}

.moment:nth-child(even) {
  background: rgba(247, 246, 242, 0.8);
}

.moment:hover,
.moment:focus-visible {
  border-color: rgba(166, 54, 42, 0.26);
  transform: translateY(-2px);
  box-shadow:
    0 24px 58px -40px rgba(21, 20, 19, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.moment:focus-visible {
  outline: 2px solid rgba(166, 54, 42, 0.34);
  outline-offset: 5px;
}

.moment:active {
  transform: translateY(-1px);
}

.moment::before,
.moment::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.moment::before {
  inset: 0;
  z-index: 0;
  background-image: var(--moment-bg);
  background-position: center;
  background-size: cover;
  opacity: 0.085;
  filter: grayscale(1) saturate(0.42) contrast(0.9);
  transform: scale(1.16);
}

.moment::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.82), rgba(251, 250, 246, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(239, 244, 244, 0.52));
}

.moment > * {
  position: relative;
  z-index: 2;
}

.moment:nth-child(even) {
  padding-top: clamp(2rem, 3vw, 2.6rem);
}

.moment__year {
  color: var(--signal);
  font-size: clamp(2.65rem, 3vw, 3.35rem);
  line-height: 0.86;
}

.moment h3 {
  max-width: 13ch;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.03;
}

.moment p:last-of-type {
  max-width: 32rem;
  color: rgba(75, 81, 79, 0.88);
  font-size: clamp(0.95rem, 0.98vw, 1.02rem);
  line-height: 1.68;
}

.interlude {
  background: #0f3f57;
  color: #fffaf0;
}

.interlude .kicker {
  color: #b9dce7;
}

.interlude__line,
.pull-quote {
  max-width: 16ch;
  line-height: 0.98;
}

.feature-run__lead {
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(2.8rem, 5vw, 4.2rem);
  border-top: 1px solid var(--ink);
  padding-top: 1.25rem;
}

.feature-run__lead h2 {
  max-width: 13ch;
}

.feature-stack {
  gap: clamp(3.2rem, 5vw, 5.2rem);
}

.feature-run .essay-cut {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.68fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding-top: clamp(1.5rem, 2vw, 1.9rem);
  border-top-color: rgba(21, 20, 19, 0.26);
}

.feature-run .essay-cut--mirror {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.18fr);
}

.feature-run .essay-cut--shipping .essay-cut__media,
.feature-run .essay-cut--distribution .essay-cut__media {
  justify-self: end;
}

.feature-run .essay-cut--shipping .essay-cut__media {
  max-width: 31rem;
}

.feature-run .essay-cut--rebuild .essay-cut__copy {
  padding-top: 0.65rem;
}

.feature-run .essay-cut--rebuild .essay-cut__media {
  max-width: 35rem;
}

.feature-run .essay-cut--distribution .essay-cut__copy {
  max-width: 46rem;
}

.feature-run .essay-cut--distribution .essay-cut__media {
  max-width: 35rem;
}

.feature-run .essay-cut__copy {
  max-width: 48rem;
  gap: 1.05rem;
}

.feature-run .essay-cut__copy h3 {
  max-width: 33ch;
  font-size: clamp(1.68rem, 2.15vw, 2.18rem);
  line-height: 1.02;
  text-wrap: balance;
}

.feature-run .essay-cut__copy > p {
  max-width: 39rem;
}

.feature-run .essay-cut__facts {
  gap: 1rem;
}

.feature-run .fact-line {
  grid-template-columns: minmax(120px, 144px) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding-top: 0.95rem;
}

.feature-run .fact-line p {
  max-width: 34rem;
}

.feature-run .essay-cut__media {
  display: grid;
  width: 100%;
}

.feature-run .essay-cut__media-frame {
  position: relative;
  width: 100%;
  padding: clamp(0.72rem, 1.2vw, 0.95rem);
  border: 1px solid rgba(21, 20, 19, 0.14);
  border-radius: 0.62rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 234, 0.94));
  box-shadow: 0 20px 40px -34px rgba(21, 20, 19, 0.28);
}

.feature-run .essay-cut__media-frame::after {
  content: "";
  position: absolute;
  inset: 0.44rem;
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 0.4rem;
  pointer-events: none;
}

.feature-run .essay-cut__media-frame--mosaic {
  padding: 0.82rem;
  background: linear-gradient(180deg, rgba(26, 33, 42, 0.98), rgba(17, 24, 32, 1));
  border-color: rgba(21, 20, 19, 0.2);
  box-shadow: 0 22px 44px -34px rgba(17, 24, 32, 0.5);
}

.feature-run .essay-cut__media-frame--mosaic::after {
  border-color: rgba(255, 250, 240, 0.08);
}

.feature-run .editorial-photo,
.feature-run .editorial-mosaic {
  margin: 0;
  border: 0;
  border-radius: 0.28rem;
  box-shadow: none;
}

.feature-run .editorial-photo figcaption {
  padding: 0.72rem 0.15rem 0.05rem;
}

.fact-line {
  border-top-color: rgba(21, 20, 19, 0.18);
}

.fact-line span {
  color: var(--signal);
}

.editorial-photo,
.contact-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.22);
  border-radius: 0.45rem;
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.editorial-photo img,
.contact-portrait img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.editorial-photo--portrait img {
  aspect-ratio: 4 / 5;
}

.editorial-photo--landscape img {
  aspect-ratio: 16 / 10;
}

.editorial-mosaic {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(21, 20, 19, 0.22);
  border-radius: 0.45rem;
  background: #111820;
  box-shadow: var(--shadow);
}

.editorial-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #fffaf0;
}

.editorial-mosaic figure:first-child {
  grid-row: span 2;
}

.editorial-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.editorial-mosaic figure:first-child img {
  object-position: center top;
}

.editorial-mosaic__note {
  display: grid;
  align-content: end;
  min-height: 170px;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 0.35rem;
  color: #fffaf0;
}

.editorial-mosaic__note span {
  color: #8fc8dc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-mosaic__note p {
  margin-top: 0.5rem;
  color: rgba(255, 250, 240, 0.78);
}

.passage {
  background: #f2eadc;
}

.tailnote {
  background: #111820;
  color: #fffaf0;
  border-top: 0;
}

.tailnote__copy,
.tailnote__links a {
  color: rgba(255, 250, 240, 0.7);
}

.tailnote__links a:hover,
.tailnote__links a:focus-visible {
  color: #fffaf0;
}

.opening-spread {
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.07) 0 1px, transparent 1px) center / 80px 100%,
    #fbfaf6;
}

.opening-spread__copy h1 {
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.86;
}

.opening-spread__copy {
  gap: clamp(1.45rem, 2.4vw, 2.15rem);
}

.chapter-shelf,
.chapter-column,
.chapter-split,
.chapter-dossier {
  background: #fbfaf6;
}

.chapter-band {
  background: #e8eef2;
}

.chapter-shelf__grid,
.chapter-column__grid,
.chapter-split__grid,
.chapter-band__body,
.chapter-dossier__spread {
  border-top: 1px solid rgba(21, 20, 19, 0.22);
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
}

.year-mark__year {
  color: var(--signal);
}

.archive-card {
  border-color: rgba(21, 20, 19, 0.2);
  background: #fffaf0;
}

.archive-card img {
  filter: saturate(0.95) contrast(1.03);
}

.chapter-proof-card,
.operator-card,
.venture-plate {
  border: 1px solid rgba(21, 20, 19, 0.22);
  border-radius: 0.45rem;
  background: #111820;
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.chapter-proof-card {
  display: grid;
  gap: 1rem;
  min-height: 430px;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.chapter-proof-card .story-tag,
.operator-card .story-tag,
.venture-plate .story-tag {
  color: #8fc8dc;
}

.chapter-proof-card h3,
.operator-card h3,
.venture-plate h3 {
  color: #fffaf0;
}

.chapter-proof-card__stats {
  display: grid;
  align-self: end;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
}

.chapter-proof-card__stats div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
}

.chapter-proof-card__stats span {
  color: #fffaf0;
  font-family: "Newsreader", serif;
  font-size: 2.35rem;
  line-height: 0.9;
}

.chapter-proof-card__stats p,
.operator-card p {
  color: rgba(255, 250, 240, 0.72);
}

.operator-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
}

.venture-plate {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1rem;
  align-items: stretch;
  padding: 0.8rem;
}

.venture-plate figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #fffaf0;
}

.venture-plate img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center top;
}

.venture-plate > div {
  display: grid;
  align-content: end;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 0.35rem;
}

.dossier-slip {
  border-color: rgba(21, 20, 19, 0.2);
  background: #fffaf0;
}

.contact-types {
  background: #111820;
  color: #fffaf0;
}

.contact-types .kicker,
.contact-types .story-tag {
  color: #8fc8dc;
}

.contact-types__intro h2,
.contact-case h3 {
  color: #fffaf0;
}

.contact-case {
  border-top-color: rgba(255, 250, 240, 0.22);
}

.contact-case p,
.contact-types p {
  color: rgba(255, 250, 240, 0.72);
}

.contact-portrait img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

@media (max-width: 1080px) {
  .founder-biography {
    background:
      linear-gradient(180deg, #fbfaf6 0 66%, #111820 66% 100%);
  }

  .founder-biography-grid,
  .present-tense__grid,
  .proof-board,
  .venture-plate {
    grid-template-columns: 1fr;
  }

  .founder-biography-media {
    order: initial;
    justify-self: center;
  }

  .founder-biography .lead-panel__actions .action-link--line {
    color: #fffaf0;
  }

  .proof-board__headline h3 {
    max-width: 16ch;
  }

  .snapshot-item:nth-child(-n + 2) {
    border-top: 1px solid rgba(255, 250, 240, 0.16);
  }

  .snapshot-item:first-child {
    border-top: 0;
  }
}

@media (max-width: 780px) {
  .masthead__inner {
    min-height: 66px;
  }

  .chapter-nav {
    border-radius: 0.45rem;
    background: #fbfaf6;
  }

  .founder-biography {
    padding-top: 1.5rem;
    background:
      linear-gradient(180deg, #fbfaf6 0 64%, #111820 64% 100%);
  }

  .founder-biography .lead-panel__primary h1 {
    font-size: clamp(2.65rem, 9vw, 3.9rem);
  }

  .founder-biography .cta-group {
    grid-template-columns: 1fr;
  }

  .career-index,
  .proof-board__grid,
  .editorial-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .career-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-index__item:nth-child(3) {
    border-left: 1px solid rgba(21, 20, 19, 0.16);
  }

  .career-index__item:nth-child(n + 3) {
    border-top: 0;
  }

  .proof-board__grid article {
    min-height: 150px;
  }

  .chapter-proof-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .signature {
    font-size: 1.45rem;
  }

  .founder-biography {
    padding-top: 1rem;
    background:
      linear-gradient(180deg, #fbfaf6 0 70%, #111820 70% 100%);
  }

  .founder-biography .lead-panel__primary h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .career-index,
  .proof-board__grid,
  .editorial-mosaic,
  .chapter-proof-card__stats div {
    grid-template-columns: 1fr;
  }

  .career-index__item,
  .career-index__item + .career-index__item {
    padding: 0.85rem 0;
    border-left: 0;
  }

  .career-index__item + .career-index__item {
    border-top: 1px solid rgba(21, 20, 19, 0.16);
  }

  .proof-board,
  .editorial-mosaic,
  .chapter-proof-card,
  .operator-card,
  .venture-plate {
    padding: 0.85rem;
  }

  .proof-board__grid {
    border-left: 0;
  }

  .proof-board__grid article {
    border-left: 1px solid rgba(255, 250, 240, 0.2);
  }

  .moment:nth-child(even) {
    padding-top: 1.2rem;
  }

  .opening-spread__copy h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }
}

/* Full-site responsive polish */
:root {
  --site-gutter: clamp(20px, 4vw, 64px);
  --editorial-gutter: clamp(24px, 3vw, 48px);
  --site-max: 1280px;
  --site-wide: 1440px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.page-wrap {
  width: 100%;
  overflow-x: clip;
}

.page-shell {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-max));
  max-width: var(--site-max);
}

.masthead__inner {
  min-height: clamp(64px, 6vw, 76px);
}

.chapter-nav a,
.action-link,
.kicker,
.story-tag {
  overflow-wrap: anywhere;
}

.action-link {
  min-width: 0;
  text-align: center;
  white-space: normal;
}

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

.founder-biography {
  padding: clamp(28px, 4vh, 44px) 0 clamp(56px, 7vw, 96px);
}

.founder-biography .container {
  width: min(calc(100% - (var(--editorial-gutter) * 2)), var(--site-wide));
  max-width: var(--site-wide);
}

.founder-biography-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.74fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  align-content: start;
}

.founder-biography-text,
.founder-biography .lead-panel__copy {
  align-content: start;
  align-self: start;
}

.lead-panel__line {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  white-space: normal;
}

.founder-biography .lead-panel__primary h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.founder-biography .lead-panel__line {
  display: block;
  overflow-wrap: normal;
  white-space: nowrap;
}

.founder-biography .lead-panel__deck {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
}

.career-index,
.founder-biography .note-rail {
  max-width: 860px;
}

.founder-biography .lead-panel__portrait {
  width: 100%;
  max-width: 560px;
}

.lead-panel__image-frame img,
.editorial-photo img,
.contact-portrait img,
.archive-card img {
  height: auto;
}

.interlude {
  padding: clamp(6rem, 9vw, 8rem) 0;
  overflow: hidden;
}

.interlude__shell {
  width: min(calc(100% - (var(--editorial-gutter) * 2)), var(--site-max));
  max-width: var(--site-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.interlude__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  align-content: center;
  padding: 0 clamp(8px, 1.8vw, 24px);
  box-sizing: border-box;
  text-align: center;
}

.interlude .kicker {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
}

.interlude__line {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.04;
  text-wrap: balance;
  box-sizing: border-box;
}

.interlude__line-row {
  display: block;
  max-width: 100%;
  white-space: normal;
}

.current-chapter-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(21, 20, 19, 0.12);
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.045) 0 1px, transparent 1px) center / 92px 100%,
    #fbfaf6;
}

.current-chapter-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px clamp(24px, 4vw, 64px);
  box-sizing: border-box;
}

.current-chapter-top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: clamp(24px, 3vw, 38px);
  align-items: start;
  margin-bottom: 88px;
}

.current-chapter-heading {
  grid-column: 1 / -1;
  min-width: 0;
}

.current-chapter-heading h2 {
  max-width: min(100%, 1050px);
  margin: 0;
  font-size: clamp(58px, 5.8vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.current-chapter-heading h2 span {
  display: block;
  white-space: nowrap;
}

.current-chapter-intro {
  grid-column: 1 / span 7;
  min-width: 0;
  padding-top: 0;
}

.current-chapter-intro p {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(19px, 1.48vw, 24px);
  line-height: 1.68;
  opacity: 0.9;
}

.current-chapter-intro p:last-child {
  margin-bottom: 0;
}

.current-chapter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 28px);
}

.current-chapter-card {
  min-width: 0;
  min-height: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 20, 19, 0.16);
}

.current-chapter-card__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: min(100%, 188px);
  min-height: 48px;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.current-chapter-card__brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 0 0.75px rgba(21, 20, 19, 0.48))
    drop-shadow(0 12px 18px rgba(21, 20, 19, 0.06));
  transition:
    transform var(--fast),
    opacity var(--fast),
    filter var(--fast);
}

.current-chapter-card__brand--lightmark img {
  filter:
    brightness(0.78)
    contrast(1.08)
    drop-shadow(0 0 0.8px rgba(21, 20, 19, 0.56))
    drop-shadow(0 12px 18px rgba(21, 20, 19, 0.07));
}

.current-chapter-card__brand--tall img {
  height: 58px;
}

.current-chapter-card__brand--youtube img {
  height: 42px;
}

.current-chapter-card__brand--youtube .youtube-play-icon {
  display: block;
  width: 58px;
  height: auto;
  filter:
    drop-shadow(0 0 0.75px rgba(21, 20, 19, 0.38))
    drop-shadow(0 12px 18px rgba(21, 20, 19, 0.06));
  transition:
    transform var(--fast),
    opacity var(--fast),
    filter var(--fast);
}

.current-chapter-card__brand-link:hover img,
.current-chapter-card__brand-link:focus-visible img,
.current-chapter-card__brand-link:hover .youtube-play-icon,
.current-chapter-card__brand-link:focus-visible .youtube-play-icon {
  opacity: 0.88;
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 0.75px rgba(21, 20, 19, 0.52))
    drop-shadow(0 14px 20px rgba(21, 20, 19, 0.08));
}

.current-chapter-card__brand-link:focus-visible {
  outline: 1px solid rgba(63, 95, 121, 0.35);
  outline-offset: 6px;
}

.current-chapter-card .eyebrow,
.current-chapter-card h3 {
  margin: 0;
}

.current-chapter-card .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-deep);
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.current-chapter-card p {
  max-width: 38rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.72;
  opacity: 0.84;
}

.present-tense__grid {
  grid-template-columns: minmax(170px, 0.64fr) minmax(0, 1fr) minmax(240px, 0.78fr);
  gap: clamp(24px, 3vw, 48px);
}

.present-tense__intro,
.present-tense__body {
  min-width: 0;
}

.proof-board {
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.proof-board__grid article {
  min-height: clamp(140px, 13vw, 180px);
}

.year-ribbon__head,
.feature-run__lead,
.passage__grid,
.afterword__grid,
.reply-note__grid,
.tailnote__grid {
  gap: clamp(24px, 4vw, 64px);
}

.moment-strip {
  grid-auto-columns: calc((100% - (var(--moment-gap) * 2)) / 3);
  overscroll-behavior-inline: contain;
}

.essay-cut,
.essay-cut--mirror {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(32px, 5vw, 72px);
}

.essay-cut--mirror {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.editorial-mosaic {
  min-width: 0;
}

.opening-spread__grid {
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr) minmax(210px, 0.42fr);
  gap: clamp(24px, 4vw, 56px);
}

.chapter-shelf__grid {
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 4vw, 56px);
}

.chapter-band__body,
.chapter-column__grid,
.chapter-split__grid {
  gap: clamp(32px, 5vw, 72px);
}

.chapter-column__grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.chapter-split__grid {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
}

.chapter-dossier__spread,
.contact-types__grid {
  gap: clamp(20px, 3vw, 32px);
}

.archive-card,
.editorial-photo,
.contact-portrait,
.proof-board,
.chapter-proof-card,
.operator-card,
.venture-plate,
.dossier-slip {
  min-width: 0;
}

.contact-sheet__grid,
.correspondence__grid {
  gap: clamp(32px, 5vw, 72px);
}

.contact-lines__item,
.fact-line {
  min-width: 0;
}

.contact-lines__item a {
  overflow-wrap: anywhere;
}

.js .rise {
  will-change: opacity, transform;
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
}

.js .rise:not(.is-seen) :where(.kicker, .story-tag, h1, h2, h3, p, blockquote, .action-link, article, figure, .proof-board, .field-note__item, .career-index__item, .moment, .dossier-slip) {
  opacity: 0;
  transform: translateY(12px);
}

.js .rise.is-seen :where(.kicker, .story-tag, h1, h2, h3, p, blockquote, .action-link, article, figure, .proof-board, .field-note__item, .career-index__item, .moment, .dossier-slip) {
  opacity: 1;
  transform: none;
  transition:
    opacity 560ms var(--ease-out),
    transform 560ms var(--ease-out);
}

.js .rise.is-seen :where(h1, h2, blockquote) {
  transition-delay: 70ms;
}

.js .rise.is-seen :where(.lead-panel__body, .current-chapter-intro, .present-tense__body, .chapter-shelf__copy, .chapter-column__body, .chapter-split__essay, .correspondence__deck) p {
  transition-delay: 120ms;
}

.js .rise.is-seen :where(article, figure, .action-link, .proof-board, .career-index__item, .field-note__item, .moment, .dossier-slip):nth-child(2) {
  transition-delay: 90ms;
}

.js .rise.is-seen :where(article, figure, .action-link, .proof-board, .career-index__item, .field-note__item, .moment, .dossier-slip):nth-child(3) {
  transition-delay: 140ms;
}

.js .rise.is-seen :where(article, figure, .action-link, .proof-board, .career-index__item, .field-note__item, .moment, .dossier-slip):nth-child(4) {
  transition-delay: 190ms;
}

@media (min-width: 1200px) {
  .page-shell {
    width: min(calc(100% - 96px), var(--site-max));
  }

  .interlude__line-row {
    white-space: nowrap;
  }
}

@media (max-width: 1199px) {
  .current-chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-types__grid {
    grid-template-columns: 1fr;
  }

  .contact-types__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-biography-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

  .chapter-dossier__lead {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
    align-items: start;
  }

  .founder-biography .lead-panel__primary h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.75rem);
  }

  .present-tense__grid,
  .opening-spread__grid,
  .chapter-shelf__grid {
    grid-template-columns: 1fr 1fr;
  }

  .present-tense__intro,
  .present-tense__image,
  .opening-spread__copy {
    grid-column: 1 / -1;
  }

  .chapter-shelf__copy {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .page-shell {
    width: min(calc(100% - 56px), var(--site-max));
  }

  .contact-types__grid {
    gap: 32px;
  }

  .contact-types__intro h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 6vw, 3.5rem);
    line-height: 0.98;
  }

  .contact-sheet__frame {
    gap: 30px;
    padding: 2rem 2rem 1.75rem;
  }

  .contact-sheet__top {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .contact-sheet__intro {
    justify-items: center;
    width: min(100%, 820px);
    margin: 0 auto;
    text-align: center;
  }

  .contact-sheet__intro h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 6.6vw, 4.45rem);
    line-height: 0.94;
  }

  .contact-sheet__deck {
    max-width: 46rem;
  }

  .contact-sheet__availability {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    max-width: 40rem;
    margin: 0 auto;
  }

  .contact-sheet__availability span {
    padding-top: 0;
  }

  .contact-sheet__actions {
    justify-content: center;
  }

  .contact-sheet__grid {
    gap: 0;
  }

  .contact-sheet__main {
    padding: 0.25rem;
  }

  .contact-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .contact-lines__item {
    padding: 1.05rem 1.15rem 1.15rem;
  }

  .contact-lines__item + .contact-lines__item {
    border-left: 0;
  }

  .contact-lines__item:nth-child(2) {
    border-left: 1px solid rgba(21, 20, 19, 0.12);
  }

  .contact-lines__item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(21, 20, 19, 0.12);
  }

  .contact-sheet__media {
    width: min(100%, 400px);
    justify-self: center;
  }

  .contact-inquiry {
    justify-items: stretch;
  }

  .feature-run__lead {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .feature-run__lead h2 {
    max-width: 12ch;
  }

  .feature-stack {
    gap: 48px;
  }

  .chapter-dossier__lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chapter-dossier__photo {
    max-width: 760px;
  }

  .founder-biography {
    padding: 36px 0 72px;
    background:
      linear-gradient(180deg, #fbfaf6 0 64%, #111820 64% 100%);
  }

  .founder-biography-grid,
  .present-tense__grid,
  .proof-board,
  .essay-cut,
  .essay-cut--mirror,
  .opening-spread__grid,
  .chapter-shelf__grid,
  .chapter-band__body,
  .chapter-column__grid,
  .chapter-split__grid,
  .contact-sheet__grid,
  .correspondence__grid,
  .reply-note__grid {
    grid-template-columns: 1fr;
  }

  .founder-biography .lead-panel__copy {
    order: 0;
  }

  .founder-biography-media {
    order: 1;
    justify-self: center;
  }

  .feature-run .essay-cut,
  .feature-run .essay-cut--mirror {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .feature-run .essay-cut__copy,
  .feature-run .essay-cut--distribution .essay-cut__copy,
  .feature-run .essay-cut__copy > p,
  .feature-run .fact-line p {
    max-width: none;
  }

  .feature-run .essay-cut--rebuild .essay-cut__copy {
    padding-top: 0;
  }

  .feature-run .essay-cut__copy h3 {
    max-width: 20ch;
    font-size: clamp(1.7rem, 4.8vw, 2.2rem);
  }

  .feature-run .essay-cut__media,
  .feature-run .essay-cut--shipping .essay-cut__media,
  .feature-run .essay-cut--rebuild .essay-cut__media,
  .feature-run .essay-cut--distribution .essay-cut__media {
    max-width: 760px;
    justify-self: start;
  }

  .founder-biography .lead-panel__portrait {
    order: 1;
  }

  .founder-biography .image-wrapper {
    order: 0;
  }

  .founder-biography .lead-panel__actions {
    order: 1;
  }

  .founder-biography .lead-panel__primary h1,
  .founder-biography .lead-panel__deck,
  .founder-biography .note-rail,
  .career-index {
    max-width: 100%;
  }

  .founder-biography-grid,
  .founder-biography-text,
  .lead-panel__copy,
  .lead-panel__body,
  .lead-panel__deck {
    width: 100%;
    min-width: 0;
  }

  .founder-biography .lead-panel__primary h1 {
    display: block;
    width: 100%;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .founder-biography .lead-panel__line {
    display: inline;
    white-space: normal;
  }

  .founder-biography .lead-panel__line + .lead-panel__line::before {
    content: " ";
  }

  .interlude {
    padding: 88px 0;
  }

  .interlude__shell {
    width: min(calc(100% - 56px), var(--site-max));
  }

  .interlude__inner {
    width: min(100%, 920px);
    gap: 16px;
    padding: 0 8px;
  }

  .interlude__line {
    max-width: 840px;
    font-size: clamp(2rem, 4.6vw, 2.9rem);
    line-height: 1.08;
  }

  .interlude__line-row {
    display: block;
    white-space: normal;
  }

  .current-chapter-inner {
    padding: 104px 32px;
  }

  .current-chapter-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
  }

  .current-chapter-heading,
  .current-chapter-intro {
    grid-column: auto;
  }

  .current-chapter-heading h2 {
    max-width: 8ch;
    font-size: clamp(48px, 7vw, 76px);
    line-height: 0.98;
  }

  .current-chapter-intro {
    padding-top: 0;
  }

  .current-chapter-intro p {
    max-width: none;
    font-size: 19px;
  }

  .current-chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .current-chapter-card__brand {
    max-width: min(100%, 180px);
    min-height: 44px;
  }

  .current-chapter-card__brand img {
    height: 48px;
  }

  .current-chapter-card__brand--tall img {
    height: 52px;
  }

  .current-chapter-card__brand--youtube img {
    height: 38px;
  }

  .current-chapter-card__brand--youtube .youtube-play-icon {
    width: 54px;
  }

  .chapter-column__side {
    position: static;
  }

  .essay-cut--mirror .essay-cut__copy,
  .essay-cut--mirror .essay-cut__media {
    order: initial;
  }
}

@media (max-width: 720px) {
  :root {
    --site-gutter: 20px;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--site-max));
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .year-ribbon__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .year-ribbon__head h2 {
    max-width: 8.5ch;
  }

  .year-ribbon__button {
    justify-self: start;
  }

  .masthead__inner {
    min-height: 64px;
    gap: 12px;
  }

  .signature {
    min-width: 0;
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .menu-switch {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: auto;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .chapter-nav {
    z-index: 40;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .chapter-nav a,
  .nav-pill {
    width: 100%;
  }

  .founder-biography {
    padding: 24px 0 64px;
    background:
      linear-gradient(180deg, #fbfaf6 0 68%, #111820 68% 100%);
  }

  .founder-biography .container {
    width: min(calc(100% - 40px), var(--site-wide));
  }

  .contact-sheet__frame {
    gap: 32px;
    padding: 1.2rem 1.1rem 1rem;
  }

  .contact-sheet__top {
    gap: 28px;
  }

  .contact-types__grid {
    gap: 28px;
  }

  .contact-types__intro h2 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1;
  }

  .contact-types__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-case {
    gap: 0.75rem;
    padding-top: 1.1rem;
  }

  .contact-case h3 {
    max-width: none;
    font-size: clamp(1.35rem, 7vw, 1.7rem);
    line-height: 1.12;
  }

  .contact-sheet__intro {
    width: 100%;
    gap: 0.9rem;
  }

  .contact-sheet__intro h1 {
    max-width: 9.8ch;
    font-size: clamp(2.45rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  .contact-sheet__headline-line {
    display: inline;
  }

  .contact-sheet__headline-line + .contact-sheet__headline-line::before {
    content: " ";
  }

  .contact-sheet__deck {
    font-size: 1rem;
    line-height: 1.68;
  }

  .contact-sheet__availability {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .contact-lines {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-lines__item {
    padding: 1rem 0.95rem 1.05rem;
    border-top: 1px solid rgba(21, 20, 19, 0.12);
  }

  .contact-lines__item:first-child {
    border-top: 0;
  }

  .contact-lines__item:nth-child(2),
  .contact-lines__item + .contact-lines__item {
    border-left: 0;
  }

  .contact-lines__item:last-child {
    grid-column: auto;
  }

  .contact-sheet__media {
    width: min(100%, 360px);
  }

  .contact-sheet .contact-portrait {
    padding: 0.45rem;
    box-shadow: none;
  }

  .contact-inquiry {
    padding-top: 1.25rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-run__lead {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .feature-run__lead h2 {
    max-width: none;
  }

  .feature-stack {
    gap: 40px;
  }

  .feature-run .essay-cut {
    gap: 24px;
    padding-top: 18px;
  }

  .feature-run .essay-cut__copy {
    gap: 14px;
  }

  .feature-run .essay-cut__copy h3 {
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.04;
  }

  .feature-run .fact-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-run .essay-cut__media-frame {
    padding: 0.62rem;
  }

  .feature-run .essay-cut__media-frame::after {
    inset: 0.34rem;
  }

  .feature-run .editorial-photo figcaption {
    padding-top: 0.58rem;
    font-size: 0.74rem;
  }

  .founder-biography-grid,
  .founder-biography-text,
  .lead-panel__copy,
  .lead-panel__body,
  .lead-panel__deck {
    width: 100%;
    min-width: 0;
  }

  .founder-biography .lead-panel__primary h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .founder-biography .lead-panel__line {
    display: inline;
    white-space: normal;
  }

  .founder-biography .lead-panel__line + .lead-panel__line::before {
    content: " ";
  }

  .founder-biography .lead-panel__portrait {
    order: initial;
    max-width: 420px;
  }

  .founder-biography .cta-group,
  .note-rail,
  .career-index,
  .proof-board__grid,
  .annotation-row,
  .chapter-band__details,
  .chapter-dossier__spread,
  .contact-types__grid,
  .editorial-mosaic,
  .chapter-proof-card__stats div {
    grid-template-columns: 1fr;
  }

  .career-index__item,
  .career-index__item + .career-index__item {
    padding: 16px 0;
    border-left: 0;
  }

  .career-index__item + .career-index__item {
    border-top: 1px solid rgba(21, 20, 19, 0.16);
  }

  .note-rail p + p {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(190, 169, 145, 0.72);
  }

  .interlude {
    padding: 72px 0;
  }

  .interlude__shell {
    width: min(calc(100% - 40px), var(--site-max));
  }

  .interlude__inner {
    width: 100%;
    gap: 14px;
    padding: 0;
  }

  .interlude__line {
    max-width: 18ch;
    font-size: clamp(1.95rem, 7vw, 2.45rem);
    line-height: 1.08;
  }

  .current-chapter-inner {
    padding: 84px 20px;
  }

  .current-chapter-top {
    gap: 24px;
    margin-bottom: 56px;
  }

  .current-chapter-heading h2 {
    max-width: none;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .current-chapter-heading h2 span {
    white-space: normal;
  }

  .current-chapter-intro p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.66;
  }

  .current-chapter-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .current-chapter-card {
    padding-top: 16px;
  }

  .current-chapter-card__brand {
    max-width: min(100%, 168px);
    min-height: 40px;
    margin-bottom: 14px;
  }

  .current-chapter-card__brand img {
    height: 42px;
  }

  .current-chapter-card__brand--tall img {
    height: 46px;
  }

  .current-chapter-card__brand--youtube img {
    height: 34px;
  }

  .current-chapter-card__brand--youtube .youtube-play-icon {
    width: 48px;
  }

  .current-chapter-card p {
    max-width: none;
    font-size: 16px;
    line-height: 1.66;
  }

  .proof-board,
  .editorial-mosaic,
  .chapter-proof-card,
  .operator-card,
  .venture-plate {
    padding: 16px;
  }

  .proof-board__grid {
    border-left: 0;
  }

  .proof-board__grid article {
    min-height: auto;
    border-left: 1px solid rgba(255, 250, 240, 0.2);
  }

  .moment-strip {
    grid-auto-columns: minmax(260px, 82vw);
  }

  .moment,
  .moment:nth-child(even) {
    min-height: auto;
    padding: 1.15rem;
  }

  .moment + .moment {
    padding-left: 1.15rem;
  }

  .fact-line,
  .contact-lines__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-sheet__actions,
  .reply-note__links,
  .lead-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tailnote__grid {
    align-items: start;
  }

  .tailnote__links {
    justify-content: flex-start;
  }

  .js .rise:not(.is-seen) :where(.kicker, .story-tag, h1, h2, h3, p, blockquote, .action-link, article, figure, .proof-board, .field-note__item, .career-index__item, .moment, .dossier-slip) {
    transform: translateY(8px);
  }
}

/* Journey page magazine refinement */
body.journey-page {
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.035) 0 1px, transparent 1px) center / 92px 100%,
    #fbfaf6;
}

body.journey-page .page-shell {
  width: min(calc(100% - clamp(2rem, 6vw, 7rem)), 1320px);
  max-width: 1320px;
}

body.journey-page .opening-spread {
  padding: clamp(2.45rem, 4.2vw, 3.9rem) 0 clamp(0.25rem, 0.9vw, 0.85rem);
  border-bottom: 1px solid rgba(21, 20, 19, 0.14);
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.045) 0 1px, transparent 1px) center / 92px 100%,
    linear-gradient(180deg, #fbfaf6 0%, rgba(251, 250, 246, 0.88) 100%);
}

body.journey-page .opening-spread__grid {
  align-items: end;
}

body.journey-page .opening-spread__copy h1 {
  color: rgba(21, 20, 19, 0.94);
  font-size: clamp(4.8rem, 9.5vw, 8.8rem);
  line-height: 0.86;
}

body.journey-page :where(.chapter-shelf, .chapter-column, .chapter-split, .chapter-band, .chapter-dossier) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.8rem, 7.4vw, 7.2rem) 0;
  border-top: 1px solid rgba(21, 20, 19, 0.13);
  scroll-margin-top: 88px;
}

body.journey-page :where(.chapter-shelf, .chapter-column, .chapter-split, .chapter-dossier) {
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.032) 0 1px, transparent 1px) center / 92px 100%,
    #fbfaf6;
}

body.journey-page :where(.chapter-band) {
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.032) 0 1px, transparent 1px) center / 92px 100%,
    #e8eef2;
}

body.journey-page section[data-year]::before {
  content: attr(data-year);
  position: absolute;
  top: clamp(0.6rem, 2.4vw, 2rem);
  right: max(1.5rem, calc((100vw - 1320px) / 2));
  z-index: 0;
  color: rgba(166, 54, 42, 0.08);
  font-family: "Newsreader", serif;
  font-size: clamp(6rem, 13vw, 13rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.8;
  pointer-events: none;
}

body.journey-page section[data-year] > .page-shell {
  position: relative;
  z-index: 1;
}

.journey-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  scroll-margin-top: 96px;
}

body.journey-page section[data-year] :where(.kicker, .year-mark__year) {
  color: var(--signal);
  font-family: "Newsreader", serif;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: none;
}

body.journey-page section[data-year] h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.92;
}

body.journey-page :where(.chapter-shelf__grid, .chapter-column__grid, .chapter-split__grid, .chapter-band__body, .chapter-dossier__lead) {
  gap: clamp(2rem, 5vw, 5.5rem);
  border-top: 1px solid rgba(21, 20, 19, 0.22);
  padding-top: clamp(1.1rem, 2.2vw, 1.6rem);
}

body.journey-page .chapter-shelf__grid {
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.95fr) minmax(300px, 0.58fr);
}

body.journey-page .chapter-column__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
}

body.journey-page .chapter-split__grid {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

body.journey-page .chapter-dossier__lead {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
}

body.journey-page .chapter-dossier__title {
  align-self: center;
}

body.journey-page .chapter-dossier__body {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  gap: clamp(1.35rem, 2.2vw, 2rem);
  padding-top: clamp(1.2rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(21, 20, 19, 0.22);
}

body.journey-page .chapter-dossier__body p {
  margin: 0;
  color: rgba(75, 81, 79, 0.92);
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  line-height: 1.72;
}

body.journey-page .chapter-dossier__body p:last-child {
  margin-bottom: 0;
}

body.journey-page :where(.chapter-shelf__copy, .chapter-column__body, .chapter-split__essay, .chapter-intro, .resell-spread__intro) {
  gap: clamp(0.95rem, 1.5vw, 1.25rem);
  max-width: 48rem;
}

body.journey-page :where(.chapter-shelf__copy, .chapter-column__body, .chapter-split__essay, .chapter-intro, .resell-spread__intro) > p {
  max-width: 47rem;
  color: rgba(75, 81, 79, 0.92);
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  line-height: 1.72;
}

body.journey-page .year-mark {
  gap: 0.6rem;
  padding-top: 0.2rem;
}

body.journey-page .year-mark__title {
  max-width: 12rem;
  color: rgba(21, 20, 19, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.08;
}

body.journey-page .chapter-entry-title {
  display: grid;
  gap: clamp(0.28rem, 0.55vw, 0.42rem);
  max-width: 12.5ch;
  margin: 0 0 clamp(0.15rem, 0.5vw, 0.35rem);
  color: rgba(21, 20, 19, 0.95);
  font-family: "Newsreader", serif;
  font-size: clamp(2.85rem, 4.55vw, 4.85rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
}

body.journey-page .chapter-entry-title span {
  display: block;
  white-space: nowrap;
}

body.journey-page .chapter-entry-title__age {
  color: rgba(21, 20, 19, 0.95);
  font-size: 0.46em;
  line-height: 0.96;
}

body.journey-page :where(.annotation-row, .chapter-column__markers) {
  gap: clamp(0.95rem, 1.7vw, 1.35rem);
  margin-top: clamp(0.35rem, 1vw, 0.75rem);
}

body.journey-page :where(.annotation-row__item, .annotation-panel, .fact-line) {
  border-top-color: rgba(21, 20, 19, 0.22);
  padding-top: clamp(0.85rem, 1.3vw, 1.05rem);
}

body.journey-page .fact-line {
  grid-template-columns: minmax(126px, 0.32fr) minmax(0, 1fr);
  gap: clamp(0.95rem, 2vw, 1.5rem);
}

body.journey-page .story-tag,
body.journey-page .fact-line span {
  color: #0f4761;
  letter-spacing: 0.17em;
}

body.journey-page .archive-card {
  border-color: rgba(21, 20, 19, 0.18);
  border-radius: 0.42rem;
  background: #fffaf0;
  box-shadow: 0 26px 55px -42px rgba(21, 20, 19, 0.42);
}

body.journey-page .archive-card img {
  filter: saturate(0.96) contrast(1.02);
}

body.journey-page #year-2017 {
  padding-top: clamp(2.2rem, 4vw, 4.1rem);
  padding-bottom: clamp(3.2rem, 4.8vw, 4.9rem);
}

body.journey-page #year-2017 .chapter-shelf__grid {
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 0.9fr) minmax(320px, 0.5fr);
  grid-template-areas:
    "year heading image"
    ". copy image";
  column-gap: clamp(1.55rem, 3.3vw, 3.35rem);
  row-gap: clamp(1.25rem, 2.1vw, 1.9rem);
  align-items: start;
  padding-top: clamp(5rem, 7vw, 6.85rem);
}

body.journey-page #year-2017 .archive-card img {
  width: 100%;
  height: clamp(270px, 26vw, 380px);
  object-fit: cover;
  object-position: center 20%;
}

body.journey-page #year-2017 .chapter-shelf__grid > .archive-card {
  grid-area: image;
  width: clamp(350px, 28vw, 420px);
  justify-self: start;
  margin-top: clamp(1.35rem, 1.65vw, 1.6rem);
  transform: translateX(-1.65rem);
}

body.journey-page #year-2017 .year-mark {
  grid-area: year;
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
  padding-top: clamp(0.1rem, 0.45vw, 0.35rem);
}

body.journey-page #year-2017 .year-mark__year {
  font-size: clamp(3.2rem, 5.25vw, 5rem);
}

body.journey-page #year-2017 .chapter-shelf__copy {
  grid-area: copy;
  max-width: 39.5rem;
  padding-top: 0;
}

body.journey-page #year-2017 .chapter-entry-title--section {
  grid-area: heading;
  gap: clamp(0.24rem, 0.5vw, 0.4rem);
  max-width: 19ch;
  margin: 0;
  padding-bottom: clamp(0.65rem, 1vw, 0.95rem);
  border-bottom: 1px solid rgba(21, 20, 19, 0.18);
  font-size: clamp(2.55rem, 3.55vw, 4rem);
  line-height: 0.92;
}

body.journey-page #year-2017 .chapter-entry-title--section .chapter-entry-title__age {
  font-size: 0.32em;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.journey-page #year-2017 .chapter-shelf__copy p {
  max-width: 39.5rem;
  font-size: clamp(1.04rem, 1.04vw, 1.14rem);
  line-height: 1.74;
}

body.journey-page #year-2017::before {
  top: clamp(0.15rem, 1.1vw, 1rem);
  right: max(1.75rem, calc((100vw - 1320px) / 2 + 0.75rem));
  color: rgba(166, 54, 42, 0.052);
  font-size: clamp(5.4rem, 11.2vw, 10.8rem);
}

body.journey-page #year-2020 {
  padding-top: clamp(3.4rem, 5.4vw, 5.4rem);
  padding-bottom: clamp(3.5rem, 5.2vw, 5.3rem);
}

body.journey-page #year-2020 .chapter-column__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.56fr);
  align-items: start;
  gap: clamp(1.8rem, 3.8vw, 4.2rem);
  padding-top: clamp(0.95rem, 1.5vw, 1.25rem);
}

body.journey-page #year-2020 .chapter-column__body {
  gap: clamp(0.75rem, 1.1vw, 1rem);
  max-width: 46rem;
}

body.journey-page #year-2020 .chapter-column__body h2 {
  margin-bottom: clamp(0.1rem, 0.4vw, 0.25rem);
}

body.journey-page #year-2020 .chapter-column__body > p {
  max-width: 43rem;
  line-height: 1.68;
}

body.journey-page #year-2020 .chapter-column__markers {
  gap: clamp(0.75rem, 1.25vw, 1rem);
  margin-top: clamp(0.15rem, 0.6vw, 0.45rem);
}

body.journey-page #year-2020 .fact-line {
  grid-template-columns: minmax(118px, 0.28fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 1.55vw, 1.2rem);
  padding-top: clamp(0.72rem, 1vw, 0.9rem);
}

body.journey-page #year-2020 .chapter-column__side {
  position: static;
  top: auto;
  width: 100%;
  justify-self: start;
  margin-top: clamp(5rem, 7vw, 6.8rem);
}

body.journey-page #year-2020 .archive-stack {
  width: min(100%, 430px);
  gap: clamp(0.72rem, 1.25vw, 1rem);
}

body.journey-page #year-2020 .archive-card--portrait img {
  width: 100%;
  height: clamp(285px, 29vw, 410px);
  object-fit: cover;
}

body.journey-page #year-2020 .archive-card--landscape img {
  width: 100%;
  max-height: clamp(210px, 18vw, 260px);
  object-fit: cover;
}

body.journey-page #year-2020 .archive-stack .archive-card:nth-child(2) img {
  height: clamp(210px, 17vw, 248px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center bottom;
}

body.journey-page #year-2021 {
  padding-top: clamp(3.5rem, 5.6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 5.2vw, 5.25rem);
}

body.journey-page #year-2021 .chapter-split__grid {
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 0.94fr);
  align-items: start;
  gap: clamp(1.9rem, 3.8vw, 4.25rem);
  padding-top: clamp(0.95rem, 1.5vw, 1.25rem);
}

body.journey-page #year-2021 .chapter-split__stack {
  align-content: start;
  justify-self: start;
  width: min(100%, 520px);
  gap: clamp(0.72rem, 1.15vw, 1rem);
  padding-top: clamp(0.85rem, 1.9vw, 2rem);
}

body.journey-page #year-2021 .chapter-split__essay {
  gap: clamp(0.78rem, 1.1vw, 1rem);
  max-width: 44rem;
  padding-top: clamp(0.1rem, 0.45vw, 0.35rem);
}

body.journey-page #year-2021 .chapter-split__essay h2 {
  max-width: 15ch;
  margin-bottom: clamp(0.1rem, 0.35vw, 0.25rem);
}

body.journey-page #year-2021 .chapter-split__essay h2 span {
  display: block;
  white-space: nowrap;
}

body.journey-page #year-2021 .chapter-split__essay > p {
  max-width: 40.5rem;
  line-height: 1.68;
}

body.journey-page #year-2021 .chapter-split__stack .archive-card {
  width: 100%;
  justify-self: stretch;
}

body.journey-page #year-2021 .chapter-split__stack .archive-card img {
  width: 100%;
  height: clamp(205px, 18vw, 275px);
  object-fit: cover;
}

body.journey-page #year-2021 .chapter-split__stack .archive-card:nth-child(2) {
  width: 100%;
  justify-self: stretch;
}

body.journey-page #year-2021 .chapter-split__stack .annotation-row {
  width: 100%;
  max-width: none;
  margin-top: clamp(0.1rem, 0.45vw, 0.3rem);
}

body.journey-page #year-2021 .chapter-split__stack .annotation-row__item {
  gap: 0.35rem;
  padding-top: clamp(0.72rem, 1vw, 0.9rem);
}

body.journey-page #year-2021::before {
  top: clamp(0.2rem, 1.4vw, 1.15rem);
  right: max(1.5rem, calc((100vw - 1320px) / 2 + 0.5rem));
  color: rgba(166, 54, 42, 0.058);
  font-size: clamp(5.6rem, 11.8vw, 11.4rem);
}

body.journey-page .chapter-band--year-2022 .chapter-band__top {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.64fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: none;
  margin-bottom: 0;
}

body.journey-page .chapter-band--year-2022 .chapter-band__lead-copy {
  display: grid;
  gap: clamp(0.95rem, 1.5vw, 1.25rem);
  max-width: 50rem;
}

body.journey-page .chapter-band--year-2022 .chapter-band__top h2 {
  max-width: 15ch;
}

body.journey-page .chapter-band--year-2022 .chapter-band__top h2 span {
  display: block;
  white-space: nowrap;
}

body.journey-page .chapter-band--year-2022 .chapter-band__lead-copy > p:not(.kicker) {
  max-width: 47rem;
  color: rgba(75, 81, 79, 0.92);
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  line-height: 1.72;
}

body.journey-page .chapter-band--year-2022 .chapter-band__inline-note {
  max-width: 43rem;
  margin-top: clamp(0.15rem, 0.8vw, 0.55rem);
}

body.journey-page .chapter-band--year-2022 .chapter-band__inline-note p:not(.story-tag) {
  max-width: 42rem;
  color: rgba(75, 81, 79, 0.9);
  font-size: clamp(0.98rem, 0.96vw, 1.06rem);
  line-height: 1.68;
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  justify-self: end;
  width: min(100%, 560px);
  margin-top: clamp(4.75rem, 6.9vw, 6.75rem);
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:first-child {
  z-index: 2;
  width: min(100%, 440px);
  justify-self: start;
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:first-child img {
  aspect-ratio: 4 / 3;
  object-position: center 56%;
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2) {
  z-index: 1;
  width: min(78%, 355px);
  justify-self: end;
  margin-top: clamp(1.35rem, 2.4vw, 2rem);
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2) img {
  aspect-ratio: 4 / 3;
  object-position: center 56%;
  transform: scale(1.34);
  transform-origin: 30% 44%;
}

body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2):hover img,
body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2):focus-within img {
  transform: scale(1.36);
}

body.journey-page .chapter-band--year-2022 .chapter-band__body {
  display: grid;
}

body.journey-page .chapter-band--year-2022 .chapter-band__details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.3vw, 2rem);
}

body.journey-page .chapter-band--year-2022 .chapter-band__details .annotation-panel {
  grid-template-rows: minmax(1.05rem, auto) 1fr;
  align-content: start;
  row-gap: clamp(0.5rem, 0.85vw, 0.65rem);
}

body.journey-page .chapter-band--year-2022 .chapter-band__details .annotation-panel .story-tag {
  min-height: 1.05rem;
}

body.journey-page .chapter-band--year-2022 .annotation-panel--media {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
}

body.journey-page #year-2023 .chapter-shelf__grid {
  grid-template-columns: minmax(135px, 0.2fr) minmax(0, 0.9fr) minmax(320px, 0.56fr);
  align-items: start;
  gap: clamp(1.35rem, 3.1vw, 3.45rem);
  padding-top: clamp(0.95rem, 1.6vw, 1.25rem);
}

body.journey-page #year-2023 {
  padding-top: clamp(3.5rem, 5.6vw, 5.55rem);
  padding-bottom: clamp(3.6rem, 5.4vw, 5.4rem);
}

body.journey-page #year-2023 .year-mark {
  padding-top: clamp(0.15rem, 0.55vw, 0.4rem);
}

body.journey-page #year-2023 .chapter-shelf__copy {
  gap: clamp(0.8rem, 1.15vw, 1rem);
  max-width: 46rem;
  padding-top: clamp(0.15rem, 0.8vw, 0.65rem);
}

body.journey-page #year-2023 .chapter-entry-title {
  max-width: 10.8ch;
}

body.journey-page #year-2023 .chapter-shelf__copy > p {
  max-width: 41rem;
  line-height: 1.68;
}

body.journey-page #year-2023 .annotation-row {
  gap: clamp(0.85rem, 1.45vw, 1.15rem);
  margin-top: clamp(0.15rem, 0.55vw, 0.4rem);
}

body.journey-page #year-2023 .annotation-row__item {
  gap: 0.4rem;
  padding-top: clamp(0.72rem, 1vw, 0.9rem);
}

body.journey-page #year-2023 .chapter-2023-media {
  display: grid;
  width: 100%;
  justify-self: start;
  gap: clamp(0.8rem, 1.25vw, 1rem);
  margin-top: clamp(7.2rem, 10.15vw, 9.5rem);
}

body.journey-page #year-2023 .chapter-2023-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  grid-template-areas:
    "hero hero"
    "shipping studio";
  gap: clamp(0.65rem, 1vw, 0.8rem);
}

body.journey-page #year-2023 .chapter-2023-gallery .archive-card {
  min-width: 0;
}

body.journey-page #year-2023 .chapter-2023-gallery__hero {
  grid-area: hero;
}

body.journey-page #year-2023 .chapter-2023-gallery__support--shipping {
  grid-area: shipping;
}

body.journey-page #year-2023 .chapter-2023-gallery__support--studio {
  grid-area: studio;
}

body.journey-page #year-2023 .chapter-2023-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

body.journey-page #year-2023 .chapter-2023-gallery__hero img {
  height: clamp(205px, 17vw, 255px);
  aspect-ratio: auto;
  object-position: center;
}

body.journey-page #year-2023 .chapter-2023-gallery__support img {
  height: clamp(220px, 18vw, 275px);
  aspect-ratio: auto;
}

body.journey-page #year-2023::before {
  top: clamp(0.15rem, 1.25vw, 1rem);
  right: max(1.5rem, calc((100vw - 1320px) / 2 + 0.4rem));
  color: rgba(166, 54, 42, 0.056);
  font-size: clamp(5.6rem, 11.6vw, 11.2rem);
}

body.journey-page #year-2023 .chapter-2023-gallery__support--shipping img {
  object-position: 26% 42%;
}

body.journey-page #year-2023 .chapter-2023-gallery__support--studio img {
  object-position: 34% 42%;
}

body.journey-page .chapter-column--text-only .chapter-column__grid {
  grid-template-columns: minmax(0, 1fr);
}

body.journey-page .chapter-column--text-only .chapter-column__body {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  max-width: 78rem;
}

body.journey-page .chapter-column--text-only .chapter-column__body h2 {
  max-width: 15ch;
}

body.journey-page .chapter-column--text-only .chapter-column__body .kicker,
body.journey-page .chapter-column--text-only .chapter-column__body h2 {
  grid-column: 1;
}

body.journey-page .chapter-column--text-only .chapter-column__body > p {
  grid-column: 2;
}

body.journey-page .chapter-column--text-only .chapter-column__text {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: clamp(0.95rem, 1.45vw, 1.2rem);
  max-width: 47rem;
}

body.journey-page .chapter-column--text-only .chapter-column__text p {
  max-width: 47rem;
  color: rgba(75, 81, 79, 0.92);
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  line-height: 1.72;
}

body.journey-page #year-2024 .chapter-column__grid {
  grid-template-columns:
    minmax(235px, 0.58fr)
    minmax(360px, 0.92fr)
    minmax(300px, 0.62fr);
  column-gap: clamp(1.35rem, 2.45vw, 2.75rem);
  row-gap: clamp(0.7rem, 1.15vw, 1rem);
  align-items: start;
  padding-top: clamp(0.95rem, 1.55vw, 1.25rem);
}

body.journey-page #year-2024 {
  padding-top: clamp(3.5rem, 5.5vw, 5.4rem);
  padding-bottom: clamp(3.6rem, 5.4vw, 5.35rem);
}

body.journey-page #year-2024 .chapter-column__body {
  display: contents;
  max-width: none;
}

body.journey-page #year-2024 .chapter-column__heading {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: clamp(1.15rem, 2.2vw, 2rem);
}

body.journey-page #year-2024 .chapter-column__body .kicker {
  grid-column: auto;
  padding-top: clamp(0.05rem, 0.4vw, 0.25rem);
}

body.journey-page #year-2024 .chapter-column__body h2 {
  grid-column: auto;
  max-width: 10.5ch;
  font-size: clamp(2.95rem, 3.85vw, 4.15rem);
  line-height: 0.93;
  text-wrap: balance;
}

body.journey-page #year-2024 .chapter-column__body h2 span {
  display: block;
  white-space: nowrap;
}

body.journey-page #year-2024 .chapter-2024-graduation {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin: clamp(0.15rem, 0.65vw, 0.45rem) 0 0;
}

body.journey-page #year-2024 .chapter-2024-graduation img {
  width: 100%;
  height: clamp(350px, 31vw, 500px);
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

body.journey-page #year-2024 .chapter-column__text {
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: clamp(0.75rem, 1.05vw, 0.95rem);
  max-width: 40.5rem;
  padding-top: clamp(5.65rem, 8.7vw, 7.65rem);
}

body.journey-page #year-2024 .chapter-column__text p {
  max-width: 40.5rem;
  line-height: 1.66;
}

body.journey-page #year-2024 .chapter-2024-gallery {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, clamp(260px, 21vw, 350px));
  grid-template-areas:
    "hero"
    "office";
  gap: clamp(0.62rem, 0.95vw, 0.82rem);
  width: min(100%, 380px);
  justify-self: end;
  margin-top: clamp(5.65rem, 8.7vw, 7.65rem);
  align-items: stretch;
}

body.journey-page #year-2024 .chapter-2024-gallery .archive-card {
  min-width: 0;
}

body.journey-page #year-2024 .chapter-2024-gallery__hero {
  grid-area: hero;
}

body.journey-page #year-2024 .chapter-2024-gallery__support--office {
  grid-area: office;
}

body.journey-page #year-2024 .chapter-2024-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

body.journey-page #year-2024 .chapter-2024-gallery__hero img {
  height: 100%;
  aspect-ratio: auto;
  object-position: center 58%;
}

body.journey-page #year-2024 .chapter-2024-gallery__support img {
  height: 100%;
  aspect-ratio: auto;
}

body.journey-page #year-2024 .chapter-2024-gallery__support--office img {
  object-position: center 42%;
}

body.journey-page #year-2024::before {
  top: clamp(0.2rem, 1.35vw, 1.1rem);
  right: max(1.5rem, calc((100vw - 1320px) / 2 + 0.35rem));
  color: rgba(166, 54, 42, 0.052);
  font-size: clamp(5.6rem, 10.8vw, 10.6rem);
}

body.journey-page #year-2025 .chapter-split__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.68fr);
  grid-template-areas:
    "heading media"
    "copy media"
    "notes media";
  align-items: start;
  column-gap: clamp(2rem, 4.5vw, 5rem);
  row-gap: clamp(0.9rem, 1.4vw, 1.25rem);
  padding-top: clamp(0.95rem, 1.55vw, 1.25rem);
}

body.journey-page #year-2025 {
  padding-top: clamp(3.5rem, 5.55vw, 5.45rem);
  padding-bottom: clamp(3.6rem, 5.35vw, 5.35rem);
}

body.journey-page #year-2025 .chapter-2025-heading {
  grid-area: heading;
  display: grid;
  gap: clamp(0.75rem, 1.05vw, 1rem);
  max-width: 45rem;
  padding-top: clamp(0.05rem, 0.35vw, 0.25rem);
}

body.journey-page #year-2025 .chapter-2025-heading h2 {
  max-width: 11.5ch;
  margin-bottom: clamp(0.05rem, 0.3vw, 0.2rem);
  font-size: clamp(3.05rem, 5.1vw, 5.6rem);
  line-height: 0.9;
}

body.journey-page #year-2025 .chapter-2025-heading h2 span {
  display: block;
  white-space: nowrap;
}

body.journey-page #year-2025 .chapter-2025-copy {
  grid-area: copy;
  display: grid;
  gap: clamp(0.78rem, 1.05vw, 0.95rem);
  max-width: 48rem;
  padding-top: clamp(0.1rem, 0.45vw, 0.35rem);
}

body.journey-page #year-2025 .chapter-2025-copy p {
  margin: 0;
  max-width: 47rem;
  color: rgba(75, 81, 79, 0.92);
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  line-height: 1.68;
}

body.journey-page #year-2025 .chapter-2025-media {
  grid-area: media;
  display: grid;
  gap: clamp(0.75rem, 1.1vw, 1rem);
  width: min(100%, 620px);
  justify-self: end;
  padding-top: clamp(2rem, 3.7vw, 3.25rem);
}

body.journey-page #year-2025 .chapter-2025-feature {
  display: grid;
  padding: clamp(0.58rem, 0.95vw, 0.75rem);
  border: 1px solid rgba(21, 20, 19, 0.2);
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.055) 1px, transparent 1px) 0 0 / 56px 100%,
    #111820;
  box-shadow: 0 30px 70px -54px rgba(21, 20, 19, 0.72);
}

body.journey-page #year-2025 .chapter-2025-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  grid-template-areas:
    "pool car"
    "wide wide";
  grid-template-rows: clamp(142px, 11.3vw, 178px) clamp(150px, 12.2vw, 188px);
  gap: clamp(0.45rem, 0.8vw, 0.6rem);
}

body.journey-page #year-2025 .chapter-2025-gallery .archive-card {
  min-width: 0;
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: none;
}

body.journey-page #year-2025 .chapter-2025-gallery__support--pool {
  grid-area: pool;
}

body.journey-page #year-2025 .chapter-2025-gallery__support--car {
  grid-area: car;
}

body.journey-page #year-2025 .chapter-2025-gallery__wide {
  grid-area: wide;
}

body.journey-page #year-2025 .chapter-2025-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

body.journey-page #year-2025 .chapter-2025-gallery__support img {
  height: 100%;
  aspect-ratio: auto;
}

body.journey-page #year-2025 .chapter-2025-gallery__support--pool img {
  object-position: center 42%;
}

body.journey-page #year-2025 .chapter-2025-gallery__support--car img {
  object-position: center 48%;
}

body.journey-page #year-2025 .chapter-2025-gallery__wide img {
  height: 100%;
  aspect-ratio: auto;
  object-position: center 8%;
}

body.journey-page #year-2025 .chapter-2025-essay-image {
  width: 100%;
  margin: 0;
}

body.journey-page #year-2025 .chapter-2025-essay-image img {
  width: 100%;
  height: clamp(285px, 23.5vw, 390px);
  object-fit: cover;
  object-position: center 43%;
}

body.journey-page #year-2025 .chapter-2025-notes {
  grid-area: notes;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.15vw, 0.95rem);
  max-width: 48rem;
  margin-top: clamp(0.35rem, 0.9vw, 0.7rem);
}

body.journey-page #year-2025 .chapter-2025-notes .annotation-row__item {
  gap: 0.35rem;
  padding-top: clamp(0.72rem, 1vw, 0.9rem);
}

body.journey-page #year-2025 .chapter-2025-notes .annotation-row__item p:not(.story-tag) {
  font-size: clamp(0.92rem, 0.92vw, 1rem);
  line-height: 1.58;
}

body.journey-page #year-2025::before {
  top: clamp(0.2rem, 1.35vw, 1.1rem);
  right: max(1.5rem, calc((100vw - 1320px) / 2 + 0.35rem));
  color: rgba(166, 54, 42, 0.052);
  font-size: clamp(5.6rem, 10.8vw, 10.6rem);
}

body.journey-page .venture-plate {
  border-radius: 0.42rem;
}

body.journey-page .venture-plate img {
  min-height: clamp(280px, 32vw, 420px);
}

body.journey-page .chapter-dossier__photo {
  align-self: start;
  margin-top: clamp(4rem, 8vw, 7rem);
}

body.journey-page .chapter-dossier__photo img {
  width: 100%;
  height: clamp(330px, 36vw, 520px);
  object-fit: cover;
  object-position: center;
  transition: transform 380ms ease;
}

body.journey-page .chapter-dossier__photo:hover img,
body.journey-page .chapter-dossier__photo:focus-within img {
  transform: scale(1.02);
}

body.journey-page .chapter-dossier__photo figcaption {
  font-size: 0.76rem;
}

body.journey-page #year-2026 .chapter-dossier__lead {
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.68fr);
  grid-template-areas:
    "title media"
    "body media";
  align-items: start;
  column-gap: clamp(2rem, 4.5vw, 5rem);
  row-gap: clamp(1.1rem, 2vw, 1.65rem);
  padding-top: clamp(1rem, 1.7vw, 1.35rem);
}

body.journey-page #year-2026 .chapter-dossier__title {
  grid-area: title;
  align-self: start;
  max-width: 42rem;
  padding-top: clamp(0.15rem, 0.7vw, 0.5rem);
}

body.journey-page #year-2026 .chapter-dossier__title h2 {
  max-width: 10.6ch;
  font-size: clamp(3.9rem, 6.65vw, 6.55rem);
  line-height: 0.9;
}

body.journey-page #year-2026 .chapter-dossier__title h2 span {
  display: block;
}

body.journey-page #year-2026 .chapter-2026-media {
  grid-area: media;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.72fr);
  grid-template-areas:
    "hero hero"
    "camera desk"
    "camera office";
  gap: clamp(0.58rem, 0.95vw, 0.78rem);
  width: min(100%, 630px);
  justify-self: end;
  margin-top: clamp(1rem, 1.85vw, 1.75rem);
  padding: clamp(0.58rem, 0.95vw, 0.78rem);
  border: 1px solid rgba(21, 20, 19, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.06) 1px, transparent 1px) 0 0 / 58px 100%,
    #111820;
  box-shadow: 0 32px 76px -56px rgba(21, 20, 19, 0.72);
}

body.journey-page #year-2026 .chapter-2026-media .archive-card {
  min-width: 0;
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: none;
}

body.journey-page #year-2026 .chapter-2026-media__hero {
  grid-area: hero;
}

body.journey-page #year-2026 .chapter-2026-media__support--camera {
  grid-area: camera;
}

body.journey-page #year-2026 .chapter-2026-media__support--desk {
  grid-area: desk;
}

body.journey-page #year-2026 .chapter-2026-media__support--office {
  grid-area: office;
}

body.journey-page #year-2026 .chapter-2026-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

body.journey-page #year-2026 .chapter-2026-media__hero img {
  height: clamp(210px, 17vw, 280px);
  aspect-ratio: auto;
  object-position: center 45%;
}

body.journey-page #year-2026 .chapter-2026-media__support img {
  height: clamp(138px, 11vw, 175px);
  aspect-ratio: auto;
}

body.journey-page #year-2026 .chapter-2026-media__support--camera img {
  height: 100%;
  object-position: 48% 50%;
}

body.journey-page #year-2026 .chapter-2026-media__support--desk img {
  object-position: 56% 45%;
}

body.journey-page #year-2026 .chapter-2026-media__support--office img {
  object-position: center 48%;
}

body.journey-page #year-2026 .chapter-dossier__body {
  grid-area: body;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.85rem, 1.2vw, 1.05rem);
  max-width: 49rem;
  padding-top: clamp(1.05rem, 1.6vw, 1.35rem);
  border-top-color: rgba(21, 20, 19, 0.2);
}

body.journey-page #year-2026 .chapter-dossier__body p {
  max-width: 48rem;
  font-size: clamp(1.01rem, 0.98vw, 1.1rem);
  line-height: 1.72;
}

body.journey-page #year-2026 .chapter-2026-monogram {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  margin-top: clamp(1.35rem, 2.4vw, 2.4rem);
  color: rgba(21, 20, 19, 0.22);
  font-family: "Newsreader", serif;
  font-size: clamp(4rem, 8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.78;
  pointer-events: none;
}

body.journey-page #year-2026::before {
  top: clamp(0.55rem, 1.45vw, 1.2rem);
  right: max(1.5rem, calc((100vw - 1320px) / 2 + 0.2rem));
  color: rgba(166, 54, 42, 0.054);
  font-size: clamp(5.8rem, 11vw, 11.2rem);
}

body.journey-page .tailnote {
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}

body.contact-page {
  background:
    linear-gradient(90deg, rgba(15, 71, 97, 0.035) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(248, 244, 236, 0.74)),
    #fbfaf6;
}

body.contact-page .tailnote {
  display: none;
}

body.contact-page .contact-sheet {
  display: grid;
  align-items: center;
  min-height: calc(100svh - clamp(64px, 6vw, 76px));
  padding: clamp(1.35rem, 2.5vw, 2.7rem) 0;
  background: transparent;
}

body.contact-page .contact-sheet__frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(calc(100% - clamp(2rem, 5vw, 5.75rem)), 1160px);
  min-height: 0;
  padding: clamp(0.45rem, 0.9vw, 0.7rem);
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.14);
  border-radius: 0.82rem;
  background:
    linear-gradient(90deg, rgba(21, 20, 19, 0.045) 1px, transparent 1px) 0 0 / 64px 100%,
    #fffdf8;
  box-shadow: 0 30px 82px -66px rgba(17, 24, 32, 0.72);
}

body.contact-page .contact-sheet__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
  grid-template-areas: "intro portrait";
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 3.4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 0.58rem;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.065) 1px, transparent 1px) 0 0 / 64px 100%,
    radial-gradient(circle at 88% 18%, rgba(143, 200, 220, 0.18), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(190, 169, 145, 0.12), transparent 34%),
    linear-gradient(135deg, #0d2b3b 0%, #111820 58%, #153f56 100%);
  color: #fffaf0;
}

body.contact-page .contact-sheet__top::before {
  content: "";
  position: absolute;
  top: clamp(1.25rem, 2.4vw, 2rem);
  bottom: clamp(1.25rem, 2.4vw, 2rem);
  left: clamp(1.05rem, 1.7vw, 1.55rem);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(159, 195, 216, 0.95), rgba(159, 195, 216, 0.12));
}

body.contact-page .contact-sheet__top::after {
  content: "";
  position: absolute;
  right: clamp(1.35rem, 2.8vw, 2.4rem);
  bottom: clamp(1.35rem, 2.8vw, 2.4rem);
  width: clamp(6rem, 14vw, 11rem);
  height: 1px;
  background: rgba(255, 250, 240, 0.2);
  pointer-events: none;
}

body.contact-page .contact-sheet__intro {
  position: relative;
  z-index: 1;
  grid-area: intro;
  align-self: start;
  gap: clamp(0.8rem, 1.25vw, 1.05rem);
  width: 100%;
  max-width: 45rem;
  padding-left: clamp(1rem, 1.4vw, 1.35rem);
}

body.contact-page .contact-sheet__intro .kicker {
  color: #9fc3d8;
}

body.contact-page .contact-sheet__intro h1 {
  max-width: 12ch;
  color: #fffaf0;
  font-size: clamp(3.15rem, 6.2vw, 6.1rem);
  line-height: 0.88;
  letter-spacing: 0;
}

body.contact-page .contact-sheet__deck {
  max-width: 38rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.62;
}

body.contact-page .contact-sheet__rule {
  display: block;
  width: min(8.5rem, 42%);
  height: 1px;
  margin-top: clamp(0.2rem, 0.7vw, 0.55rem);
  background: linear-gradient(90deg, rgba(159, 195, 216, 0.88), rgba(159, 195, 216, 0));
}

body.contact-page .contact-sheet__media {
  position: relative;
  z-index: 1;
  grid-area: portrait;
  align-self: center;
  justify-self: end;
  width: min(100%, 245px);
  padding-left: 0;
}

body.contact-page .contact-sheet .contact-portrait {
  display: grid;
  gap: 0.66rem;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 250, 240, 0.2);
  border-radius: 0.55rem;
  background: rgba(255, 250, 240, 0.12);
  box-shadow: 0 28px 76px -46px rgba(0, 0, 0, 0.86);
}

body.contact-page .contact-sheet .contact-portrait img {
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

body.contact-page .contact-sheet .contact-portrait figcaption {
  display: grid;
  gap: 0.22rem;
  padding: 0 0.8rem 0.8rem;
  border: 0;
  color: rgba(255, 250, 240, 0.64);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.contact-page .contact-sheet .contact-portrait figcaption span:first-child {
  color: #fffaf0;
}

body.contact-page .contact-sheet__monogram {
  position: absolute;
  right: clamp(18rem, 25vw, 25rem);
  bottom: clamp(1.55rem, 3vw, 2.75rem);
  z-index: 0;
  margin: 0;
  color: rgba(255, 250, 240, 0.08);
  font-family: "Newsreader", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

body.contact-page .contact-inquiry {
  display: grid;
  align-content: center;
  justify-items: stretch;
  padding: clamp(1.05rem, 2vw, 1.8rem) clamp(1.05rem, 2.7vw, 2.5rem) clamp(1.2rem, 2.3vw, 2.1rem);
  border-top: 1px solid rgba(21, 20, 19, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 71, 97, 0.055), transparent 36%),
    linear-gradient(90deg, rgba(21, 20, 19, 0.06) 1px, transparent 1px) 0 0 / 64px 100%,
    rgba(255, 253, 248, 0.92);
}

body.contact-page .contact-form {
  position: relative;
  width: min(100%, 940px);
  justify-self: center;
  gap: clamp(0.88rem, 1.15vw, 1.05rem);
  padding: clamp(1.15rem, 2vw, 1.65rem);
  border: 1px solid rgba(21, 20, 19, 0.14);
  border-radius: 0.6rem;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 26px 64px -52px rgba(17, 24, 32, 0.64);
}

body.contact-page .contact-form::before {
  display: none;
}

body.contact-page .contact-form__header {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(21, 20, 19, 0.14);
}

body.contact-page .contact-form__header h2 {
  margin: 0;
  color: #171411;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

body.contact-page .contact-form__row {
  gap: clamp(0.8rem, 1.2vw, 1rem);
}

body.contact-page .contact-form label {
  gap: 0.34rem;
}

body.contact-page .contact-form label > span {
  color: #0f4761;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
}

body.contact-page .contact-form input,
body.contact-page .contact-form select,
body.contact-page .contact-form textarea {
  border-color: rgba(21, 20, 19, 0.16);
  border-radius: 0.32rem;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

body.contact-page .contact-form input,
body.contact-page .contact-form select {
  height: 3.12rem;
  padding: 0 0.95rem;
}

body.contact-page .contact-form textarea {
  min-height: clamp(8.8rem, 17vh, 10.8rem);
  padding: 0.95rem;
}

body.contact-page .contact-form input:focus,
body.contact-page .contact-form select:focus,
body.contact-page .contact-form textarea:focus {
  outline: 0;
  border-color: rgba(15, 71, 97, 0.56);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(15, 71, 97, 0.1);
}

body.contact-page .contact-form__footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
}

body.contact-page .contact-form__direct {
  display: flex;
  gap: 0.72rem;
  align-items: center;
  min-width: 0;
}

body.contact-page .contact-form__mail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(15, 71, 97, 0.24);
  border-radius: 999px;
  color: #0f4761;
  font-size: 0.92rem;
  font-weight: 700;
}

body.contact-page .contact-form__direct p {
  margin: 0;
  color: rgba(75, 81, 79, 0.76);
  font-size: 0.78rem;
  line-height: 1.3;
}

body.contact-page .contact-form__direct a {
  color: #171411;
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
}

body.contact-page .contact-form__direct a:hover,
body.contact-page .contact-form__direct a:focus-visible {
  color: #0f4761;
}

body.contact-page .contact-form button.action-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  min-width: 10.6rem;
  min-height: 2.9rem;
  border-color: #0f4761;
  background: #0f4761;
  color: #fffaf0;
}

body.contact-page .contact-form button.action-link:hover,
body.contact-page .contact-form button.action-link:focus-visible {
  border-color: #153f56;
  background: #153f56;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  body.contact-page .contact-sheet {
    align-items: start;
    min-height: 0;
    padding: 1.15rem 0 2rem;
  }

  body.contact-page .contact-sheet__frame {
    grid-template-columns: 1fr;
    min-height: 0;
    width: min(calc(100% - 2rem), 1160px);
  }

  body.contact-page .contact-sheet__top {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
    grid-template-rows: auto;
    grid-template-areas: "intro portrait";
    align-items: end;
    gap: clamp(1.25rem, 4vw, 2.4rem);
  }

  body.contact-page .contact-sheet__media {
    justify-self: end;
    width: min(100%, 210px);
  }

  body.contact-page .contact-sheet__monogram {
    right: clamp(13rem, 28vw, 18rem);
  }
}

@media (max-width: 720px) {
  body.contact-page .contact-sheet {
    padding: 1rem 0 1.6rem;
  }

  body.contact-page .contact-sheet__top {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "intro"
      "portrait";
    gap: 1.2rem;
    padding: 1.2rem;
  }

  body.contact-page .contact-sheet__intro {
    justify-items: start;
    padding-right: 0.65rem;
    padding-left: 1.45rem;
    text-align: left;
  }

  body.contact-page .contact-sheet__intro h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.25rem);
    line-height: 0.92;
  }

  body.contact-page .contact-sheet__media {
    width: min(100%, 188px);
    justify-self: start;
    margin-left: 0.75rem;
    padding-left: 1.45rem;
  }

  body.contact-page .contact-sheet__monogram {
    right: 1rem;
    bottom: 1rem;
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  body.contact-page .contact-inquiry {
    padding: 0.8rem;
  }

  body.contact-page .contact-form {
    padding: 1rem;
  }

  body.contact-page .contact-form__row {
    grid-template-columns: 1fr;
  }

  body.contact-page .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  body.contact-page .contact-form__direct {
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  body.journey-page .page-shell {
    width: min(calc(100% - 56px), 1320px);
  }

  body.journey-page .chapter-shelf__grid,
  body.journey-page .chapter-column__grid,
  body.journey-page .chapter-split__grid,
  body.journey-page .chapter-dossier__lead,
  body.journey-page #year-2017 .chapter-shelf__grid,
  body.journey-page #year-2023 .chapter-shelf__grid,
  body.journey-page #year-2024 .chapter-column__grid,
  body.journey-page #year-2025 .chapter-split__grid {
    grid-template-columns: 1fr;
  }

  body.journey-page #year-2025 .chapter-split__grid {
    grid-template-areas: none;
    gap: clamp(1.35rem, 3.2vw, 2.1rem);
  }

  body.journey-page #year-2025 .chapter-2025-heading,
  body.journey-page #year-2025 .chapter-2025-copy,
  body.journey-page #year-2025 .chapter-2025-media,
  body.journey-page #year-2025 .chapter-2025-notes {
    grid-area: auto;
  }

  body.journey-page #year-2025 .chapter-2025-heading {
    order: 1;
    max-width: 44rem;
    padding-top: 0;
  }

  body.journey-page #year-2025 .chapter-2025-media {
    display: contents;
  }

  body.journey-page #year-2025 .chapter-2025-essay-image {
    order: 2;
    width: min(100%, 760px);
  }

  body.journey-page #year-2025 .chapter-2025-copy {
    order: 3;
    max-width: 52rem;
  }

  body.journey-page #year-2025 .chapter-2025-feature {
    order: 4;
    width: min(100%, 660px);
  }

  body.journey-page #year-2025 .chapter-2025-notes {
    order: 5;
    max-width: 660px;
  }

  body.journey-page #year-2026 .chapter-dossier__lead {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: clamp(1.25rem, 3vw, 1.9rem);
  }

  body.journey-page #year-2026 .chapter-dossier__title,
  body.journey-page #year-2026 .chapter-dossier__body,
  body.journey-page #year-2026 .chapter-2026-media,
  body.journey-page #year-2026 .chapter-2026-monogram {
    grid-column: auto;
    grid-row: auto;
    grid-area: auto;
  }

  body.journey-page #year-2026 .chapter-dossier__title {
    order: 1;
    max-width: 34rem;
  }

  body.journey-page #year-2026 .chapter-dossier__body {
    order: 3;
    grid-template-columns: 1fr;
    max-width: 50rem;
  }

  body.journey-page #year-2026 .chapter-2026-monogram {
    order: 4;
    justify-self: end;
    margin-top: 0;
    font-size: clamp(4rem, 13vw, 5.6rem);
  }

  body.journey-page #year-2026 .chapter-dossier__body p:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  body.journey-page .chapter-shelf__grid > .archive-card,
  body.journey-page .chapter-dossier__photo,
  body.journey-page .chapter-column__side,
  body.journey-page .chapter-split__stack {
    max-width: 760px;
  }

  body.journey-page .chapter-dossier__photo {
    margin-top: 0;
  }

  body.journey-page #year-2017 .chapter-shelf__grid > .archive-card {
    width: min(100%, 440px);
    justify-self: start;
    margin-top: 0;
    transform: none;
  }

  body.journey-page #year-2017 .chapter-shelf__grid {
    grid-template-areas:
      "year"
      "heading"
      "copy"
      "image";
  }

  body.journey-page #year-2017 .chapter-entry-title--section {
    max-width: 18ch;
  }

  body.journey-page #year-2020 .chapter-column__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 3.2vw, 2.1rem);
  }

  body.journey-page #year-2020 .chapter-column__side {
    margin-top: 0;
  }

  body.journey-page #year-2020 .archive-stack {
    width: min(100%, 620px);
  }

  body.journey-page #year-2021 .chapter-split__stack .archive-card:nth-child(2) {
    width: 100%;
  }

  body.journey-page #year-2021 .chapter-split__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 3.2vw, 2.1rem);
  }

  body.journey-page #year-2021 .chapter-split__stack {
    width: min(100%, 640px);
    padding-top: 0;
  }

  body.journey-page .year-mark__title {
    max-width: 24rem;
  }

  body.journey-page #year-2023 .chapter-2023-media {
    max-width: 760px;
    margin-top: 0;
  }

  body.journey-page #year-2023 .chapter-shelf__copy {
    padding-top: 0;
  }

  body.journey-page #year-2024 .chapter-2024-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: clamp(235px, 32vw, 320px);
    grid-template-areas: "hero office";
    width: min(100%, 700px);
    justify-self: start;
    margin-top: 0;
  }

  body.journey-page #year-2024 .chapter-column__body {
    display: contents;
  }

  body.journey-page #year-2024 .chapter-column__heading,
  body.journey-page #year-2024 .chapter-2024-graduation,
  body.journey-page #year-2024 .chapter-column__text,
  body.journey-page #year-2024 .chapter-2024-gallery {
    grid-column: 1;
    grid-row: auto;
  }

  body.journey-page #year-2024 .chapter-column__heading {
    order: 1;
  }

  body.journey-page #year-2024 .chapter-2024-graduation {
    order: 2;
    width: min(100%, 520px);
    margin-top: 0;
  }

  body.journey-page #year-2024 .chapter-column__text {
    order: 3;
    max-width: 52rem;
    padding-top: 0;
  }

  body.journey-page #year-2024 .chapter-2024-gallery {
    order: 4;
  }

  body.journey-page #year-2026 .chapter-2026-media {
    order: 2;
    width: min(100%, 760px);
    justify-self: start;
    margin-top: 0;
  }

  body.journey-page .chapter-band--year-2022 .chapter-band__details,
  body.journey-page .chapter-band--year-2022 .annotation-panel--media {
    grid-template-columns: 1fr;
  }

  body.journey-page .chapter-band--year-2022 .chapter-band__top {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 4vw, 2.6rem);
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 {
    width: min(100%, 760px);
    margin-top: 0;
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card img {
    height: 100%;
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:first-child {
    width: min(86%, 620px);
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2) {
    width: min(72%, 520px);
    margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  }

  body.journey-page .chapter-column--text-only .chapter-column__body,
  body.journey-page .chapter-column--text-only .chapter-column__body .kicker,
  body.journey-page .chapter-column--text-only .chapter-column__body h2,
  body.journey-page .chapter-column--text-only .chapter-column__body > p,
  body.journey-page .chapter-column--text-only .chapter-column__text {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  body.journey-page .page-shell {
    width: min(calc(100% - 40px), 1320px);
  }

  body.journey-page .opening-spread__copy h1 {
    font-size: clamp(4.15rem, 18vw, 6.4rem);
  }

  body.journey-page :where(.chapter-shelf, .chapter-column, .chapter-split, .chapter-band, .chapter-dossier) {
    padding: clamp(3.6rem, 12vw, 5rem) 0;
  }

  body.journey-page section[data-year]::before {
    top: 0.75rem;
    right: 1rem;
    font-size: clamp(4.2rem, 22vw, 7rem);
    opacity: 0.06;
  }

  body.journey-page section[data-year] :where(.kicker, .year-mark__year) {
    font-size: clamp(2.8rem, 15vw, 4.25rem);
  }

  body.journey-page section[data-year] h2 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11vw, 3.9rem);
    line-height: 0.94;
  }

  body.journey-page #year-2017 {
    padding-top: clamp(2rem, 8vw, 3.2rem);
  }

  body.journey-page .chapter-shelf__grid,
  body.journey-page .chapter-column__grid,
  body.journey-page .chapter-split__grid,
  body.journey-page .chapter-band__body,
  body.journey-page .chapter-dossier__lead {
    gap: 1.6rem;
    padding-top: 1rem;
  }

  body.journey-page #year-2020 {
    padding-top: clamp(3rem, 10vw, 4rem);
    padding-bottom: clamp(3.1rem, 10vw, 4.2rem);
  }

  body.journey-page #year-2020 .chapter-column__body {
    gap: 0.85rem;
  }

  body.journey-page #year-2020 .chapter-column__markers {
    gap: 0.8rem;
    margin-top: 0.25rem;
  }

  body.journey-page #year-2020 .fact-line {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  body.journey-page #year-2017 .archive-card img,
  body.journey-page #year-2020 .archive-card--portrait img,
  body.journey-page #year-2020 .archive-card--landscape img,
  body.journey-page #year-2021 .chapter-split__stack .archive-card img,
  body.journey-page .chapter-dossier__photo img {
    height: auto;
    max-height: 520px;
  }

  body.journey-page #year-2020 .archive-stack .archive-card:nth-child(2) img {
    height: clamp(190px, 52vw, 245px);
    object-fit: cover;
    object-position: center bottom;
  }

  body.journey-page #year-2017 .chapter-shelf__grid > .archive-card {
    width: min(100%, 330px);
    justify-self: start;
    margin-top: 0.35rem;
    transform: none;
  }

  body.journey-page #year-2017 .chapter-shelf__copy {
    padding-top: 0;
  }

  body.journey-page #year-2017 .chapter-entry-title--section {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  body.journey-page #year-2017 .year-mark__title {
    max-width: 18rem;
  }

  body.journey-page #year-2021 .chapter-split__stack .archive-card:nth-child(2) {
    width: 100%;
  }

  body.journey-page #year-2021 {
    padding-top: clamp(3rem, 10vw, 4rem);
    padding-bottom: clamp(3.1rem, 10vw, 4.2rem);
  }

  body.journey-page #year-2021 .chapter-split__essay {
    gap: 0.85rem;
    padding-top: 0;
  }

  body.journey-page #year-2021 .chapter-split__stack {
    gap: 0.8rem;
  }

  body.journey-page #year-2021 .chapter-split__stack .annotation-row {
    margin-top: 0.15rem;
  }

  body.journey-page #year-2021 .chapter-split__stack .archive-card img {
    height: clamp(210px, 58vw, 260px);
    object-fit: cover;
  }

  body.journey-page .fact-line,
  body.journey-page .annotation-row {
    grid-template-columns: 1fr;
  }

  body.journey-page #year-2023 .chapter-2023-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "shipping"
      "studio";
  }

  body.journey-page #year-2023 .chapter-2023-gallery__hero img,
  body.journey-page #year-2023 .chapter-2023-gallery__support img {
    height: clamp(190px, 58vw, 260px);
  }

  body.journey-page #year-2024 .chapter-2024-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hero"
      "office";
    width: 100%;
  }

  body.journey-page #year-2024 {
    padding-top: clamp(3rem, 10vw, 4.05rem);
    padding-bottom: clamp(3.1rem, 10vw, 4.25rem);
  }

  body.journey-page #year-2024 .chapter-column__body,
  body.journey-page #year-2024 .chapter-column__heading,
  body.journey-page #year-2024 .chapter-2024-graduation,
  body.journey-page #year-2024 .chapter-column__body .kicker,
  body.journey-page #year-2024 .chapter-column__body h2,
  body.journey-page #year-2024 .chapter-column__text {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }

  body.journey-page #year-2024 .chapter-column__body {
    row-gap: 0.8rem;
  }

  body.journey-page #year-2024 .chapter-column__heading {
    gap: 0.8rem;
  }

  body.journey-page #year-2024 .chapter-column__body h2 {
    max-width: 9.8ch;
    font-size: clamp(2.75rem, 11.5vw, 4rem);
  }

  body.journey-page #year-2024 .chapter-column__text {
    gap: 0.85rem;
    padding-top: 0.1rem;
  }

  body.journey-page #year-2024 .chapter-2024-graduation {
    width: 100%;
  }

  body.journey-page #year-2024 .chapter-2024-graduation img,
  body.journey-page #year-2024 .chapter-2024-gallery__hero img,
  body.journey-page #year-2024 .chapter-2024-gallery__support img {
    height: clamp(260px, 82vw, 380px);
  }

  body.journey-page #year-2025 .chapter-2025-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    grid-template-areas:
      "pool car"
      "wide wide";
    grid-template-rows: clamp(138px, 38vw, 170px) clamp(145px, 40vw, 180px);
    gap: 0.55rem;
  }

  body.journey-page #year-2025 .chapter-2025-gallery__support img,
  body.journey-page #year-2025 .chapter-2025-gallery__wide img {
    height: 100%;
  }

  body.journey-page #year-2025 {
    padding-top: clamp(3rem, 10vw, 4.05rem);
    padding-bottom: clamp(3.1rem, 10vw, 4.25rem);
  }

  body.journey-page #year-2025 .chapter-2025-heading {
    gap: 0.85rem;
    padding-top: 0;
  }

  body.journey-page #year-2025 .chapter-2025-heading h2 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  body.journey-page #year-2025 .chapter-2025-feature {
    padding: 0.55rem;
  }

  body.journey-page #year-2025 .chapter-2025-essay-image {
    width: 100%;
    margin-top: 0.35rem;
  }

  body.journey-page #year-2025 .chapter-2025-essay-image img {
    height: clamp(185px, 54vw, 245px);
  }

  body.journey-page #year-2025 .chapter-2025-copy {
    gap: 0.85rem;
    padding-top: 0;
  }

  body.journey-page #year-2025 .chapter-2025-notes {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  body.journey-page #year-2025 .chapter-2025-notes .annotation-row__item p:not(.story-tag) {
    font-size: 0.96rem;
  }

  body.journey-page #year-2026 .chapter-2026-media {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "camera"
      "desk"
      "office";
  }

  body.journey-page #year-2026 .chapter-2026-media__hero img,
  body.journey-page #year-2026 .chapter-2026-media__support img,
  body.journey-page #year-2026 .chapter-2026-media__support--camera img {
    height: clamp(190px, 56vw, 265px);
  }

  body.journey-page #year-2026 .chapter-dossier__title h2 {
    max-width: 10.5ch;
  }

  body.journey-page #year-2026 .chapter-dossier__body {
    gap: 0.85rem;
    padding-top: 1rem;
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card img {
    height: 100%;
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:first-child,
  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2) {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:first-child img,
  body.journey-page .chapter-band--year-2022 .archive-stack--2022 .archive-card:nth-child(2) img {
    aspect-ratio: 16 / 11;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  body,
  .rise,
  .rise *,
  .js .rise,
  .js .rise * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
