:root {
  --paper: #fcfaf5;
  --ink: #1e1e1c;
  --muted: #6e6a63;
  --link: #2e4057;
  --line: rgba(30, 30, 28, 0.22);
  --accent: #781f1b;
  --accent-soft: #eadfce;
  --panel: #f8f4eb;
  --shadow: rgba(30, 30, 28, 0.08);
  --distressed-cream-text: linear-gradient(
    92deg,
    rgba(246, 239, 228, 0.98) 0%,
    rgba(246, 239, 228, 0.98) 18%,
    rgba(54, 50, 43, 0.22) 24%,
    rgba(246, 239, 228, 0.94) 31%,
    rgba(246, 239, 228, 0.98) 47%,
    rgba(54, 50, 43, 0.18) 52%,
    rgba(246, 239, 228, 0.95) 61%,
    rgba(246, 239, 228, 0.98) 76%,
    rgba(54, 50, 43, 0.16) 83%,
    rgba(246, 239, 228, 0.96) 100%
  );
  --distressed-red-text: linear-gradient(
    92deg,
    rgba(120, 24, 20, 0.98) 0%,
    rgba(120, 24, 20, 0.98) 16%,
    rgba(248, 241, 232, 0.34) 21%,
    rgba(120, 24, 20, 0.94) 27%,
    rgba(120, 24, 20, 0.98) 42%,
    rgba(248, 241, 232, 0.28) 48%,
    rgba(120, 24, 20, 0.95) 55%,
    rgba(120, 24, 20, 0.98) 70%,
    rgba(248, 241, 232, 0.24) 76%,
    rgba(120, 24, 20, 0.95) 83%,
    rgba(120, 24, 20, 0.98) 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Crimson Text", serif;
}

a {
  color: var(--link);
}

.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 64px;
  position: relative;
}

.page::before {
  content: "";
  position: absolute;
  inset: 4px -20px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px var(--shadow);
  z-index: -1;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 4px;
  background: rgba(120, 31, 27, 0.08);
}

.reading-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #a22c25);
  transform-origin: left center;
}

.menu-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin: 0 0 8px;
  padding: 8px 0 12px;
  border-top: 2px solid var(--accent);
  border-bottom: 0;
  background: var(--panel);
  box-shadow: none;
}

.chapter,
#storymap,
#field-recordings,
#arrest-ledgers,
#works-cited,
#additional-sources,
#end-card {
  scroll-margin-top: 96px;
}

.menu-vault-label-wrap {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.26rem 0 0.12rem;
  row-gap: 0.22rem;
}

.menu-vault-label-wrap::before,
.menu-vault-label-wrap::after {
  content: "";
  flex: none;
  width: min(100%, 1240px);
  height: 9px;
  background:
    linear-gradient(
      180deg,
      transparent 0 1px,
      rgba(136, 36, 30, 0.82) 1px 3px,
      transparent 3px 5px,
      rgba(24, 28, 38, 0.78) 5px 6px,
      transparent 6px 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(244, 239, 231, 0.12) 0 9px,
      rgba(116, 25, 21, 0.02) 9px 17px,
      rgba(24, 28, 38, 0.06) 17px 21px
    );
  opacity: 0.94;
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 231, 0.14),
    inset 0 -1px 0 rgba(28, 22, 19, 0.16);
}

.menu-vault-label-wrap::after {
  content: none;
}

.menu-vault-label {
  margin: 0;
  width: min(100%, 1240px);
  padding: 0;
  background: transparent;
  color: rgba(120, 24, 20, 0.92);
  background-image: var(--distressed-red-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.31em;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 0.01em rgba(88, 18, 15, 0.12);
}

.menu-vault-label-wrap + .menu-bar {
  margin-top: 0;
  border-top: 0;
}

.menu-bar > a:not(.menu-volume-card) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  text-decoration: none;
  flex: 1 1 0;
  min-height: 46px;
  padding: 5px 8px;
  border: 3px double #161513;
  outline: 1px solid rgba(120, 31, 27, 0.42);
  outline-offset: 2px;
  background: #161513;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  color: #f4efe7;
}

.menu-bar > a:not(.menu-volume-card).menu-has-subline {
  padding-top: 3px;
  padding-bottom: 3px;
}

.menu-bar > a:not(.menu-volume-card).menu-third-ward {
  padding-left: 6px;
  padding-right: 6px;
}

.menu-bar > a:not(.menu-volume-card).menu-third-ward .menu-subline {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.menu-topline {
  display: block;
  white-space: nowrap;
}

.menu-subline {
  position: static;
  display: block;
  margin-top: 0.2rem;
  width: auto;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: uppercase;
}

.menu-bar > a:not(.menu-volume-card):hover {
  color: var(--accent);
  border-color: #161513;
  background: #161513;
}

.menu-bar::-webkit-scrollbar {
  height: 6px;
}

.menu-bar::-webkit-scrollbar-thumb {
  background: rgba(120, 31, 27, 0.25);
  border-radius: 999px;
}

.menu-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  overflow: visible;
  padding: 0.1rem 0 0.84rem;
}

.menu-bar::after {
  content: none;
}

.menu-volume-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-width: 0;
  height: 92px !important;
  min-height: 92px !important;
  padding: 0;
  border: 1px solid rgba(27, 24, 21, 0.92);
  outline: 1px solid rgba(236, 227, 214, 0.84);
  outline-offset: -4px;
  background: #121111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  color: #ece3d6;
  text-decoration: none;
  overflow: hidden;
}

.menu-volume-card::after {
  content: none;
}

.menu-volume-card:hover,
.menu-volume-card:focus-visible {
  color: #f4efe7;
  border-color: rgba(27, 24, 21, 0.92);
  transform: translateY(-1px);
}

.menu-volume-card-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 2px;
  right: 2px;
  height: 25px;
  background-color: #2b466a;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.09) 100%);
  background-repeat: no-repeat;
  border: 1px solid rgba(236, 227, 214, 0.84);
  box-sizing: border-box;
  padding: 0 0.9rem;
  color: rgba(236, 227, 214, 0.97);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  text-shadow:
    0 0 0.01em rgba(34, 29, 24, 0.18),
    0.02em 0 rgba(18, 17, 17, 0.14),
    -0.015em 0 rgba(255, 248, 236, 0.12);
}

.menu-volume-card--v2 .menu-volume-card-stripe {
  background-color: #355b8b;
  background-image:
    radial-gradient(ellipse 34px 9px at 23% 38%, rgba(255, 248, 236, 0.28) 0%, rgba(255, 248, 236, 0.14) 42%, rgba(255, 248, 236, 0) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.09) 100%);
}

.menu-volume-card--v3 .menu-volume-card-stripe {
  background-color: #8e332d;
  background-image:
    radial-gradient(ellipse 30px 8px at 74% 44%, rgba(255, 248, 236, 0.25) 0%, rgba(255, 248, 236, 0.12) 40%, rgba(255, 248, 236, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.09) 100%);
}

.menu-volume-card--v4 .menu-volume-card-stripe {
  background-color: #5f605b;
  background-image:
    radial-gradient(ellipse 28px 8px at 52% 62%, rgba(255, 248, 236, 0.21) 0%, rgba(255, 248, 236, 0.1) 38%, rgba(255, 248, 236, 0) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.09) 100%);
}

.menu-volume-card--v5 .menu-volume-card-stripe {
  background-color: #b78727;
  background-image:
    radial-gradient(ellipse 32px 8px at 81% 40%, rgba(255, 248, 236, 0.24) 0%, rgba(255, 248, 236, 0.11) 40%, rgba(255, 248, 236, 0) 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.09) 100%);
}

.menu-volume-card--v2,
.menu-volume-card--v2 .menu-volume-card-inner {
  background: linear-gradient(180deg, #2b4a72 0%, #234062 58%, #1d3552 100%) !important;
}

.menu-volume-card--v3,
.menu-volume-card--v3 .menu-volume-card-inner {
  background: linear-gradient(180deg, #733029 0%, #682521 58%, #551d1a 100%) !important;
}

.menu-volume-card--v4,
.menu-volume-card--v4 .menu-volume-card-inner {
  background: linear-gradient(180deg, #52534d 0%, #474842 58%, #3b3c37 100%) !important;
}

.menu-volume-card--v5,
.menu-volume-card--v5 .menu-volume-card-inner {
  background: linear-gradient(180deg, #b78727 0%, #9f7220 58%, #88601b 100%) !important;
}

.menu-volume-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 41px 1px minmax(0, 1fr) !important;
  align-items: center;
  gap: 11px !important;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex: 1 1 auto;
  padding: 30px 12px 3px 7px !important;
}

.menu-volume-card-numberblock {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 100%;
  padding-left: 0;
}

.menu-volume-card-number,
.menu-volume-card-title {
  color: #ece3d6;
  background-image: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #ece3d6;
  text-decoration: none;
}

.menu-volume-card-number {
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: none;
}

.menu-volume-card-divider {
  align-self: stretch;
  width: 4px;
  background: rgba(236, 227, 214, 0.84);
  box-shadow: none;
  justify-self: start;
  margin-left: 4px;
}

.menu-volume-card-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  justify-self: stretch;
  align-self: stretch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.menu-volume-card-title > span {
  display: block;
  white-space: nowrap;
  text-decoration: none;
}

@media (min-width: 1121px) and (max-width: 1440px) {
  .menu-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    justify-content: stretch;
    overflow: visible;
    padding: 0.08rem 0 0.62rem;
    margin-bottom: 8px;
  }

  .menu-volume-card {
    height: 84px !important;
    min-height: 84px !important;
    width: 100%;
  }

  .menu-volume-card-stripe {
    height: 23px;
    font-size: 0.88rem;
    letter-spacing: 0.2em;
  }

  .menu-volume-card-inner {
    grid-template-columns: 39px 3px minmax(0, 1fr) !important;
    gap: 10px !important;
    padding: 28px 12px 3px 8px !important;
  }

  .menu-volume-card-number {
    font-size: 2.7rem;
  }

  .menu-volume-card-title {
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    line-height: 1.1;
  }
}


#complete-work.complete-work-divider {
  width: 100%;
  margin: 0.76rem 0 0.42rem;
  padding: 0.18rem 0 0;
  border: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  row-gap: 0.22rem;
}

#field-recordings.complete-work-divider {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.28rem 0 0.42rem;
  border: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  row-gap: 0.28rem;
}

