:root {
  --cols: 12;
  --gutter: 24px;
  --margin: 48px;
  --baseline: 8px;
  --max-width: 1280px;
  --black: #0a0a0a;
  --bone: #f2ebdd;
  --gold: #c6a15b;
  --night: #09080c;
  --plum: #211521;
  --mauve: #9d6d78;
  --mauve-text: #c99ca8;
  --peach: #d78c69;
  --ivory: #f1eadf;
  --pistol-ink: #111111;
  --pistol-offwhite: #f1eee7;
  --pistol-concrete: #a69f94;
  --pistol-blue: #3f5eb6;
  --pistol-blue-text: #7f9bf4;
  --will-black: #101114;
  --will-cream: #f7eee4;
  --will-caramel: #c88436;
  --will-rose: #e1554c;
  --will-rose-text: #a73538;
  --will-pink: #f06aa3;
  --focus: #f4c76c;
  --header-height: 72px;
  --duration-fast: 160ms;
  --duration-reveal: 440ms;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--bone);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
video {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  color: var(--black);
  background: var(--bone);
  font-weight: 800;
  text-decoration: none;
}

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

.content-grid {
  width: min(calc(100% - (var(--margin) * 2)), var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gutter);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--margin);
  color: var(--bone);
  background: color-mix(in srgb, var(--black) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  backdrop-filter: blur(16px);
}

.site-mark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-mark span {
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.site-mark small {
  color: var(--bone);
  font-size: .66rem;
  font-weight: 800;
}

.site-nav {
  min-width: 0;
  justify-self: center;
  display: flex;
  gap: 28px;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: color-mix(in srgb, var(--bone) 72%, transparent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

.site-nav a::after {
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) ease;
}

.site-nav a:hover,
.site-nav a[aria-current='true'] {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a[aria-current='true']::after {
  transform: scaleX(1);
}

.reading-progress {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bone) 20%, transparent);
}

.reading-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 80ms linear;
}

.hero,
.chapter,
.close {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 72px) 0 56px;
  background: var(--black);
}

.hero::before,
.hero::after {
  position: absolute;
  background: var(--gold);
  content: '';
}

.hero::before {
  top: calc(var(--header-height) + 48px);
  left: var(--margin);
  width: min(420px, 42vw);
  height: 1px;
}

.hero::after {
  top: calc(var(--header-height) + 28px);
  right: var(--margin);
  width: 1px;
  height: 62vh;
}

.hero__grid {
  min-height: calc(100svh - var(--header-height) - 160px);
  align-items: center;
}

.hero__copy {
  grid-column: 1 / span 9;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.8rem, 9.2vw, 8.3rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .84;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  margin-left: .22em;
}

.hero h1 span:last-child {
  margin: .14em 0 0 .07em;
  color: var(--gold);
}

.hero__access {
  max-width: 760px;
  margin: 56px 0 0 .3em;
  color: var(--bone);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.42;
}

.hero__actions,
.close__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 34px 0 0 .3em;
}

.text-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 8px;
  border-bottom: 1px solid currentColor;
  font-size: .94rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.text-link::after {
  content: '↗';
  transition: transform var(--duration-fast) var(--ease);
}

.text-link[href^='#']::after {
  content: '↓';
}

.text-link--quiet {
  color: color-mix(in srgb, currentColor 66%, transparent);
}

.text-link:active,
.site-nav a:active {
  opacity: .72;
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover::after,
  .text-link:focus-visible::after {
    transform: translate(3px, -2px);
  }

  .text-link[href^='#']:hover::after,
  .text-link[href^='#']:focus-visible::after {
    transform: translateY(3px);
  }
}

.hero__roster {
  grid-column: 10 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px 14px;
  padding: 0 28px 26px 0;
  text-align: right;
}

.hero__roster span {
  color: var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .8rem;
}

.hero__roster strong {
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero__boundary,
.close__boundary {
  width: min(calc(100% - (var(--margin) * 2)), var(--max-width));
  margin: 36px auto 0;
  color: color-mix(in srgb, var(--bone) 76%, transparent);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.chapter {
  min-height: 100svh;
  padding: calc(var(--header-height) + 72px) 0 88px;
}

.chapter h2,
.close h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  letter-spacing: -.045em;
  line-height: .98;
}

.chapter p,
.close p {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.chapter__backdrop {
  position: absolute;
  inset: 0;
}

.chapter__backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 8, 12, .96) 0 46%, rgba(9, 8, 12, .55) 70%, rgba(9, 8, 12, .1));
  content: '';
}

