:root {
  color-scheme: light;
  --paper: #f6f2e9;
  --paper-deep: #eee7da;
  --ink: #171614;
  --muted: #70685e;
  --line: #d7cdbf;
  --rust: #8c2b22;
  --blue-black: #151f27;
  --olive: #4f5946;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(23, 22, 20, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(246, 242, 233, 0.34), rgba(246, 242, 233, 0.34)),
    url("./generated/paper-texture.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(180px, auto) auto;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
  background: rgba(246, 242, 233, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.design-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 32px);
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.46);
}

.design-switcher[hidden] {
  display: none !important;
}

.design-switcher button {
  display: grid;
  width: 32px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.design-switcher button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.design-switcher button:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.brand span,
.current-section span,
.eyebrow,
.section-kicker,
.nav-group-title,
.side-nav-head p,
.media-count,
.caption-block h3,
.document-toolbar,
.lightbox-caption {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand span,
.current-section span {
  color: var(--muted);
  font-size: 11px;
}

.current-section {
  display: grid;
  justify-items: end;
  line-height: 1.2;
}

.current-section b {
  max-width: 340px;
  overflow: hidden;
  color: var(--blue-black);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-button,
.icon-button,
.rail-button,
.page-button,
.media-open {
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.header-button {
  min-height: 38px;
  padding: 8px 14px;
}

.site-header [data-toggle-nav] {
  display: none;
}

.icon-button,
.rail-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  font-size: 22px;
  line-height: 1;
}

.rail-button {
  font-size: 14px;
}

[data-close-nav] {
  display: none;
}

.header-button:hover,
.icon-button:hover,
.rail-button:hover,
.page-button:hover,
.media-open:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.progress-track {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--rust);
}

.layout {
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr);
}

.side-nav {
  position: sticky;
  top: 64px;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  height: calc(100vh - 64px);
  background: rgba(238, 231, 218, 0.96);
  border-right: 1px solid var(--line);
}

.side-nav-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  min-height: 74px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
}

.side-nav-head p {
  margin: 0 0 2px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
}

.side-nav-head strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.nav-scroll {
  overflow-y: auto;
  padding: 12px;
  scrollbar-width: thin;
}

.nav-group {
  margin: 0 0 18px;
}

.nav-group-title {
  margin: 12px 8px 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.nav-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 6px 8px;
  color: var(--ink);
  text-decoration: none;
}

.nav-item:hover,
.nav-item.is-active {
  background: var(--white);
}

.nav-item.is-active {
  color: var(--blue-black);
  box-shadow: inset 3px 0 0 var(--rust);
}

.nav-number,
.section-number {
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--rust);
  font-weight: 700;
  font-size: 12px;
}

.nav-item.is-active .nav-number {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

.nav-number.nav-flag,
.nav-item.is-active .nav-number.nav-flag {
  border-color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(
    to bottom,
    #c2a04e 0 33.333%,
    #1b503c 33.333% 66.666%,
    #9a4e50 66.666% 100%
  );
  box-shadow: 0 0 0 1px rgba(15, 20, 18, 0.18);
}

.nav-title {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-date {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  opacity: 0;
  transition: max-height 160ms ease, opacity 160ms ease;
}

.nav-item:hover .nav-date,
.nav-item.is-active .nav-date {
  max-height: 18px;
  opacity: 1;
}

.exhibition-root {
  min-width: 0;
}

.exhibit-section {
  scroll-margin-top: 86px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  min-height: 0;
  padding: clamp(42px, 4.8vw, 70px) clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.section-meta {
  position: sticky;
  top: 92px;
  min-width: 0;
}

.exhibit-section:not(.intro-section) .section-meta::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--rust);
  opacity: 0.46;
}

.section-kicker {
  margin: 18px 0 12px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 750;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 780px;
  font-size: clamp(54px, 8.5vw, 118px);
}

h2 {
  font-size: clamp(26px, 2.35vw, 36px);
  line-height: 1.12;
}

.long-title h2 {
  font-size: clamp(24px, 2.05vw, 32px);
}

.very-long-title h2 {
  font-size: clamp(23px, 1.85vw, 28px);
}

.subtitle {
  margin: 18px 0 0;
  color: var(--blue-black);
  font-size: clamp(17px, 1.25vw, 22px);
}

.body-copy {
  max-width: 700px;
  margin-top: 26px;
  color: var(--blue-black);
  font-size: clamp(17px, 1.15vw, 20px);
}

.body-copy p {
  margin: 0 0 1em;
}

.body-copy p,
.caption-block p,
.reader-caption,
.document-inline-caption,
figcaption {
  overflow-wrap: anywhere;
}

.media-column {
  min-width: 0;
}

.media-open {
  --media-mat: #eee7da;
  --frame-inset: 10px;
  --frame-padding: 20px;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: var(--frame-padding);
  background: var(--media-mat);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.42), 0 12px 34px rgba(23, 22, 20, 0.08);
  color: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.media-open::before,
.lightbox-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 2px solid rgba(80, 75, 68, 0.18);
  border-top-color: var(--rust);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  animation: image-spin 900ms linear infinite;
}