#complete-work .complete-work-divider-label {
  margin: 0;
  width: min(100%, 980px);
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(120, 24, 20, 0.92);
  background-image: var(--distressed-red-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.22rem, 2.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 0.01em rgba(88, 18, 15, 0.12);
}

.complete-work-divider#field-recordings .complete-work-divider-label {
  margin: 0;
  width: min(100%, 980px);
  padding: 0;
  border: 0;
  background: transparent;
  color: #c49a24;
  background-image: linear-gradient(
    90deg,
    rgba(196, 154, 36, 0.98) 0%,
    rgba(208, 170, 67, 0.9) 31%,
    rgba(173, 133, 22, 0.94) 63%,
    rgba(196, 154, 36, 0.98) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.24rem, 2.82vw, 1.63rem);
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.04;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 0.01em rgba(88, 18, 15, 0.12);
}

.complete-work-divider-number {
  color: var(--panel);
  font-weight: 950;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 0.02em currentColor;
  text-rendering: geometricPrecision;
}

@media (min-width: 721px) and (max-width: 1279px) {
  #complete-work .complete-work-divider-label {
    font-size: clamp(1.3rem, 2.48vw, 1.68rem);
  }
}

#complete-work .complete-work-divider-line {
  display: block;
  flex: none;
  width: 100%;
  height: 12px;
  background:
    linear-gradient(
      180deg,
      transparent 0 1px,
      rgba(136, 36, 30, 0.82) 1px 5px,
      transparent 5px 7px,
      rgba(24, 28, 38, 0.78) 7px 9px,
      transparent 9px 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(244, 239, 231, 0.12) 0 9px,
      rgba(116, 25, 21, 0.02) 9px 17px,
      rgba(24, 28, 38, 0.06) 17px 21px
    );
  opacity: 0.94;
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 231, 0.14),
    inset 0 -1px 0 rgba(28, 22, 19, 0.16);
}

#complete-work .complete-work-divider-line:last-of-type {
  display: none;
}

#field-recordings .complete-work-divider-line {
  display: block;
  flex: none;
  width: min(100%, 980px);
  height: 8px;
  background:
    linear-gradient(
      180deg,
      transparent 0 1px,
      rgba(196, 154, 36, 0.9) 1px 3px,
      transparent 3px 5px,
      rgba(24, 28, 38, 0.78) 5px 6px,
      transparent 6px 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(244, 239, 231, 0.12) 0 9px,
      rgba(170, 130, 18, 0.03) 9px 17px,
      rgba(24, 28, 38, 0.06) 17px 21px
    );
  opacity: 0.94;
  box-shadow:
    inset 0 1px 0 rgba(244, 239, 231, 0.14),
    inset 0 -1px 0 rgba(28, 22, 19, 0.16);
}

#field-recordings .complete-work-divider-line:last-of-type {
  background:
    linear-gradient(
      180deg,
      transparent 0 2px,
      rgba(24, 28, 38, 0.78) 2px 3px,
      transparent 3px 5px,
      rgba(196, 154, 36, 0.9) 5px 7px,
      transparent 7px 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(244, 239, 231, 0.12) 0 9px,
      rgba(170, 130, 18, 0.03) 9px 17px,
      rgba(24, 28, 38, 0.06) 17px 21px
    );
}

.section-separator-line {
  width: 100%;
  margin: 0 0 0.7rem;
  border-top: 1px solid rgba(22, 21, 19, 0.32);
}

.masthead {
  margin: 0 -16px 34px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.masthead-dek {
  width: min(1040px, 96%);
  margin: 14px auto 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.top-mini-cta-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 0.08rem;
  width: fit-content;
  max-width: 100%;
}

.top-mini-cta-button {
  --mini-cta-ink: #173a5b;
  --mini-cta-hover-ink: #12314d;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 158px;
  min-height: 48px;
  padding: 0.18rem 0.5rem 0.16rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mini-cta-ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: transform 180ms ease-out;
}

.top-mini-cta-button::before {
  content: none;
}

.top-mini-cta-button--share {
  --mini-cta-ink: #173a5b;
  --mini-cta-hover-ink: #13324f;
}

.top-mini-cta-button--steal {
  --mini-cta-ink: #7c251d;
  --mini-cta-hover-ink: #691f18;
}

.top-mini-cta-button .top-cta-button-title,
.top-mini-cta-button .top-cta-button-subtitle {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: var(--mini-cta-ink);
  transition: color 180ms ease-out;
}

.top-mini-cta-button .top-cta-button-title {
  font-size: 0.92rem;
  letter-spacing: 0.17em;
}

.top-mini-cta-button .top-cta-button-subtitle {
  position: relative;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  padding-top: 0.11rem;
}

.top-mini-cta-button .top-cta-button-subtitle::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 50%;
  width: 86%;
  height: 1px;
  background: var(--mini-cta-ink);
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  opacity: 0.92;
  transition:
    background-color 180ms ease-out,
    transform 180ms ease-out;
}

.top-mini-cta-button:hover,
.top-mini-cta-button:focus-visible {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: none;
}

.top-mini-cta-button:hover .top-cta-button-title,
.top-mini-cta-button:hover .top-cta-button-subtitle,
.top-mini-cta-button:focus-visible .top-cta-button-title,
.top-mini-cta-button:focus-visible .top-cta-button-subtitle {
  color: var(--mini-cta-hover-ink);
}

.top-mini-cta-button:hover .top-cta-button-subtitle::before,
.top-mini-cta-button:focus-visible .top-cta-button-subtitle::before {
  background: var(--mini-cta-hover-ink);
  transform: translateX(-50%) scaleX(1.14);
}

.top-mini-cta-button:active {
  transform: translateY(1px);
}

.top-mini-cta-button:focus-visible {
  outline: 2px solid rgba(244, 239, 231, 0.95);
  outline-offset: 2px;
}

.top-cta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0.9rem auto 1.6rem;
}

.top-cta-button {
  --cta-ink: #173a5b;
  position: relative;
  display: grid;
  grid-template-columns: 92px 1px minmax(0, 1fr);
  align-items: stretch;
  width: min(100%, 362px);
  min-height: 92px;
  padding: 0;
  border: 3px solid currentColor;
  border-radius: 24px;
  background: #f8f2e5;
  color: var(--cta-ink);
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}

.top-cta-button--share {
  --cta-ink: #173a5b;
}

.top-cta-button--steal {
  --cta-ink: #7c251d;
}

.top-cta-button-frame {
  position: absolute;
  inset: 8px;
  border: 3px solid currentColor;
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.98;
}

.top-cta-button-icon,
.top-cta-button-copy {
  position: relative;
  z-index: 1;
}

.top-cta-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.55rem 0.8rem 0.8rem;
}

.top-cta-button-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.top-cta-button-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  margin: 14px 0;
  background: currentColor;
  opacity: 0.95;
}

.top-cta-button-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.8rem 1.2rem 0.72rem 1rem;
  text-align: center;
}

.top-cta-button-title,
.top-cta-button-subtitle {
  display: block;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.18em;
}

.top-cta-button-title {
  font-size: 2.25rem;
}

.top-cta-button-subtitle {
  font-size: 1.1rem;
}

.top-cta-button-rule {
  position: relative;
  width: min(100%, 190px);
  height: 18px;
  display: block;
}

.top-cta-button-rule::before,
.top-cta-button-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 16px);
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.top-cta-button-rule::before {
  left: 0;
}

.top-cta-button-rule::after {
  right: 0;
}

.top-cta-button-rule {
  background:
    radial-gradient(circle at center, currentColor 0 5px, transparent 5.5px);
  background-repeat: no-repeat;
  background-position: center;
}

.top-cta-button:hover,
.top-cta-button:focus-visible {
  background: #f5ecdc;
}

.top-cta-button:focus-visible {
  outline: 2px solid rgba(244, 239, 231, 0.95);
  outline-offset: 3px;
}

.top-cta-button.is-confirmed .top-cta-button-title {
  font-size: 1.48rem;
  letter-spacing: 0.12em;
}

.top-cta-button.is-confirmed .top-cta-button-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.top-cta-button.is-confirmed .top-cta-button-rule {
  opacity: 0.55;
}

.top-cta-status {
  min-height: 0;
  margin: 0 0 0.28rem;
  text-align: center;
  color: rgba(120, 24, 20, 0.92);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-cta-status:empty {
  display: none;
}

@media (max-width: 820px) {
  .top-cta-bar {
    gap: 0.8rem;
    margin: 0.8rem auto 1.4rem;
  }

  .top-cta-button {
    grid-template-columns: 82px 1px minmax(0, 1fr);
    width: min(100%, 332px);
    min-height: 84px;
    border-radius: 22px;
  }

  .top-cta-button-frame {
    inset: 7px;
    border-radius: 14px;
  }

  .top-cta-button-icon svg {
    width: 49px;
    height: 49px;
  }

  .top-cta-button-title {
    font-size: 2rem;
  }

  .top-cta-button-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .top-mini-cta-bar {
    gap: 0.38rem;
    margin: 0 auto 0.05rem;
  }

  .top-mini-cta-button {
    width: 123px;
    min-height: 42px;
    padding: 0.16rem 0.28rem 0.12rem;
  }

  .top-mini-cta-button .top-cta-button-title {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .top-mini-cta-button .top-cta-button-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.13em;
    padding-top: 0.1rem;
  }
  .top-cta-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }

  .top-cta-button {
    grid-template-columns: 76px 1px minmax(0, 1fr);
    width: min(100%, 310px);
    min-height: 78px;
    border-radius: 20px;
  }

  .top-cta-button-frame {
    inset: 6px;
    border-width: 2px;
  }

  .top-cta-button-icon {
    padding-left: 0.72rem;
  }

  .top-cta-button-icon svg {
    width: 44px;
    height: 44px;
  }

  .top-cta-button-copy {
    padding: 0.72rem 1rem 0.66rem 0.82rem;
    gap: 0.28rem;
  }

  .top-cta-button-title {
    font-size: 1.78rem;
  }

  .top-cta-button-subtitle {
    font-size: 0.94rem;
    letter-spacing: 0.16em;
  }

  .top-cta-button-rule {
    width: min(100%, 156px);
    height: 16px;
  }
}