.chapter__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.chapter--midnight {
  color: var(--ivory);
  background: var(--night);
}

.chapter--midnight .eyebrow {
  color: var(--peach);
}

.midnight-identity__grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-height) - 160px);
  align-items: center;
}

.midnight-identity__copy {
  grid-column: 1 / span 6;
}

.midnight-identity__copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0;
}

.midnight-link {
  color: var(--peach);
}

.midnight-identity__media {
  grid-column: 9 / span 3;
  align-self: center;
}

.media-frame {
  position: relative;
  margin: 0;
  background: var(--black);
}

.media-frame video {
  width: 100%;
  height: 100%;
  color-scheme: dark;
  object-fit: cover;
}

.media-frame--portrait {
  aspect-ratio: 9 / 16;
  max-height: min(68svh, 720px);
}

.media-frame--full {
  width: 100%;
  height: 100%;
}

.media-frame figcaption {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
  pointer-events: none;
}

.media-frame figcaption strong {
  font-size: .92rem;
}

.media-frame figcaption a {
  color: inherit;
  font-size: .72rem;
  pointer-events: auto;
}

.media-fallback {
  display: none;
  margin: 0;
  padding: 16px;
  color: #fff;
  background: #3d2025;
  font-size: .84rem !important;
}

.media-frame.is-unavailable .media-fallback {
  display: block;
}

.chapter--proof {
  background: var(--plum);
}

.midnight-proof__grid {
  row-gap: 48px;
  align-content: center;
}

.midnight-proof__intro {
  grid-column: 1 / span 8;
}

.midnight-proof__intro p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0;
}

.metric-ledger {
  grid-column: 1 / span 8;
  display: grid;
  gap: 30px;
  margin: 0;
}

.metric-ledger > div {
  padding-top: 18px;
  border-top: 1px solid var(--mauve);
}

.metric-ledger dt {
  margin-bottom: 14px;
  color: var(--mauve-text);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric-ledger dd {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: baseline;
  gap: 22px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.metric-ledger dd span {
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
}

.metric-ledger dd i {
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: normal;
}

.metric-ledger dd em {
  justify-self: end;
  color: var(--peach);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-style: normal;
  font-weight: 800;
}

.proof-aside {
  grid-column: 9 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 30px;
  border-left: 2px solid var(--mauve);
}

.proof-aside .eyebrow {
  margin-bottom: 0;
  color: var(--mauve-text);
}

.proof-aside strong {
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.05;
}

.proof-aside span {
  color: var(--peach);
  font-size: .92rem;
  line-height: 1.45;
}

.source-line {
  color: color-mix(in srgb, currentColor 66%, transparent);
  font-size: .74rem !important;
  letter-spacing: .03em;
}

.midnight-proof__grid > .source-line {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--mauve);
}

.chapter--pistol {
  color: var(--pistol-ink);
  background: var(--pistol-offwhite);
}

.chapter--pistol .eyebrow {
  color: var(--pistol-blue);
}

.chapter--moment {
  padding: var(--header-height) 0 0;
}

.pistol-moment__grid {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(260px, 32%) minmax(250px, 25%) 1fr;
}

.pistol-moment__media {
  min-height: calc(100svh - var(--header-height));
}

.pistol-moment__story {
  display: flex;
  flex-direction: column;
  padding: 64px 34px 42px;
  color: var(--pistol-offwhite);
  background: var(--pistol-ink);
  border-left: 10px solid var(--pistol-blue);
}

.pistol-moment__story .eyebrow {
  color: var(--pistol-blue-text);
}

.pistol-moment__story h2 {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: 1.02;
}

.pistol-moment__story p:not(.eyebrow) {
  font-size: 1rem;
}

.pistol-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 22px 0;
}

.pistol-totals div {
  padding-top: 12px;
  border-top: 1px solid var(--pistol-concrete);
}