.media-open::after {
  content: "";
  position: absolute;
  inset: var(--frame-inset);
  z-index: 1;
  border: 1px solid rgba(80, 75, 68, 0.2);
  opacity: 0.38;
  pointer-events: none;
}

.media-open.is-loading::before,
.lightbox.is-loading .lightbox-stage::before {
  opacity: 1;
}

.media-open.is-error::before,
.lightbox.is-error .lightbox-stage::before {
  display: none;
}

.media-open img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: var(--media-mat);
  color: transparent;
  opacity: 0;
  transition: opacity 180ms ease, transform 420ms ease, filter 420ms ease;
}

.media-open.is-loaded img {
  opacity: 1;
}

.media-open:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.6), 0 18px 46px rgba(23, 22, 20, 0.13);
}

.media-open:hover img {
  filter: contrast(1.025) saturate(0.98);
  transform: scale(1.006);
}

@keyframes image-spin {
  to {
    transform: rotate(360deg);
  }
}

.single-media figcaption,
.gallery-main figcaption,
.media-grid figcaption,
.media-stack figcaption,
.caption-block,
.media-shared-caption,
.document-inline-caption,
.reader-caption {
  color: #504b44;
  font-size: 15px;
  line-height: 1.6;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 10px;
}

.media-inline-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.inline-caption-copy p {
  margin: 0 0 0.65em;
}

.inline-caption-copy p:last-child {
  margin-bottom: 0;
}

.intro-section {
  grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 0.9fr);
  align-items: center;
  min-height: calc(100vh - 64px);
}

.intro-section .section-meta {
  position: static;
}

.intro-section .body-copy {
  font-size: clamp(18px, 1.35vw, 22px);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.media-stack {
  display: grid;
  gap: 26px;
}

.media-stack figure {
  min-width: 0;
}

.media-grid figure {
  display: grid;
  align-content: start;
}

.media-stack .media-open {
  --media-mat: #ece4d8;
}

.media-stack .media-open img {
  max-height: none;
}

.media-grid .media-open img {
  aspect-ratio: 4 / 3;
}

.media-grid.count-3 figure:first-child {
  grid-row: span 2;
}

.media-grid.count-3 figure:first-child .media-open img {
  aspect-ratio: 3 / 4;
}

.media-shared-caption {
  margin-top: 12px;
}

.gallery-viewer,
.document-viewer {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.26);
  box-shadow: 0 14px 34px rgba(23, 22, 20, 0.08);
}

.document-section,
.documentfile-section {
  background: transparent;
}

.document-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.document-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  padding: 18px;
}

.document-body.single-page {
  grid-template-columns: minmax(0, 1fr);
}

.document-page {
  --media-mat: #f0e7d8;
  display: grid;
  min-height: 520px;
  place-items: center;
  box-shadow: inset 0 0 0 10px rgba(255, 253, 248, 0.16);
}

.document-page img {
  max-height: 720px;
}

.page-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
}

.page-button {
  min-height: 42px;
  font-weight: 700;
  background: rgba(246, 242, 233, 0.72);
}

.page-button.is-active {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

.reader-caption {
  margin: 0;
  padding: 0 18px 18px;
}

.document-inline-caption {
  padding: 0 18px 18px;
}

.object-section {
  background: transparent;
}

.object-section .media-grid figure {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.18);
}

.object-section .media-open {
  --media-mat: #eee7da;
}

.memorial-section {
  background: rgba(18, 22, 20, 0.84);
  color: var(--white);
  backdrop-filter: saturate(0.8);
}