.share-row-top {
  width: min(1240px, calc(100% - 1.5rem));
  margin: 0.7rem auto 0.18rem;
}

.share-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.28rem 0.72rem 0.26rem;
  border: 3px double #161513;
  outline: 1px solid rgba(120, 31, 27, 0.42);
  outline-offset: 2px;
  background: #161513;
  color: #f4efe7;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.share-link-top {
  min-height: 36px;
  padding: 0.34rem 1.08rem 0.3rem;
  position: relative;
  background: var(--panel);
  color: rgba(120, 24, 20, 0.92);
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-shadow: 0 0 0.01em rgba(88, 18, 15, 0.12);
  box-shadow: none;
}

.share-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #f4efe7;
}

.share-link-top:hover,
.share-link-top:focus-visible {
  background: var(--accent);
  background-image: none;
  -webkit-text-fill-color: #f4efe7;
  color: #f4efe7;
  box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.74);
}

.share-menu {
  position: relative;
}

.share-menu-toggle {
  cursor: pointer;
}

.share-menu-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 168px;
  padding: 0.35rem;
  border: 3px double #161513;
  outline: 1px solid rgba(120, 31, 27, 0.42);
  outline-offset: 2px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(22, 21, 19, 0.16);
}

.share-menu-panel[hidden] {
  display: none;
}

.share-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border: 0;
  background: transparent;
  color: #161513;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.share-menu-item:hover {
  background: rgba(120, 31, 27, 0.1);
}

.longform-shell {
  display: block;
}

.longform-main {
  min-width: 0;
}

.chapter-sidebar {
  display: none;
}

h2 {
  font-family: "Courier Prime", "Courier New", monospace;
  font-weight: 700;
}

.title-image {
  display: block;
  width: 100%;
  height: auto;
  border: 3px double var(--accent);
  background: rgba(247, 244, 238, 0.96);
}

.essay {
  font-size: 1.04rem;
  line-height: 1.88;
}

.chapter {
  margin-bottom: 44px;
}

.chapter::after {
  content: "";
  display: table;
  clear: both;
}

.chapter h2 {
  margin: 0 0 16px;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.115em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  text-wrap: balance;
}

.liner-note-chapter .chapter-linerhead,
.boxed-chapter .chapter-linerhead {
  display: grid;
  grid-template-columns: minmax(84px, 0.85fr) minmax(0, 2.4fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 1.1rem;
  padding: 6px;
  border: 3px double rgba(30, 30, 28, 0.78);
  background: rgba(247, 244, 238, 0.96);
}

.liner-note-chapter .chapter-linerhead-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  color: var(--accent);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(2.65rem, 5vw, 3.8rem);
  font-weight: 950;
  -webkit-text-stroke: 0.02em currentColor;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

.liner-note-chapter .chapter-linerhead-titlebox,
.boxed-chapter .chapter-linerhead-titlebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 6px 10px 7px;
  background: #161513;
  color: #f4efe7;
}

.liner-note-chapter .chapter-linerhead h2,
.boxed-chapter .chapter-linerhead h2 {
  margin: 0;
  padding: 0;
  border: 0;
  color: #f4efe7;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.68rem, 3.8vw, 2.32rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-wrap: balance;
}

.boxed-chapter .chapter-linerhead {
  display: block;
}

.boxed-chapter .chapter-linerhead-titlebox {
  padding: 6px 10px 7px;
}

.boxed-chapter .chapter-linerhead h2 {
  font-size: clamp(1.54rem, 3.2vw, 1.98rem);
}

#storymap .chapter-linerhead-titlebox {
  background: linear-gradient(180deg, #3a5f92 0%, #29466d 100%);
}

#third-ward .chapter-linerhead-titlebox {
  background: linear-gradient(180deg, #9f3a33 0%, #702621 100%);
}

#arrest-ledgers .chapter-linerhead-titlebox {
  background: linear-gradient(180deg, #666762 0%, #43443f 100%);
}

#field-notes .chapter-linerhead-titlebox,
#field-photographs .chapter-linerhead-titlebox {
  background: linear-gradient(180deg, #c39b4a 0%, #8c6d31 100%);
}

#works-cited .chapter-linerhead-titlebox {
  padding: 9px 20px 10px;
  background: linear-gradient(180deg, #2a2926 0%, #161513 100%);
  color: var(--paper);
}

#works-cited .chapter-linerhead h2 {
  color: var(--paper);
  letter-spacing: 0.1em;
  word-spacing: 0.32em;
  line-height: 1;
}

.source-subheader {
  margin: -0.2rem 0 0.9rem;
  padding: 6px;
  border: 3px double rgba(30, 30, 28, 0.78);
  background: rgba(247, 244, 238, 0.96);
  text-align: center;
}

.source-subheader-label {
  display: block;
  margin: 0;
  width: 100%;
  padding: 0.34rem 0.9rem 0.3rem;
  background: #161513;
  color: var(--paper);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.keep-together {
  white-space: nowrap;
}

.lowercase-suffix {
  text-transform: lowercase;
}

.vault-divider {
  position: relative;
  margin: 4rem 0 1.35rem;
  padding-top: 0;
}

.vault-divider::before {
  content: none;
  display: none;
}

.vault-divider .chapter-linerhead {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vault-divider .chapter-linerhead-titlebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.34rem 0.9rem 0.1rem;
  background: transparent;
  border: 0;
}

.vault-divider .chapter-linerhead-titlebox::before {
  content: "";
  display: block;
  width: min(100%, 980px);
  height: 9px;
  margin: 0 0 1.2rem;
  background:
    linear-gradient(
      180deg,
      transparent 0 1px,
      rgba(24, 28, 38, 0.78) 1px 3px,
      transparent 3px 5px,
      rgba(120, 24, 20, 0.88) 5px 7px,
      transparent 7px 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(120, 24, 20, 0.18) 0 22px,
      rgba(24, 28, 38, 0.08) 22px 44px
    );
  opacity: 0.92;
  box-shadow: 0 0 0.6px rgba(24, 28, 38, 0.16);
}

.vault-divider .chapter-linerhead h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  margin: 0;
  padding: 0;
  border-top: 0;
  padding-top: 0;
  width: 100%;
  font-size: clamp(1.36rem, 2.96vw, 1.88rem);
  line-height: 0.92;
  letter-spacing: 0.2em;
  text-align: center;
  color: rgba(120, 24, 20, 0.92);
  background-image: var(--distressed-red-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: none;
  text-shadow: 0 0 0.01em rgba(88, 18, 15, 0.12);
}

.vault-divider .chapter-linerhead h2::before,
.vault-divider .chapter-linerhead h2::after {
  content: none;
}

.vault-divider-subline {
  display: inline;
  margin-top: 0;
  font-size: 1em;
  letter-spacing: inherit;
}

.vault-divider-topline {
  display: block;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
  font-size: 1.06em;
  letter-spacing: 0.22em;
}

.vault-divider-kicker {
  display: block;
  margin: 0 auto;
  width: 100%;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  text-align: center;
}

.vault-divider-kicker-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  color: rgba(120, 24, 20, 0.92);
  background-image: var(--distressed-red-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transform: translateY(-9px);
  text-shadow: 0 0 0.01em rgba(88, 18, 15, 0.1);
  opacity: 1;
  filter: none;
}

.vault-divider-kicker-text > span {
  display: inline-block;
  color: inherit;
}

.vault-divider-kicker-text::before {
  content: "";
  display: block;
  width: calc(100% - 0.9rem);
  height: 1px;
  margin: 0 0 0.42rem;
  background: rgba(120, 24, 20, 0.62);
  opacity: 1;
}

#nonplace .chapter-linerhead,
#marriage .chapter-linerhead,
#titanic .chapter-linerhead,
#victor .chapter-linerhead,
#mystery .chapter-linerhead,
#blind-willie .chapter-linerhead,
#black-friday .chapter-linerhead {
  grid-template-columns: minmax(74px, 0.72fr) minmax(0, 2.58fr);
}

#wreckage .chapter-linerhead {
  grid-template-columns: minmax(70px, 0.68fr) minmax(0, 2.62fr);
}

#marriage .chapter-linerhead,
#victor .chapter-linerhead,
#mystery .chapter-linerhead {
  grid-template-columns: minmax(64px, 0.6fr) minmax(0, 2.7fr);
}

#marriage .chapter-linerhead-number,
#victor .chapter-linerhead-number,
#mystery .chapter-linerhead-number {
  letter-spacing: 0.04em;
}

#bobby-dunbar .chapter-linerhead,
#widow .chapter-linerhead,
#the-city .chapter-linerhead,
#last-thoughts .chapter-linerhead {
  grid-template-columns: minmax(66px, 0.62fr) minmax(0, 2.7fr);
}

#titanic .chapter-linerhead-number,
#widow .chapter-linerhead-number,
#zulu .chapter-linerhead-number,
#coal-fire .chapter-linerhead-number,
#not-dark-yet .chapter-linerhead-number,
#victor .chapter-linerhead-number,
#james-alley .chapter-linerhead-number,
#mystery .chapter-linerhead-number,
#blind-willie .chapter-linerhead-number,
#wreckage .chapter-linerhead-number,
#black-friday .chapter-linerhead-number,
#aftermath .chapter-linerhead-number,
#the-city .chapter-linerhead-number,
#last-thoughts .chapter-linerhead-number,
#afterwords .chapter-linerhead-number {
  letter-spacing: 0.12em;
}