.pistol-totals dt {
  color: var(--pistol-concrete);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pistol-totals dd {
  margin: 7px 0 0;
  color: var(--pistol-blue);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.pistol-takeaway {
  margin-top: auto;
  font-weight: 800;
}

.reaction-rail {
  display: flex;
  flex-direction: column;
  padding: 52px 42px 34px;
}

.reaction-rail h3 {
  max-width: 560px;
  margin: 0;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1.08;
}

.reaction-rail__sample {
  max-width: 610px;
  margin: 18px 0 8px;
  font-weight: 800;
}

.reaction-rail__explainer {
  max-width: 610px;
  margin: 0 0 18px;
  color: #665f55;
  font-size: .84rem !important;
  line-height: 1.45;
}

.reaction-rail ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reaction-rail li {
  min-height: 0;
  display: block;
  padding: 13px 0 12px;
  border-top: 1.5px solid var(--pistol-blue);
}

.reaction-rail li:last-child {
  border-bottom: 2px solid var(--pistol-blue);
}

.reaction-rail li strong {
  display: block;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.reaction-rail li span {
  display: block;
  margin-top: 5px;
  font-size: .88rem;
  line-height: 1.35;
}

.reaction-rail li em {
  display: block;
  margin-top: 7px;
  color: var(--pistol-blue);
  font-size: .78rem;
  font-style: normal;
  font-weight: 800;
}

.reaction-rail__boundary {
  margin: 16px 0 0;
  color: #665f55;
  font-size: .75rem !important;
  font-style: italic;
}

.chapter--timeline {
  padding-bottom: 64px;
}

.pistol-timeline__grid {
  row-gap: 42px;
  align-content: center;
}

.pistol-timeline__intro {
  grid-column: 1 / span 8;
}

.pistol-timeline__intro h2 {
  font-family: 'Arial Black', Arial, sans-serif;
}

.pistol-timeline__intro p:not(.eyebrow) {
  max-width: 820px;
  margin: 28px 0 0;
}

.timeline-list {
  position: relative;
  grid-column: 1 / span 8;
  margin: 0;
  padding: 0 0 0 40px;
  list-style: none;
}

.timeline-list::before {
  position: absolute;
  inset: 8px auto 8px 7px;
  width: 2px;
  background: var(--pistol-ink);
  content: '';
}

.timeline-list > li {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  min-height: 78px;
  padding: 0 0 28px;
}

.timeline-list > li::before {
  position: absolute;
  top: 4px;
  left: -40px;
  width: 16px;
  height: 16px;
  background: var(--pistol-blue);
  content: '';
}

.timeline-list time {
  color: var(--pistol-blue);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.timeline-list strong,
.timeline-list a {
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.timeline-list > li > span,
.timeline-list__feature > div > span {
  grid-column: 2;
  color: color-mix(in srgb, var(--pistol-ink) 70%, transparent);
  font-size: .82rem;
  line-height: 1.45;
}

.timeline-list__feature > div {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 180px;
  gap: 5px 26px;
}

.feature-poster {
  grid-column: 2;
  grid-row: 1 / span 3;
  text-decoration: none;
}

.feature-poster img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.feature-poster span {
  display: inline-block;
  margin-top: 7px;
  color: var(--pistol-blue);
  font-size: .72rem;
  font-weight: 800;
  text-decoration: underline;
}

.pistol-timeline__portrait {
  grid-column: 9 / -1;
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 47% center;
  border-left: 10px solid var(--pistol-blue);
}

.meeting-line {
  grid-column: 1 / span 8;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--pistol-concrete);
  font-weight: 800;
}

.chapter--will {
  color: var(--will-black);
  background: var(--will-cream);
}

.chapter--will .eyebrow {
  color: var(--will-rose-text);
}

.will-writer__grid {
  min-height: calc(100svh - var(--header-height) - 160px);
  align-items: center;
}

.will-writer__copy {
  grid-column: 1 / span 6;
}

.will-writer__copy p:not(.eyebrow) {
  margin: 30px 0;
}

.will-link {
  color: var(--will-rose-text);
}

.writer-proof,
.collab-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 38px 0 24px;
}

.writer-proof div,
.collab-proof div {
  padding-top: 12px;
  border-top: 1px solid var(--will-rose);
}

.writer-proof dt,
.collab-proof dt {
  color: var(--will-rose-text);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.writer-proof dd,
.collab-proof dd {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 800;
}

.will-writer__visual {
  grid-column: 7 / -1;
  align-self: stretch;
  margin: calc((var(--header-height) + 72px) * -1) 0 -88px;
  background: var(--will-black);
}

.will-writer__visual img {
  width: 100%;
  height: calc(100% - 54px);
  object-fit: cover;
}

.will-writer__visual figcaption {
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: var(--will-cream);
  background: var(--will-black);
}

.will-writer__visual a {
  color: var(--will-pink);
  font-size: .78rem;
  font-weight: 800;
}

.chapter--collab {
  border-top: 12px solid var(--will-pink);
}

.will-collab__grid {
  min-height: calc(100svh - var(--header-height) - 172px);
  align-items: center;
}

.will-collab__copy {
  grid-column: 1 / span 6;
}

.will-collab__copy h2 {
  max-width: 640px;
  color: var(--will-rose);
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
}

.will-collab__copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0;
}

.creator-proof {
  margin: 32px 0 20px;
  border-top: 1px solid var(--will-rose);
}

.creator-proof article {
  padding: 15px 0 16px;
  border-bottom: 1px solid var(--will-rose);
}

.creator-proof h3 {
  margin: 0;
  color: var(--will-rose-text);
  font-size: 1rem;
  text-transform: uppercase;
}

.creator-proof h3 small {
  margin-left: 8px;
  color: var(--will-black);
  font-size: .72rem;
  font-weight: 800;
  text-transform: none;
}

.creator-proof p {
  margin: 8px 0 0 !important;
  font-size: .96rem !important;
  font-weight: 800;
  line-height: 1.38;
}

.creator-proof span {
  display: block;
  margin-top: 6px;
  color: var(--will-rose-text);
  font-size: .78rem;
  font-weight: 800;
}

.creator-boundary {
  color: var(--will-rose-text);
  font-size: .85rem !important;
  font-style: italic;
}

.will-collab__media-grid {
  grid-column: 7 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.will-collab__media {
  grid-column: auto;
  width: 100%;
}

.close {
  min-height: 100svh;
  padding: calc(var(--header-height) + 80px) 0 54px;
  color: var(--bone);
  background: var(--black);
}

.close__grid {
  row-gap: 56px;
  align-content: center;
}

.close__statement {
  grid-column: 1 / span 5;
}

.close__statement .eyebrow {
  color: var(--gold);
}

.close__statement p:not(.eyebrow) {
  margin-top: 30px;
}

.close__tools {
  grid-column: 7 / -1;
  border-left: 1px solid var(--gold);
}

.close__tools > div {
  padding: 0 0 30px 34px;
  border-bottom: 1px solid var(--gold);
}

.close__tools > div + div {
  padding-top: 30px;
}

.close__tools h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.close__tools p {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: .9rem;
}

.close__line {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 36px;
  color: var(--gold);
  border-top: 1px solid var(--gold);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 2.4vw, 2.3rem) !important;
  font-style: italic;
}

.close__downloads {
  grid-column: 1 / span 7;
  margin-left: 0;
}

.close__boundary {
  grid-column: 1 / -1;
  width: auto;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--duration-reveal) var(--ease), transform var(--duration-reveal) var(--ease);
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --cols: 8;
    --gutter: 20px;
    --margin: 28px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero__copy {
    grid-column: 1 / span 7;
  }

  .hero__roster {
    grid-column: 7 / -1;
  }

  .midnight-identity__copy {
    grid-column: 1 / span 5;
  }

  .midnight-identity__media {
    grid-column: 6 / span 3;
  }

  .midnight-proof__intro,
  .metric-ledger {
    grid-column: 1 / span 6;
  }

  .proof-aside {
    grid-column: 7 / -1;
  }

  .pistol-moment__grid {
    grid-template-columns: 34% 28% 1fr;
  }

  .pistol-moment__story,
  .reaction-rail {
    padding-inline: 26px;
  }

  .pistol-timeline__intro,
  .timeline-list,
  .meeting-line {
    grid-column: 1 / span 5;
  }

  .pistol-timeline__portrait {
    grid-column: 6 / -1;
  }

  .will-writer__copy {
    grid-column: 1 / span 4;
  }

  .will-writer__visual {
    grid-column: 5 / -1;
  }

  .will-collab__copy {
    grid-column: 1 / span 4;
  }

  .will-collab__media-grid {
    grid-column: 5 / -1;
    gap: 14px;
  }

  .close__statement {
    grid-column: 1 / span 3;
  }

  .close__tools {
    grid-column: 5 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --cols: 4;
    --gutter: 16px;
    --margin: 18px;
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding-inline: var(--margin);
  }

  .site-mark small {
    display: none;
  }

  .site-nav {
    width: 100%;
    justify-self: stretch;
    justify-content: flex-end;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 48px;
    padding-inline: 2px;
    font-size: .64rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 96px);
  }

  .hero::before {
    top: calc(var(--header-height) + 48px);
    width: 46vw;
  }

  .hero::after {
    display: none;
  }

  .hero__grid {
    min-height: 720px;
    align-content: center;
  }

  .hero__copy {
    grid-column: 1 / -1;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .hero h1 span:nth-child(2) {
    margin-left: 0;
  }

  .hero__access {
    margin-top: 40px;
    margin-left: 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .hero__roster {
    grid-column: 1 / -1;
    margin-top: 54px;
    padding: 24px 0 0;
    border-top: 1px solid var(--gold);
    text-align: left;
  }

  .chapter {
    min-height: auto;
    padding: calc(var(--header-height) + 54px) 0 64px;
  }

  .chapter h2,
  .close h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .chapter__backdrop::after {
    background: linear-gradient(180deg, rgba(9, 8, 12, .95) 0 57%, rgba(9, 8, 12, .62));
  }

  .midnight-identity__grid {
    min-height: 840px;
    align-content: start;
  }

  .midnight-identity__copy,
  .midnight-identity__media,
  .midnight-proof__intro,
  .metric-ledger,
  .proof-aside,
  .pistol-timeline__intro,
  .timeline-list,
  .meeting-line,
  .pistol-timeline__portrait,
  .will-writer__copy,
  .will-writer__visual,
  .will-collab__copy,
  .will-collab__media-grid,
  .close__statement,
  .close__tools,
  .close__downloads {
    grid-column: 1 / -1;
  }

  .midnight-identity__media {
    width: min(82vw, 420px);
    margin-top: 40px;
    justify-self: center;
  }

  .will-collab__media-grid {
    width: 100%;
    margin-top: 40px;
  }

  .metric-ledger dd {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .metric-ledger dd span {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .metric-ledger dd em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .proof-aside {
    grid-row: auto;
    margin-top: 10px;
  }

  .pistol-moment__grid {
    display: block;
  }

  .pistol-moment__media {
    height: min(146vw, 760px);
    min-height: 620px;
  }

  .pistol-moment__story,
  .reaction-rail {
    padding: 50px var(--margin);
  }

  .pistol-moment__story {
    min-height: 620px;
    border-left: 0;
    border-top: 10px solid var(--pistol-blue);
  }

  .timeline-list > li {
    grid-template-columns: 90px 1fr;
  }

  .timeline-list__feature > div {
    grid-template-columns: 1fr;
  }

  .feature-poster {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 320px);
    margin-top: 16px;
  }

  .pistol-timeline__portrait {
    grid-row: auto;
    min-height: 520px;
  }

  .writer-proof,
  .collab-proof {
    grid-template-columns: 1fr;
  }

  .will-writer__visual {
    min-height: 620px;
    margin: 36px 0 -64px;
  }

  .will-writer__visual img {
    height: 566px;
  }

  .close {
    min-height: auto;
    padding-top: calc(var(--header-height) + 62px);
  }

  .close__grid {
    row-gap: 42px;
  }

  .close__tools {
    border-left: 0;
    border-top: 1px solid var(--gold);
  }

  .close__tools > div {
    padding-left: 0;
    padding-top: 26px;
  }

  .close__downloads {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    max-width: none;
    font-size: .6rem;
  }

  .hero__grid {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 4.8rem);
  }

  .timeline-list {
    padding-left: 30px;
  }

  .timeline-list > li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .timeline-list > li::before {
    left: -30px;
  }

  .timeline-list > li > span {
    grid-column: 1;
  }

  .will-collab__media-grid {
    width: min(84vw, 380px);
    grid-template-columns: 1fr;
    gap: 24px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .reading-progress i,
  .text-link::after {
    transition: none !important;
  }
}

html.qa-reduced-motion {
  scroll-behavior: auto;
}

html.qa-reduced-motion *,
html.qa-reduced-motion *::before,
html.qa-reduced-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: .01ms !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
}

html.qa-reduced-motion .reveal {
  opacity: 1;
  transform: none;
}

html.qa-reduced-motion .reading-progress i,
html.qa-reduced-motion .text-link::after {
  transition: none !important;
}

@media print {
  .site-header,
  .skip-link,
  .hero__actions,
  .close__downloads {
    display: none !important;
  }

  .hero,
  .chapter,
  .close {
    min-height: 0;
    break-inside: avoid;
  }
}