.memorial-section .subtitle,
.memorial-section .body-copy {
  color: #f1eadf;
}

.memorial-section .media-open {
  --media-mat: #ece4d8;
  border-color: rgba(255, 253, 248, 0.2);
}

.memorial-section figcaption,
.memorial-section .caption-block,
.memorial-section .media-shared-caption {
  color: #e9dfd0;
}

.memorial-section .media-shared-caption {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.ending-section {
  grid-template-columns: minmax(0, 940px);
  min-height: calc(86vh - 64px);
  align-items: center;
  justify-content: center;
}

.ending-section .section-meta {
  position: static;
}

.caption-block {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.24);
}

.caption-block h3 {
  margin: 0 0 10px;
  color: var(--rust);
  font-size: 10px;
}

.caption-block p {
  margin: 0 0 0.8em;
}

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

.media-count {
  color: var(--muted);
  font-size: 10px;
}

.empty-media {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
}

.section-jumpers {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: grid;
  gap: 8px;
}

.section-jumper {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(80, 75, 68, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: rgba(23, 22, 20, 0.68);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 140ms ease, color 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.section-jumper:hover {
  border-color: rgba(140, 43, 34, 0.55);
  color: var(--rust);
  transform: translateY(-1px);
}

.section-jumper.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .exhibit-section {
    opacity: 0.74;
    transform: translateY(14px);
    transition: opacity 560ms ease, transform 560ms ease;
  }

  .motion-ready .exhibit-section.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-open,
  .media-open img,
  .section-jumper {
    transition-duration: 1ms;
  }

  .media-open:hover img {
    transform: none;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(12, 13, 12, 0.96);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1500px, 100%);
  height: min(940px, calc(100vh - 36px));
  min-height: 0;
  background: #111412;
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.lightbox-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  color: var(--white);
}

.lightbox-toolbar p {
  margin: 0;
  color: #e8dfd3;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-actions .icon-button {
  border-color: rgba(255, 253, 248, 0.25);
  color: var(--white);
}

#zoomLabel {
  width: 58px;
  color: #d6caba;
  font-size: 13px;
  text-align: center;
}

.lightbox-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 26px;
  cursor: default;
  overscroll-behavior: contain;
  touch-action: none;
  user-select: none;
}

.lightbox.is-pannable .lightbox-stage {
  cursor: grab;
}

.lightbox.is-dragging .lightbox-stage {
  cursor: grabbing;
}

.lightbox-stage img {
  width: auto;
  max-width: calc(100vw - 88px);
  height: auto;
  max-height: min(760px, calc(100vh - 150px));
  object-fit: contain;
  background: #eee7da;
  pointer-events: none;
  transform: translate3d(var(--pan-x, 0), var(--pan-y, 0), 0) scale(var(--zoom, 1));
  transform-origin: center center;
  color: transparent;
  opacity: 1;
  transition: opacity 160ms ease;
  -webkit-user-drag: none;
}

.lightbox.is-loading .lightbox-stage img {
  opacity: 0;
}

@media (min-width: 1181px) {
  body.nav-compact .layout {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  body.nav-compact .side-nav-head {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px 8px;
  }

  body.nav-compact .side-nav-head div,
  body.nav-compact .side-nav-head [data-close-nav] {
    display: none;
  }

  body.nav-compact .nav-scroll {
    padding: 8px 6px;
  }

  body.nav-compact .nav-group-title,
  body.nav-compact .nav-title,
  body.nav-compact .nav-date {
    display: none;
  }

  body.nav-compact .nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 42px;
    padding: 6px 0;
  }

  body.nav-compact .nav-item.is-active {
    box-shadow: none;
  }
}

@media (max-width: 1500px) and (min-width: 981px) {
  .exhibit-section {
    grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
    gap: clamp(24px, 3.2vw, 50px);
  }

  .ending-section {
    grid-template-columns: minmax(0, 860px);
  }

  .intro-section {
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    align-items: start;
    min-height: calc(100vh - 64px);
    padding-top: clamp(30px, 3.2vw, 48px);
    padding-bottom: clamp(44px, 5vw, 76px);
  }

  .intro-section .section-kicker {
    margin-top: 0;
  }

  .intro-section h1 {
    font-size: clamp(52px, 5.4vw, 76px);
    line-height: 0.98;
  }

  .intro-section .body-copy {
    margin-top: 20px;
    font-size: clamp(16px, 1.1vw, 19px);
  }

  .section-meta {
    top: 84px;
  }

  .exhibit-section h2 {
    font-size: clamp(25px, 2.2vw, 34px);
  }

  .long-title h2 {
    font-size: clamp(24px, 1.95vw, 30px);
  }

  .very-long-title h2 {
    font-size: clamp(23px, 1.75vw, 27px);
  }
}