.chapter p {
  margin: 0 0 18px;
}

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

.chapter-intro-break {
  margin-bottom: 0.15rem;
}

.chapter-intro-followup {
  margin-top: -0.1rem;
}

.dedication {
  margin: -0.7rem 0 2rem;
  text-align: center;
}

.dedication-image {
  display: block;
  width: min(431px, 66vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.front-quote {
  margin: 0 0 2.3rem;
  text-align: center;
}

.front-quote blockquote {
  margin: 0 auto;
  padding: 0;
  border: 0;
  max-width: min(720px, 88vw);
}

.front-quote p {
  margin: 0;
  font-family: "Crimson Text", Georgia, serif;
  font-size: clamp(0.96rem, 1.7vw, 1.18rem);
  font-style: italic;
  line-height: 1.3;
  color: rgba(25, 22, 20, 0.9);
  text-wrap: balance;
}

.front-quote p + p {
  margin-top: 0.12rem;
}

.front-quote footer {
  margin-top: 0.65rem;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(25, 22, 20, 0.8);
}

.wrap-image {
  width: min(280px, 42%);
  height: auto;
  margin-bottom: 0.8rem;
  border-radius: 2px;
  border: 3px double var(--accent);
  padding: 6px;
  background: rgba(247, 244, 238, 0.92);
}

.wrap-image-large {
  width: min(560px, 72%);
}

.essay .wrap-image,
.popup-image {
  cursor: zoom-in;
}

.chapter-inline-document {
  display: block;
  width: min(720px, 100%);
  max-width: 100%;
  height: auto;
  margin: 1rem auto 0;
  border-radius: 2px;
  border: 3px double var(--accent);
  padding: 6px;
  background: rgba(247, 244, 238, 0.92);
}

.aftermath-image-stack {
  float: left;
  width: min(315px, 40%);
  margin: -0.2rem 1.4rem 0.9rem 0;
}

.chapter-inline-document--stacked {
  width: 100%;
  margin: 0.45rem 0 0;
}

.darktown-clippings {
  width: 480px;
  max-width: 58%;
  background: transparent;
  margin-top: -0.15rem;
}

.darktown-ledger-image {
  display: block;
  float: none;
  width: 100%;
  margin: 1.25rem auto 0;
}

.bobby-dunbar-image {
  width: min(420px, 52%);
  background: transparent;
}

.marriage-record-image {
  width: min(250px, 34%);
  background: transparent;
}

.richard-jr-birth-record {
  width: min(345px, 44%);
  background: transparent;
}

.zulu-clippings-image {
  width: min(390px, 48%);
  background: transparent;
}

.fisk-school-image {
  width: min(420px, 50%);
  background: transparent;
}

.victor-ad-image {
  width: min(320px, 41%);
}

.victor-ad-secondary {
  margin-top: -0.15rem;
}

.james-alley-image {
  width: min(370px, 46%);
}

.great-northern-images {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.9rem;
  margin-top: 1rem;
}

.great-northern-map,
.great-northern-schedule {
  display: block;
  width: min(270px, 33%);
  height: auto;
  max-width: none;
  margin-top: 1.4rem;
}

.black-friday-certificate {
  width: min(300px, 40%);
  margin-top: -0.1rem;
}

.aftermath-ledger-image {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.wreckage-arrests-image {
  width: min(380px, 48%);
}

.afterwords-mystery-train {
  width: min(265px, 34%);
  margin-top: 0.05rem;
}

.victor-ad-bottom-left {
  width: min(200px, 24%);
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
}

.gyp-the-blood-image {
  width: min(420px, 50%);
  background: transparent;
  margin-top: 0.4rem;
}

.coal-fire-clip {
  width: min(120px, 14%);
}

.coal-fire-cluster {
  float: right;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.2rem 0 0.9rem 1.2rem;
}

.coal-fire-cluster .coal-fire-clip {
  width: 120px;
  max-width: 120px;
  margin: 0;
}

.wrap-right {
  float: right;
  margin-left: 1.3rem;
}

.wrap-left {
  float: left;
  margin-right: 1.3rem;
}

.storymap-card {
  margin-top: 0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.storymap-card p {
  margin: 0 0 0.9rem;
}

.storymap-card p:last-child {
  margin-bottom: 0;
}

.storymap-preview-link {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0;
  border: 3px double var(--accent);
  background: transparent;
  text-decoration: none;
  overflow: hidden;
  line-height: 0;
  vertical-align: top;
}

.video-preview-link {
  position: relative;
  margin-bottom: 0;
  padding: 10px 10px 16px;
  background: #161311;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(22, 21, 19, 0.18);
}

.video-preview-link::before {
  content: "";
  position: absolute;
  inset: 10px 10px 16px;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.1) 0%, rgba(10, 9, 8, 0.03) 28%, rgba(10, 9, 8, 0.32) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 20%, rgba(255, 255, 255, 0.24) 20% 100%);
  background-size: auto, calc(100% - 34px) 4px;
  background-position: center center, center calc(100% - 14px);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.video-preview-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 59px;
  height: 59px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.16) 0 10%, rgba(255, 255, 255, 0) 11% 100%),
    linear-gradient(180deg, rgba(62, 60, 57, 0.52) 0 46%, rgba(14, 13, 12, 0.92) 47% 100%),
    #171614;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='26,19 81,50 26,81' fill='rgba(255,255,255,0.78)'/%3E%3C/svg%3E");
  background-position: center center, center center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 59px 59px, auto, auto;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 6px 14px rgba(22, 21, 19, 0.22);
  pointer-events: none;
  z-index: 2;
  display: none;
}

.video-preview-link .storymap-preview-image {
  transition: transform 0.18s ease, filter 0.18s ease;
  display: block;
  position: relative;
  z-index: 0;
  transform: none;
}

.video-preview-link .storymap-preview-image,
.video-preview-link .third-ward-preview-image,
.video-preview-link .nopd-video-preview-image {
  position: relative;
  filter: saturate(0.94) contrast(1.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(22, 21, 19, 0.82);
}

.video-preview-link:hover::after,
.video-preview-link:focus-visible::after {
  transform: translate(-50%, -50%) scale(1.04);
}

.video-preview-link:hover .storymap-preview-image,
.video-preview-link:focus-visible .storymap-preview-image {
  transform: none;
}

.video-preview-link::before,
.video-preview-link::after {
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.video-preview-link > img {
  position: relative;
  z-index: 0;
}

.video-preview-link::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 22%, rgba(255, 255, 255, 0.36) 22% 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 2;
}

.video-preview-link::after {
  content: "";
}

.storymap-preview-panel {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto 0;
  padding: 4px 4px 8px;
  background: #161311;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(22, 21, 19, 0.18);
  line-height: 0;
}

.storymap-preview-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.storymap-preview-panel-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #efe8db;
}

.third-ward-preview-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.third-ward-video-preview-link {
  display: inline-block;
  width: min(100%, 760px);
  max-width: 100%;
  padding: 4px 4px 8px;
}

.third-ward-video-preview-link::before {
  display: none;
}

.nopd-video-preview-link {
  margin: 0.7rem auto 0;
}

.nopd-video-preview-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.third-ward-kicker {
  margin: -0.1rem 0 0;
  color: rgba(245, 239, 228, 0.9);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.1;
}

@media (min-width: 1081px) {
  #third-ward .chapter-linerhead h2 {
    line-height: 1.2;
    font-size: clamp(1.42rem, 2.45vw, 1.86rem);
    letter-spacing: 0.1em;
    text-wrap: normal;
    white-space: nowrap;
  }

  #third-ward .keep-together {
    white-space: nowrap;
  }

  #nonplace .chapter-linerhead {
    grid-template-columns: minmax(38px, 0.3fr) minmax(0, 2.98fr);
    gap: 7px;
  }

  #nonplace .chapter-linerhead-titlebox {
    padding: 13px 14px 14px;
    transform: translateX(2px);
  }

  #nonplace .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
    font-size: clamp(2rem, 3.05vw, 2.48rem);
    letter-spacing: 0.045em;
  }

  #nonplace .chapter-linerhead-number {
    width: 100%;
    text-align: center;
    transform: translateX(1px);
  }

  #great-northern .chapter-linerhead {
    grid-template-columns: minmax(58px, 0.52fr) minmax(0, 2.78fr);
  }

  #great-northern .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
  }

  #marriage .chapter-linerhead {
    grid-template-columns: minmax(58px, 0.52fr) minmax(0, 2.78fr);
  }

  #marriage .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
  }

  #wreckage .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
  }

  #marriage .chapter-linerhead,
  #victor .chapter-linerhead,
  #mystery .chapter-linerhead,
  #wreckage .chapter-linerhead {
    grid-template-columns: minmax(58px, 0.52fr) minmax(0, 2.78fr);
  }

  #marriage .chapter-linerhead {
    grid-template-columns: minmax(46px, 0.38fr) minmax(0, 2.92fr);
  }

  #marriage .chapter-linerhead-titlebox {
    padding: 13px 16px 14px;
  }

  #marriage .chapter-linerhead h2 {
    letter-spacing: 0.095em;
  }

  #mystery .chapter-linerhead {
    grid-template-columns: minmax(46px, 0.38fr) minmax(0, 2.92fr);
  }

  #mystery .chapter-linerhead-titlebox {
    padding: 13px 16px 14px;
  }

  #mystery .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
    letter-spacing: 0.095em;
  }

  #titanic .chapter-linerhead {
    grid-template-columns: minmax(28px, 0.22fr) minmax(0, 3.08fr);
    gap: 10px;
  }

  #titanic .chapter-linerhead-titlebox {
    padding: 13px 19px 14px;
  }

  #titanic .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
    letter-spacing: 0.082em;
  }

  #titanic .chapter-linerhead-number {
    letter-spacing: 0.035em;
    justify-self: stretch;
    width: 100%;
    text-align: center;
    transform: translateX(2px);
  }

  #blind-willie .chapter-linerhead {
    grid-template-columns: minmax(42px, 0.34fr) minmax(0, 2.96fr);
    gap: 12px;
  }

  #blind-willie .chapter-linerhead-titlebox {
    padding: 13px 17px 14px;
  }

  #blind-willie .chapter-linerhead h2 {
    text-wrap: normal;
    white-space: nowrap;
    letter-spacing: 0.09em;
  }

  #bobby-dunbar .chapter-linerhead,
  #titanic .chapter-linerhead,
  #blind-willie .chapter-linerhead,
  #last-thoughts .chapter-linerhead {
    grid-template-columns: minmax(54px, 0.46fr) minmax(0, 2.84fr);
  }

}

.archive-ledgers-kicker {
  margin: -0.1rem 0 0;
  color: rgba(245, 239, 228, 0.9);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.1;
}

.third-ward-preview-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 760px);
  margin: 0 auto 1rem;
}

.third-ward-preview-tile {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  object-position: center center;
  border: 3px double var(--accent);
  background: #e9e2d4;
}

.third-ward-earth-tile {
  object-fit: cover;
  padding: 0;
}

.third-ward-video-link {
  margin: 0.2rem 0 0;
  text-align: center;
}

.storymap-card p a {
  display: inline-block;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(120, 31, 27, 0.28);
  background: rgba(247, 244, 238, 0.8);
  color: var(--accent);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.storymap-card p a:hover {
  background: rgba(247, 244, 238, 1);
}

.storymap-card .storymap-action-link a,
.storymap-card .third-ward-video-link a,
.archive-ledger-slideshow-link a {
  display: inline-block;
  padding: 0.62rem 1.35rem 0.58rem;
  border: 3px double rgba(255, 255, 255, 0.24);
  outline: 1px solid rgba(120, 31, 27, 0.72);
  outline-offset: 4px;
  background: #8d2a24;
  color: #ffffff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(23, 20, 17, 0.08);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.storymap-card .storymap-action-link a:hover,
.storymap-card .storymap-action-link a:focus-visible,
.storymap-card .third-ward-video-link a:hover,
.storymap-card .third-ward-video-link a:focus-visible,
.archive-ledger-slideshow-link a:hover,
.archive-ledger-slideshow-link a:focus-visible {
  background: #171411;
  color: #f5efe4;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(23, 20, 17, 0.12);
}

.video-action-bar {
  display: grid;
  grid-template-columns: minmax(0, 2.7fr) minmax(0, 1fr);
  width: min(100%, 760px);
  margin: -6px auto 0;
  border: 3px double rgba(255, 255, 255, 0.24);
  outline: 1px solid rgba(23, 20, 17, 0.88);
  outline-offset: 0;
  background: #171411;
  box-shadow: 0 8px 16px rgba(23, 20, 17, 0.08);
  overflow: hidden;
}

.video-action-watch,
.video-action-share {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0.66rem 0.95rem 0.62rem;
  background: transparent;
  color: var(--paper);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 0;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.video-action-watch {
  justify-content: flex-start;
  white-space: nowrap;
}

.video-action-watch--single-line {
  font-size: 0.9rem;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.video-action-share {
  justify-content: center;
  border-left: 1px solid rgba(245, 239, 228, 0.72);
  cursor: pointer;
}

.video-action-watch:hover,
.video-action-watch:focus-visible,
.video-action-share:hover,
.video-action-share:focus-visible,
.video-action-share.is-copied {
  background: #8d2a24;
  color: var(--paper);
  text-decoration: none;
  transform: scaleX(1.015);
  z-index: 2;
  box-shadow: 0 6px 14px rgba(120, 31, 27, 0.18);
}

.video-action-watch:hover,
.video-action-watch:focus-visible {
  transform-origin: left center;
}

.video-action-share:hover,
.video-action-share:focus-visible,
.video-action-share.is-copied {
  transform-origin: right center;
}

.storymap-preview-link:hover {
  background-color: transparent;
}

.storymap-preview-link:hover .storymap-preview-image {
  transform: scale(1.01);
}

.storymap-note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}

.storymap-note a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.storymap-note a:hover {
  color: var(--accent);
}

.archive-ledgers-section .chapter-linerhead {
  margin-bottom: 1rem;
}

.archive-ledger-viewer {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.archive-ledger-frame {
  margin: 0 auto;
  padding: 10px;
  border: 3px double rgba(30, 30, 28, 0.78);
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 10px 24px rgba(30, 30, 28, 0.08);
}

.archive-ledger-image {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper);
  cursor: zoom-in;
}

.archive-ledger-meta {
  margin: 0.95rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archive-ledger-counter {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-ledger-title {
  margin: 0 0 0.28rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
}

.archive-ledger-caption,
.archive-ledger-source {
  display: block;
  width: calc(100% - 24px);
  max-width: 620px;
  margin: 0.2rem auto 0;
  color: var(--muted);
  text-align: center;
  text-wrap: balance;
}

.archive-ledger-caption {
  font-size: 0.94rem;
  line-height: 1.5;
}

.archive-ledger-source {
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.45;
}

.archive-ledger-controls {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.95rem;
  margin-bottom: 1.6rem;
}

.archive-ledger-slideshow-link {
  margin: 0.2rem auto 0;
  text-align: center;
}

.archive-ledger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.45rem 0.85rem;
  border: 1px solid #8d2a24;
  background: #171411;
  color: var(--paper);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.archive-ledger-button:hover:not(:disabled) {
  background: #8d2a24;
  color: var(--paper);
}

.archive-ledger-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.end-card-block {
  margin: 0 0 0.85rem;
  text-align: center;
}

.section-separator-line--after-author-card {
  margin: 0 0 3.8rem;
}

.section-separator-line--after-author-card + .vault-divider {
  margin-top: 0;
}

.end-card-wrap {
  position: relative;
  display: inline-block;
  width: min(840px, 74.4%);
}

.end-card-image {
  display: block;
  width: 100%;
  height: auto;
  border: 3px double var(--accent);
  background: rgba(247, 244, 238, 0.96);
}

.end-card-email-link {
  position: absolute;
  left: 24.6%;
  top: 71.6%;
  width: 51.2%;
  height: 15.2%;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  z-index: 2;
  cursor: pointer;
}

.end-card-email-link::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 14.5%;
  bottom: 3.5%;
  height: 1px;
  background: rgba(245, 239, 228, 0.96);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.chapter#the-end p {
  font-style: italic;
}

.chapter#coal-fire p:first-of-type,
.chapter#aftermath p,
.chapter#black-friday p:first-of-type {
  font-style: italic;
}

.references {
  margin-top: 56px;
}

.reference-block {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
  font-size: 0.79rem;
  line-height: 1.72;
  color: var(--muted);
}

.field-notes-section {
  margin-top: 52px;
}

.field-notes-shell {
  display: grid;
  gap: 1rem;
}

.field-notes-notebook {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.55rem;
  border: 1px solid rgba(30, 30, 28, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 244, 238, 0.92)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(120, 31, 27, 0.07) 31px,
      rgba(120, 31, 27, 0.07) 32px
    );
  box-shadow: 0 16px 36px rgba(26, 21, 17, 0.08);
}

.field-notes-pagecounter {
  justify-self: center;
  color: var(--muted);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-notes-page {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  max-width: min(100%, 760px);
  justify-self: center;
  min-height: 500px;
  padding: 0.2rem;
  border: 3px double rgba(34, 31, 28, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 244, 238, 0.94)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(120, 31, 27, 0.07) 31px,
      rgba(120, 31, 27, 0.07) 32px
    );
  overflow: auto;
  box-shadow:
    inset 16px 0 24px rgba(35, 30, 26, 0.04),
    0 10px 24px rgba(26, 21, 17, 0.08);
  transform-origin: center center;
}

.field-notes-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(105, 84, 61, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 30%);
}

.field-notes-page.is-flipping-next {
  animation: field-notes-flip-next 280ms ease;
}

.field-notes-page.is-flipping-prev {
  animation: field-notes-flip-prev 280ms ease;
}

@keyframes field-notes-flip-next {
  0% { transform: perspective(1200px) rotateY(0deg); opacity: 1; }
  50% { transform: perspective(1200px) rotateY(-7deg); opacity: 0.82; }
  100% { transform: perspective(1200px) rotateY(0deg); opacity: 1; }
}

@keyframes field-notes-flip-prev {
  0% { transform: perspective(1200px) rotateY(0deg); opacity: 1; }
  50% { transform: perspective(1200px) rotateY(7deg); opacity: 0.82; }
  100% { transform: perspective(1200px) rotateY(0deg); opacity: 1; }
}

.field-notes-image {
  display: block;
  max-width: 100%;
  max-height: 66vh;
  width: auto;
  height: auto;
  background: #fffdfa;
  box-shadow: 0 12px 28px rgba(27, 21, 18, 0.16);
  transform-origin: center center;
  transition: transform 120ms ease;
}

.field-notes-entrymeta {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.field-notes-entrytitle,
.field-notes-entrydatesource,
.field-notes-entrycaption,
.field-notes-entrysource {
  margin: 0;
}

.field-notes-entrytitle {
  color: var(--ink);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-notes-entrydatesource {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.field-notes-entrycaption,
.field-notes-entrysource {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.58;
}

.field-notes-entrysource {
  color: var(--muted);
}

.field-notes-controls {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.field-notes-button {
  padding: 0.4rem 0.62rem;
  border: 1px solid #8d2a24;
  background: #171411;
  color: var(--paper);
  cursor: pointer;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-notes-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.field-notes-button:hover:not(:disabled),
.field-notes-button:focus-visible:not(:disabled) {
  background: #8d2a24;
  color: var(--paper);
}

.field-photographs-section {
  margin-top: 52px;
}

.field-photographs-shell {
  display: grid;
  gap: 1rem;
}

.field-photographs-viewer {
  position: relative;
  isolation: isolate;
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin: 0 auto;
  padding: 0.55rem;
  border: 1px solid rgba(30, 30, 28, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(247, 244, 238, 0.92)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(120, 31, 27, 0.07) 31px,
      rgba(120, 31, 27, 0.07) 32px
    );
  box-shadow: 0 16px 36px rgba(26, 21, 17, 0.08);
}

.field-photographs-counter {
  color: var(--muted);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-photographs-stage {
  position: relative;
  isolation: isolate;
  z-index: 0;
  width: fit-content;
  max-width: min(100%, 760px);
  display: grid;
  place-items: center;
  justify-self: center;
  min-height: 0;
  padding: 0.14rem;
  border: 3px double rgba(34, 31, 28, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 244, 238, 0.94)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(120, 31, 27, 0.07) 31px,
      rgba(120, 31, 27, 0.07) 32px
    );
  overflow: hidden;
  box-shadow:
    inset 16px 0 24px rgba(35, 30, 26, 0.04),
    0 10px 24px rgba(26, 21, 17, 0.08);
  touch-action: pan-y;
}

.field-photographs-polaroid {
  --polaroid-tilt: -1.2deg;
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
}

.field-photographs-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: contain;
  background: #f7f2e7;
  border: 0;
  box-shadow: none;
  cursor: zoom-in;
}

.field-photographs-caption {
  margin: 0.75rem 0 0;
  color: rgba(55, 45, 35, 0.85);
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.field-photographs-entrymeta {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.field-photographs-entrytitle {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-photographs-polaroid.is-cover {
  width: min(100%, 520px);
  padding: 0;
}

.field-photographs-polaroid.is-cover .field-photographs-image {
  background: #fffdfa;
}

.field-photographs-caption.is-hidden {
  display: none;
}

.field-photographs-controls {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.field-photographs-button {
  padding: 0.44rem 0.7rem;
  border: 1px solid #8d2a24;
  background: #171411;
  color: var(--paper);
  cursor: pointer;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-photographs-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.field-photographs-button:hover:not(:disabled),
.field-photographs-button:focus-visible:not(:disabled) {
  background: #8d2a24;
  color: var(--paper);
}

.single-image-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  background: rgba(20, 18, 16, 0.88);
}

.single-image-popup[hidden] {
  display: none;
}

.single-image-popup-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.single-image-popup-frame {
  overflow: auto;
  max-width: min(96vw, 1400px);
  max-height: 90vh;
}

.single-image-popup-image {
  display: block;
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border: 3px double var(--paper);
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform-origin: center center;
  transition: transform 140ms ease;
}

.single-image-popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #f7f4ee;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.single-image-popup-nav,
.single-image-popup-zoom {
  border: 1px solid #8d2a24;
  background: #171411;
  color: var(--paper);
  cursor: pointer;
  font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-image-popup-nav {
  min-width: 52px;
  padding: 0.6rem 0.7rem;
}

.single-image-popup-nav:hover,
.single-image-popup-nav:focus-visible,
.single-image-popup-zoom:hover,
.single-image-popup-zoom:focus-visible {
  background: #8d2a24;
  color: var(--paper);
}

.single-image-popup-zoomtools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-image-popup-zoom {
  padding: 0.58rem 0.7rem;
}

.single-image-popup-nav[disabled],
.single-image-popup-zoom[disabled] {
  opacity: 0.35;
  cursor: default;
}

@media (min-width: 1280px) {
  .page {
    width: min(1200px, calc(100% - 56px));
  }

  .longform-shell {
    display: grid;
    grid-template-columns: 194px minmax(0, 850px);
    gap: 52px;
    align-items: start;
  }

  .chapter-sidebar {
    display: block;
    position: sticky;
    top: 74px;
    max-height: calc(100vh - 94px);
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    background: var(--panel);
    border: 0;
  }

  .chapter-sidebar::-webkit-scrollbar {
    display: none;
  }

  .chapter-sidebar-label {
    margin: 0 0 8px;
    padding: 0.18rem 0.36rem 0.16rem;
    background: #161513;
    color: var(--paper);
    border: 1px solid rgba(22, 21, 19, 0.82);
    box-shadow: inset 0 0 0 1px rgba(120, 24, 20, 0.45);
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .chapter-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--panel);
  }

  .chapter-sidebar-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.14rem 0.24rem 0.12rem;
    border: 1px solid rgba(22, 21, 19, 0.82);
    background: linear-gradient(180deg, #84211b 0%, #711a15 100%);
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.7);
    color: #f4efe7;
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.05;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
  }

  .chapter-sidebar-divider:hover {
    background: var(--panel);
    color: #741915;
  }

  .chapter-sidebar-nav a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    min-height: 34px;
    border: 1px solid rgba(22, 21, 19, 0.82);
    background: transparent;
    color: var(--panel);
    text-decoration: none;
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
    overflow: hidden;
    box-shadow: none;
  }

  .chapter-sidebar-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.08rem 0.04rem 0.07rem;
    background: var(--panel);
    color: #741915;
    border-right: 1px solid rgba(116, 25, 21, 0.42);
    box-shadow: inset 0 0 0 1px rgba(116, 25, 21, 0.18);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    white-space: nowrap;
  }

  .chapter-sidebar-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0.04rem 0.08rem 0.03rem;
    text-align: center;
    line-height: 1.04;
    white-space: normal;
    text-wrap: balance;
    color: var(--panel);
    background: #161513;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
    text-shadow: none;
  }

  .chapter-sidebar-text--stacked {
    gap: 0.22rem;
    line-height: 1.1;
    font-size: 0.68rem;
  }

  .chapter-sidebar-text--stacked span {
    display: block;
  }

  .chapter-sidebar-nav a[href="#nonplace"] .chapter-sidebar-text,
  .chapter-sidebar-nav a[href="#widow"] .chapter-sidebar-text,
  .chapter-sidebar-nav a[href="#the-city"] .chapter-sidebar-text,
  .chapter-sidebar-nav a[href="#last-thoughts"] .chapter-sidebar-text {
    font-size: 0.595rem;
    line-height: 1.1;
  }

  .chapter-sidebar-nav a[href="#darktown"] .chapter-sidebar-text,
  .chapter-sidebar-nav a[href="#james-alley"] .chapter-sidebar-text,
  .chapter-sidebar-nav a[href="#black-friday"] .chapter-sidebar-text {
    font-size: 0.62rem;
    line-height: 1.08;
  }

  .chapter-sidebar-nav a:hover,
  .chapter-sidebar-nav a.is-active,
  .chapter-sidebar-nav a.active {
    border-color: #741915;
    background: transparent;
    box-shadow: none;
  }

  .chapter-sidebar-nav a.is-active,
  .chapter-sidebar-nav a.active {
    transform: translateX(2px);
    position: relative;
    z-index: 1;
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-text {
    color: #f4efe7;
    background: #741915;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
    text-shadow: none;
  }

  .chapter-sidebar-nav a.active .chapter-sidebar-text,
  .chapter-sidebar-nav a.is-active .chapter-sidebar-text {
    color: #f4efe7;
    background: #741915;
    box-shadow:
      inset 0 0 0 1px rgba(244, 239, 231, 0.96),
      0 0 0 1px rgba(120, 31, 27, 0.32);
    text-shadow: none;
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-code {
    background: #741915;
    color: #f4efe7;
  }

.chapter-sidebar-nav a.is-active .chapter-sidebar-code,
.chapter-sidebar-nav a.active .chapter-sidebar-code {
  background: #741915;
  color: #f4efe7;
}
}

@media (max-width: 1024px) {
  .masthead-dek {
    max-width: 64ch;
    font-size: 0.9rem;
    line-height: 1.22;
    white-space: normal;
    text-wrap: wrap;
  }
}

@media (min-width: 721px) and (max-width: 860px) {
  .masthead-dek {
    max-width: 60ch;
    font-size: 0.8rem;
    line-height: 1.18;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 136px;
  }

  .video-action-bar {
    grid-template-columns: 1fr;
  }

  .video-action-watch,
  .video-action-share {
    justify-content: center;
    font-size: 0.78rem;
  }

  .video-action-share {
    border-left: 0;
    border-top: 1px solid rgba(245, 239, 228, 0.72);
  }

  .masthead {
    margin: 0 -6px 28px;
  }

  .masthead-dek {
    width: min(100%, 1000px);
    max-width: 52ch;
    font-size: clamp(0.68rem, 1.55vw, 0.82rem);
    line-height: 1.22;
    white-space: normal;
    text-wrap: wrap;
  }

  .vault-divider-kicker-text {
    max-width: min(100%, 360px);
    white-space: normal;
    text-wrap: balance;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    line-height: 1.12;
  }

  .share-row {
    gap: 0.34rem;
  }

  .share-row-top {
    width: min(calc(100% - 20px), 840px);
    margin: 0.56rem auto 0.16rem;
  }

  .share-link-top {
    min-height: 34px;
    padding: 0.32rem 0.82rem 0.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .share-link {
    min-height: 24px;
    padding: 0.22rem 0.5rem 0.2rem;
    font-size: 0.54rem;
    letter-spacing: 0.1em;
    outline-offset: 1px;
  }

  .page {
    width: min(calc(100% - 20px), 840px);
    padding-top: 6px;
  }

  .page::before {
    inset: 2px -10px 16px;
  }

  .menu-vault-label-wrap {
    padding: 0.16rem 0 0.24rem;
  }

  .menu-vault-label {
    font-size: 0.92rem;
    letter-spacing: 0.2em;
  }

  .menu-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    margin-bottom: 6px;
    padding: 6px 0 6px;
    box-shadow: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .menu-bar::-webkit-scrollbar {
    display: none;
  }

  .menu-bar > a:not(.menu-volume-card) {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding: 6px 8px 7px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    line-height: 1.08;
  }

  .menu-bar > a:not(.menu-volume-card).menu-has-subline {
    padding-bottom: 8px;
  }

  .menu-bar > a:not(.menu-volume-card).menu-third-ward {
    padding-left: 5px;
    padding-right: 5px;
  }

  .menu-bar > a:not(.menu-volume-card).menu-third-ward .menu-subline {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .menu-subline {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: auto;
    margin-top: 4px;
    font-size: 0.78rem;
    line-height: 1.08;
  }

  #complete-work.complete-work-divider {
    margin-top: 0.22rem;
    margin-bottom: -0.58rem;
    padding: 0.06rem 0 0;
    row-gap: 0.04rem;
  }

  #complete-work .complete-work-divider-label {
    font-size: clamp(1.34rem, 4.15vw, 1.62rem);
    letter-spacing: 0.18em;
  }

  .chapter-sidebar {
    display: block;
    position: sticky;
    top: 0;
    z-index: 29;
    margin-bottom: 12px;
    padding: 0;
    border: 0;
    background: var(--panel);
    box-shadow: none;
  }

  .chapter-sidebar.is-before-preface {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .chapter-sidebar-label {
    display: none;
  }

  .chapter-sidebar-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    background: var(--panel);
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .chapter-sidebar-divider {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 132px;
    min-height: 28px;
    padding: 0.14rem 0.34rem 0.12rem;
    border: 1px solid rgba(22, 21, 19, 0.82);
    background: linear-gradient(180deg, #84211b 0%, #711a15 100%);
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.7);
    color: #f4efe7;
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.05;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
  }

  .chapter-sidebar-divider:hover {
    background: var(--panel);
    color: #741915;
  }

  .chapter-sidebar-nav a {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 0;
    min-height: 32px;
    color: var(--panel);
    text-decoration: none;
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.095em;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid rgba(22, 21, 19, 0.82);
    background: transparent;
    overflow: visible;
    white-space: nowrap;
    box-shadow: none;
  }

  .chapter-sidebar-nav a:hover,
  .chapter-sidebar-nav a.is-active {
    border-color: #741915;
    background: transparent;
    box-shadow: none;
  }

  .chapter-sidebar-nav a.is-active,
  .chapter-sidebar-nav a.active {
    transform: translateY(-2px);
    position: relative;
    z-index: 1;
  }

  .chapter-sidebar-code {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    padding: 0.08rem 0.06rem 0.07rem;
    background: var(--panel);
    color: #741915;
    border-right: 1px solid rgba(116, 25, 21, 0.42);
    box-shadow: inset 0 0 0 1px rgba(116, 25, 21, 0.18);
    font-size: 0.69rem;
    letter-spacing: 0.015em;
    font-weight: 700;
    white-space: nowrap;
  }

  .chapter-sidebar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0.04rem 0.5rem 0.03rem;
    text-align: center;
    line-height: 1;
    white-space: normal;
    text-wrap: balance;
    color: var(--panel);
    background: #161513;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
    text-shadow: none;
  }

  .chapter-sidebar-text--stacked {
    flex-direction: row;
    gap: 0.28rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  .chapter-sidebar-text--stacked span {
    display: inline;
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-text {
    color: #f4efe7;
    background: #741915;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
  }

  .chapter-sidebar-nav a.active .chapter-sidebar-text,
  .chapter-sidebar-nav a.is-active .chapter-sidebar-text {
    color: #f4efe7;
    background: #741915;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.96);
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-code {
    background: #741915;
    color: #f4efe7;
  }

  .chapter-sidebar-nav a.is-active .chapter-sidebar-code {
    background: #741915;
    color: #f4efe7;
  }

  .chapter-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .chapter,
  #storymap,
  #arrest-ledgers,
  #works-cited,
  #additional-sources,
  #end-card {
    scroll-margin-top: 136px;
  }

  .wrap-image {
    float: none;
    display: block;
    width: min(100%, 320px);
    margin: 0 auto 1rem;
  }

  .aftermath-image-stack {
    float: none;
    width: min(100%, 320px);
    margin: 0 auto 1rem;
  }

  .liner-note-chapter .chapter-linerhead,
  .boxed-chapter .chapter-linerhead {
    display: grid;
    grid-template-columns: minmax(56px, 64px) minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding: 5px;
  }

  .boxed-chapter .chapter-linerhead,
  .vault-divider .chapter-linerhead {
    display: block;
  }

  .liner-note-chapter .chapter-linerhead-number,
  .boxed-chapter .chapter-linerhead-number {
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
  }

  .liner-note-chapter .chapter-linerhead-titlebox,
  .boxed-chapter .chapter-linerhead-titlebox {
    padding: 5px 6px 6px;
    gap: 6px;
  }

  .liner-note-chapter .chapter-linerhead h2,
  .boxed-chapter .chapter-linerhead h2 {
    font-size: clamp(1.08rem, 5.6vw, 1.42rem);
    letter-spacing: 0.085em;
    line-height: 1.04;
  }

  :is(
    #preface,
    #the-end,
    #the-songster,
    #the-hustler,
    #nonplace,
    #fisk,
    #great-northern,
    #marriage,
    #darktown,
    #bobby-dunbar,
    #titanic,
    #widow,
    #zulu,
    #coal-fire,
    #not-dark-yet,
    #victor,
    #james-alley,
    #mystery,
    #blind-willie,
    #wreckage,
    #black-friday,
    #aftermath,
    #the-city,
    #last-thoughts,
    #afterwords
  ) .chapter-linerhead {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 6px;
  }

  :is(
    #preface,
    #the-end,
    #the-songster,
    #the-hustler,
    #nonplace,
    #fisk,
    #great-northern,
    #marriage,
    #darktown,
    #bobby-dunbar,
    #titanic,
    #widow,
    #zulu,
    #coal-fire,
    #not-dark-yet,
    #victor,
    #james-alley,
    #mystery,
    #blind-willie,
    #wreckage,
    #black-friday,
    #aftermath,
    #the-city,
    #last-thoughts,
    #afterwords
  ) .chapter-linerhead-number {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    text-align: center;
    letter-spacing: -0.04em;
    transform: none;
  }

  .vault-divider .chapter-linerhead-titlebox {
    gap: 0.36rem;
    padding: 0.38rem 0.72rem 0.18rem;
  }

  .vault-divider .chapter-linerhead h2 {
    font-size: clamp(1.32rem, 5.9vw, 1.62rem);
    letter-spacing: 0.12em;
    line-height: 1.02;
    padding-bottom: 0;
    transform: none;
    gap: 0.72rem;
  }

  .vault-divider-subline {
    display: block;
    margin-top: 0.18rem;
    font-size: 1.02em;
    letter-spacing: inherit;
  }

  .vault-divider-topline {
    display: block;
    width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 1.06em;
    letter-spacing: 0.15em;
  }

  .archive-ledger-frame {
    padding: 8px;
  }

  .vault-divider-kicker-text {
    max-width: min(100%, 520px);
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    line-height: 1.12;
  }

  .archive-ledger-controls {
    gap: 0.5rem;
  }

  .archive-ledger-button {
    min-width: 96px;
    padding: 0.42rem 0.7rem;
    font-size: 0.7rem;
  }

  .field-notes-notebook {
    width: 100%;
    padding: 0.45rem;
  }

  .field-notes-page {
    width: fit-content;
    max-width: 100%;
    min-height: 0;
    padding: 0.14rem;
  }

  .field-notes-image {
    max-height: 56vh;
  }

  .field-photographs-polaroid {
    width: min(100%, 640px);
    padding: 0;
  }

  .field-photographs-image {
    height: min(62vh, 460px);
    max-height: min(62vh, 460px);
  }

  .storymap-preview-link {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .storymap-preview-panel {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.8rem;
  }

}

@media (min-width: 721px) and (max-width: 1279px) {
  html {
    scroll-padding-top: 132px;
  }

  .share-row {
    gap: 0.4rem;
  }

  .share-row-top {
    width: min(calc(100% - 28px), 1080px);
    margin-bottom: 0.16rem;
  }

  .top-mini-cta-bar {
    margin: 0 auto 0.06rem;
  }

  .page {
    padding-top: 8px;
  }

  .page::before {
    inset: 3px -16px 20px;
  }

  .share-actions {
    width: auto;
  }

  .share-link-top {
    min-height: 34px;
    padding: 0.34rem 0.9rem 0.32rem;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
  }

  .share-link {
    min-height: 26px;
    padding: 0.24rem 0.58rem 0.22rem;
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  .video-action-watch,
  .video-action-share {
    font-size: 0.84rem;
  }

  .menu-bar > a:not(.menu-volume-card) {
    flex: 0 0 auto;
    min-height: 46px;
    width: 100%;
    padding: 8px 10px;
    font-size: 0.8rem;
    letter-spacing: 0.11em;
    white-space: normal;
  }

  #complete-work.complete-work-divider {
    margin-top: 0.26rem;
    margin-bottom: -0.62rem;
    padding: 0.08rem 0 0;
    row-gap: 0.04rem;
  }

  #complete-work .complete-work-divider-label {
    width: min(100%, 96vw);
    font-size: clamp(1.18rem, 2.45vw, 1.52rem);
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  .liner-note-chapter .chapter-linerhead,
  .boxed-chapter .chapter-linerhead {
    grid-template-columns: minmax(62px, 70px) minmax(0, 1fr);
    gap: 10px;
    padding: 5px;
  }

  .liner-note-chapter .chapter-linerhead-number,
  .boxed-chapter .chapter-linerhead-number {
    min-height: 0;
    font-size: clamp(2.45rem, 6vw, 3.25rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .liner-note-chapter .chapter-linerhead-titlebox,
  .boxed-chapter .chapter-linerhead-titlebox {
    padding: 5px 7px 6px;
    gap: 6px;
  }

  .liner-note-chapter .chapter-linerhead h2,
  .boxed-chapter .chapter-linerhead h2 {
    font-size: clamp(1.2rem, 3vw, 1.58rem);
    letter-spacing: 0.095em;
    line-height: 1.05;
  }

  .vault-divider .chapter-linerhead h2 {
    font-size: clamp(1.4rem, 3.4vw, 1.8rem);
    line-height: 1.02;
    padding-bottom: 0;
    transform: none;
  }

  .vault-divider-topline {
    display: block;
    width: fit-content;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 1.04em;
    letter-spacing: 0.16em;
  }

  .vault-divider-subline {
    display: block;
    margin-top: 0.18rem;
    font-size: 1.02em;
    letter-spacing: inherit;
  }

  .vault-divider-kicker-text {
    max-width: min(100%, 540px);
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    line-height: 1.12;
  }


  .chapter-sidebar {
    display: block;
    position: sticky;
    top: 0;
    z-index: 29;
    margin-bottom: 12px;
    padding: 0;
    border: 0;
    background: var(--panel);
    box-shadow: none;
  }

  .chapter-sidebar.is-before-preface {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .chapter-sidebar-label {
    display: none;
  }

  .chapter-sidebar-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    background: var(--panel);
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .chapter-sidebar-divider {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 126px;
    min-height: 27px;
    padding: 0.12rem 0.28rem 0.1rem;
    border: 1px solid rgba(22, 21, 19, 0.82);
    background: linear-gradient(180deg, #84211b 0%, #711a15 100%);
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.7);
    color: #f4efe7;
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.05;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
  }

  .chapter-sidebar-divider:hover {
    background: var(--panel);
    color: #741915;
  }

  .chapter-sidebar-nav a {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 0;
    min-height: 30px;
    color: var(--panel);
    text-decoration: none;
    font-family: "Inter", "Arial Narrow", "Helvetica Neue", sans-serif;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid rgba(22, 21, 19, 0.82);
    background: transparent;
    overflow: visible;
    white-space: nowrap;
    box-shadow: none;
  }

  .chapter-sidebar-nav a:hover,
  .chapter-sidebar-nav a.is-active {
    border-color: #741915;
    background: transparent;
    box-shadow: none;
  }

  .chapter-sidebar-nav a.is-active,
  .chapter-sidebar-nav a.active {
    transform: translateY(-2px);
    position: relative;
    z-index: 1;
  }

  .chapter-sidebar-code {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    padding: 0.07rem 0.06rem 0.06rem;
    background: var(--panel);
    color: #741915;
    border-right: 1px solid rgba(116, 25, 21, 0.42);
    box-shadow: inset 0 0 0 1px rgba(116, 25, 21, 0.18);
    font-size: 0.69rem;
    letter-spacing: 0.015em;
    font-weight: 700;
    white-space: nowrap;
  }

  .chapter-sidebar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0.03rem 0.48rem 0.02rem;
    text-align: center;
    line-height: 1;
    white-space: normal;
    text-wrap: balance;
    color: var(--panel);
    background: #161513;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
    text-shadow: none;
  }

  .chapter-sidebar-text--stacked {
    flex-direction: row;
    gap: 0.28rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  .chapter-sidebar-text--stacked span {
    display: inline;
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-text {
    color: #f4efe7;
    background: #741915;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
  }

  .chapter-sidebar-nav a.active .chapter-sidebar-text,
  .chapter-sidebar-nav a.is-active .chapter-sidebar-text {
    color: #f4efe7;
    background: #741915;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.96);
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-code {
    background: #741915;
    color: #f4efe7;
  }

  .chapter-sidebar-nav a.is-active .chapter-sidebar-code {
    background: #741915;
    color: #f4efe7;
  }

  .chapter-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .chapter,
  #storymap,
  #arrest-ledgers,
  #works-cited,
  #additional-sources,
  #end-card {
    scroll-margin-top: 132px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .menu-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    overflow: visible;
    padding: 0.08rem 0 0.48rem;
    margin-bottom: 8px;
    justify-content: stretch;
  }

  .menu-volume-card {
    height: 76px !important;
    min-height: 76px !important;
    width: 100%;
  }

  .menu-volume-card-stripe {
    height: 19px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .menu-volume-card-inner {
    grid-template-columns: 32px 3px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 23px 8px 3px 6px !important;
  }

  .menu-volume-card-number {
    font-size: 2.2rem;
  }

  .menu-volume-card-title {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    line-height: 1.08;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .menu-vault-label-wrap {
    padding: 0.18rem 0 0.08rem;
    row-gap: 0.16rem;
  }

  .menu-vault-label {
    width: min(100%, 96vw);
    font-size: clamp(0.96rem, 2.2vw, 1.08rem);
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .menu-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 6px;
    justify-content: stretch;
    overflow: visible;
    padding: 0.08rem 0 0.28rem;
    margin-bottom: 8px;
  }

  .menu-volume-card {
    width: 100%;
    min-width: 0;
    height: 66px !important;
    min-height: 66px !important;
  }

  .menu-volume-card-stripe {
    left: 3px;
    right: 3px;
    height: 15px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0 0.28rem;
  }

  .menu-volume-card-inner {
    grid-template-columns: 20px 2px minmax(0, 1fr) !important;
    gap: 5px !important;
    padding: 18px 6px 3px 4px !important;
  }

  .menu-volume-card-number {
    font-size: 1.72rem;
  }

  .menu-volume-card-divider {
    width: 2px;
    margin-left: 0;
  }

  .menu-volume-card-title {
    font-size: 0.66rem;
    letter-spacing: 0.035em;
    line-height: 1.08;
    text-align: center;
  }

  .menu-volume-card-title > span {
    white-space: nowrap;
    text-decoration: none !important;
  }

  #complete-work.complete-work-divider {
    margin-top: 0.16rem;
    margin-bottom: -0.74rem;
    padding-top: 0;
    row-gap: 0.03rem;
  }

  #complete-work .complete-work-divider-label {
    width: min(100%, 96vw);
    font-size: clamp(1.22rem, 2.5vw, 1.42rem);
    letter-spacing: 0.11em;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .masthead {
    margin: -17px -6px 28px;
  }

  .menu-vault-label-wrap {
    padding: 0.16rem 0 0.08rem;
    row-gap: 0.14rem;
  }

  .menu-vault-label {
    width: min(100%, 94vw);
    font-size: clamp(0.88rem, 3.4vw, 1rem);
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .menu-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 5px;
    justify-content: stretch;
    overflow: visible;
    padding: 0.08rem 0 0.22rem;
    margin-bottom: 8px;
  }

  .menu-volume-card {
    width: 100%;
    min-width: 0;
    height: 58px !important;
    min-height: 58px !important;
    transform: none;
  }

  .menu-volume-card:hover,
  .menu-volume-card:focus-visible {
    transform: none;
  }

  .menu-volume-card-stripe {
    left: 2px;
    right: 2px;
    height: 13px;
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    padding: 0 0.15rem;
  }

  .menu-volume-card-inner {
    grid-template-columns: 17px 2px minmax(0, 1fr) !important;
    gap: 4px !important;
    padding: 14px 5px 3px 4px !important;
  }

  .menu-volume-card-number {
    font-size: 1.46rem;
  }

  .menu-volume-card-divider {
    width: 2px;
    margin-left: 0;
  }

  .menu-volume-card-title {
    font-size: 0.52rem;
    letter-spacing: 0.025em;
    line-height: 1.08;
  }

  .menu-volume-card-title > span {
    white-space: nowrap;
    text-decoration: none !important;
  }

  #complete-work.complete-work-divider {
    margin-top: 0.12rem;
    margin-bottom: -0.78rem;
    padding: 0;
    row-gap: 0.03rem;
  }

  #complete-work .complete-work-divider-label {
    width: min(100%, 94vw);
    font-size: clamp(1.1rem, 3.25vw, 1.22rem);
    letter-spacing: 0.085em;
    line-height: 1;
    white-space: nowrap;
  }

}

@media (max-width: 560px) {
  .masthead {
    margin-top: -22px;
  }

  .menu-volume-card {
    width: 100%;
    min-width: 0;
    height: 50px !important;
    min-height: 50px !important;
  }

  .menu-volume-card-stripe {
    height: 11px;
    font-size: 0.42rem;
  }

  .menu-volume-card-inner {
    grid-template-columns: 15px 2px minmax(0, 1fr) !important;
    gap: 3px !important;
    padding: 12px 4px 3px 3px !important;
  }

  .menu-volume-card-number {
    font-size: 1.24rem;
  }

  .menu-volume-card-title {
    font-size: 0.44rem;
    letter-spacing: 0.015em;
    line-height: 1.06;
  }

  .menu-volume-card-title > span {
    white-space: nowrap;
  }

  #complete-work.complete-work-divider {
    margin-top: 0.08rem;
    margin-bottom: -0.84rem;
  }

  #complete-work .complete-work-divider-label {
    font-size: clamp(1.02rem, 3.55vw, 1.12rem);
    letter-spacing: 0.07em;
  }

}

@media (hover: none), (pointer: coarse) {
  .chapter-sidebar-divider:hover {
    background: linear-gradient(180deg, #84211b 0%, #711a15 100%);
    color: #f4efe7;
  }

  .chapter-sidebar-nav a:hover,
  .chapter-sidebar-nav a:hover .chapter-sidebar-text,
  .chapter-sidebar-nav a:hover .chapter-sidebar-code {
    box-shadow: none;
  }

  .chapter-sidebar-nav a:hover {
    border-color: rgba(22, 21, 19, 0.82);
    background: transparent;
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-text {
    color: var(--panel);
    background: #161513;
    box-shadow: inset 0 0 0 1px rgba(244, 239, 231, 0.82);
  }

  .chapter-sidebar-nav a:hover .chapter-sidebar-code {
    background: var(--panel);
    color: #741915;
  }
}