@media (max-width: 1180px) and (min-width: 821px) {
  .layout {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .side-nav {
    width: 76px;
  }

  .side-nav-head {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px 8px;
  }

  .side-nav-head div,
  .side-nav-head .icon-button {
    display: none;
  }

  .rail-button {
    display: inline-grid;
  }

  .nav-scroll {
    padding: 8px 6px;
  }

  .nav-group-title,
  .nav-title,
  .nav-date {
    display: none;
  }

  .nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 42px;
    padding: 6px 0;
  }

  .nav-item.is-active {
    box-shadow: none;
  }

  body.nav-open .layout {
    grid-template-columns: 318px minmax(0, 1fr);
  }

  body.nav-open .side-nav {
    position: sticky;
    top: 64px;
    width: auto;
    box-shadow: none;
  }

  body.nav-open .side-nav-head {
    grid-template-columns: 1fr auto auto;
    justify-items: stretch;
    padding: 14px;
  }

  body.nav-open .side-nav-head div,
  body.nav-open .nav-group-title,
  body.nav-open .nav-title,
  body.nav-open .nav-date {
    display: block;
  }

  body.nav-open .side-nav-head [data-close-nav] {
    display: inline-grid;
  }

  body.nav-open .nav-item {
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: stretch;
    padding: 6px 8px;
  }

  body.nav-open .exhibit-section {
    grid-template-columns: 1fr;
  }

  body.nav-open .section-meta {
    position: static;
  }
}

@media (max-width: 980px) {
  .exhibit-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .ending-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-meta {
    position: static;
  }

  .document-body {
    grid-template-columns: 1fr;
  }

  .page-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .media-open {
    --frame-inset: 7px;
    --frame-padding: 13px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    min-height: 58px;
    padding: 0 12px;
  }

  .design-switcher {
    grid-template-columns: repeat(2, 28px);
  }

  .design-switcher button {
    width: 28px;
    height: 26px;
  }

  .brand {
    display: block;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand span {
    display: none;
  }

  .current-section {
    justify-items: end;
  }

  .current-section b {
    display: none;
  }

  .header-button {
    min-height: 34px;
    padding: 7px 10px;
  }

  .site-header [data-toggle-nav] {
    display: inline-block;
  }

  .layout {
    display: block;
  }

  .side-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    width: auto;
    height: auto;
    transform: none;
    transition: none;
  }

  body.nav-open .side-nav {
    display: grid;
  }

  .side-nav-head {
    min-height: 66px;
  }

  .rail-button {
    display: none;
  }

  [data-close-nav] {
    display: inline-grid;
  }

  .nav-scroll {
    padding: 14px;
  }

  .nav-group {
    margin-bottom: 22px;
  }

  .nav-group-title {
    margin-top: 16px;
  }

  .nav-item {
    min-height: 52px;
    padding: 8px 6px;
  }

  .nav-title {
    font-size: 15px;
  }

  .nav-date,
  .nav-item:hover .nav-date,
  .nav-item.is-active .nav-date {
    max-height: 18px;
    opacity: 1;
  }

  .exhibit-section {
    scroll-margin-top: 62px;
    min-height: auto;
    padding: 44px 18px;
  }

  .intro-section {
    min-height: auto;
  }

  h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .body-copy {
    font-size: 17px;
  }

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

  .media-grid.count-3 figure:first-child {
    grid-row: auto;
  }

  .document-page {
    min-height: auto;
  }

  .document-page img {
    max-height: 62vh;
  }

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

  .lightbox {
    padding: 0;
  }

  .lightbox-panel {
    width: 100%;
    height: 100%;
    border: 0;
  }

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

  .lightbox-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lightbox-stage img {
    max-width: calc(100vw - 32px);
  }

  .section-jumpers {
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .section-jumper {
    width: 34px;
    height: 34px;
    background: rgba(255, 253, 248, 0.78);
  }
}
