:root {
  --paper: #fbfbfa;
  --ink: #0d0d0c;
  --quiet: #767674;
  --line: rgba(13, 13, 12, 0.16);
  --dark: #090909;
  --side: clamp(22px, 4.8vw, 74px);
  --sans: "Helvetica Neue", "Noto Sans SC", "PingFang SC", Arial, sans-serif;
  --serif: "Songti SC", "Noto Serif CJK SC", "Yu Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--side);
  color: #fff;
  mix-blend-mode: difference;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.brand strong {
  font-size: 11px;
  letter-spacing: 0.24em;
}

.brand span {
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sound-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-button {
  width: 38px;
  height: 28px;
  display: flex;
  justify-content: space-between;
  padding: 2px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 1px;
  height: 100%;
  background: currentColor;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateX(8px);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateX(-8px);
}

.menu-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 110px var(--side) 36px;
  visibility: hidden;
  background: var(--paper);
  opacity: 0;
  transition: opacity 500ms ease, visibility 500ms;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-nav a {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  padding: 9px 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.6vw, 102px);
  letter-spacing: -0.05em;
  line-height: 1;
  transition: opacity 300ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-nav a span {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.menu-nav:hover a {
  opacity: 0.18;
}

.menu-nav a:hover {
  opacity: 1;
  transform: translateX(12px);
}

.menu-foot {
  display: flex;
  justify-content: space-between;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-quiet {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px var(--side) 60px;
}

.hero-index,
.hero-place,
.scroll-cue {
  position: absolute;
  margin: 0;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-index {
  top: 24%;
  left: var(--side);
}

.hero-place {
  top: 24%;
  right: var(--side);
}

.scroll-cue {
  bottom: 30px;
  left: var(--side);
}

.hero-mark {
  width: min(1120px, 100%);
}

.hero-mark h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(86px, 14.2vw, 210px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-align: center;
}

.hero-mark > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  margin-top: 55px;
}

.hero-mark strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.hero-mark p {
  margin: 0;
  color: var(--quiet);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.projects-quiet {
  min-height: 100svh;
  padding: 130px var(--side);
  border-top: 1px solid var(--line);
}

.quiet-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 72px;
}

.quiet-heading p {
  margin: 0;
  color: var(--quiet);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quiet-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 74px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-index-shell {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  transition: opacity 350ms ease, padding 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-list:hover .project-row {
  opacity: 0.25;
}

.project-list .project-row:hover,
.project-list .project-row:focus-visible,
.project-row.is-current {
  padding-right: 10px;
  padding-left: 10px;
  opacity: 1;
}

.project-row > span,
.project-row time,
.project-row p {
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.project-row p {
  margin: 3px 0 0;
}

.mobile-project-cover {
  display: none;
}

.project-preview {
  position: sticky;
  top: 14svh;
  margin: 0;
}

.preview-stage {
  position: relative;
  height: 69svh;
  min-height: 480px;
  background: #efefed;
  overflow: hidden;
}

.preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.preview-image.is-visible {
  opacity: 1;
}

.project-preview figcaption {
  margin-top: 12px;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.journal-quiet {
  padding: 150px var(--side);
  border-top: 1px solid var(--line);
}

.journal-quiet .quiet-heading,
.journal-column {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.journal-column {
  border-top: 1px solid var(--line);
}

.journal-line {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.journal-line time,
.journal-line > span,
.journal-line p {
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-line h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
}

.journal-line p {
  margin: 5px 0 0;
}

.about {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(440px, 1.14fr);
  color: #f5f5f3;
  background: var(--dark);
}

.about-portrait {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 33%;
  filter: grayscale(0.18) saturate(0.68) contrast(1.04);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(34px, 8vw, 130px);
}

.about-copy > p {
  margin: 0 0 80px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.8vw, 84px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.social-area {
  margin-top: 100px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.social-area > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-area > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 28px var(--side);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  justify-self: center;
  font-family: var(--serif);
  text-transform: none;
}

.site-footer a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Project detail */

.index-link {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-intro {
  min-height: 82svh;
  display: grid;
  grid-template-columns: 130px minmax(340px, 1fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 36px;
  padding: 120px var(--side) 70px;
}

.project-number,
.project-en,
.project-details {
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 9.6vw, 142px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
}

.project-en {
  margin: 18px 0 0;
}

.project-description > p:first-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.1;
}

.project-details {
  margin: 34px 0 0;
}

.gallery {
  padding: 0 var(--side) 160px;
}

.gallery-item {
  position: relative;
  width: 72%;
  display: block;
  margin: 0 auto clamp(110px, 14vw, 210px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item:nth-child(3n + 2) {
  width: 47%;
  margin-right: 6%;
}

.gallery-item:nth-child(3n) {
  width: 55%;
  margin-left: 4%;
}

.gallery-item img {
  width: 100%;
  max-height: 88svh;
  display: block;
  object-fit: contain;
}

.gallery-item span {
  position: absolute;
  right: 0;
  bottom: -25px;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-nav a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--side);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  transition: background 400ms ease, color 400ms ease;
}

.project-nav a:last-child {
  align-items: flex-end;
  border-left: 1px solid var(--line);
}

.project-nav a:hover {
  color: var(--paper);
  background: var(--ink);
}

.project-nav span {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  visibility: hidden;
  color: #fff;
  background: rgba(5, 5, 5, 0.98);
  opacity: 0;
  transition: opacity 400ms ease, visibility 400ms;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox button {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-prev,
.lightbox-next {
  height: 100%;
  font-size: 20px;
}

.lightbox figure {
  max-width: calc(100vw - 180px);
  max-height: calc(100svh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100svh - 130px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.1em;
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 19px;
    padding-bottom: 19px;
  }

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

  .sound-toggle {
    display: none;
  }

  .menu-button {
    width: 35px;
    height: 27px;
  }

  .menu-panel {
    padding-top: 95px;
  }

  .menu-nav a {
    grid-template-columns: 34px 1fr;
    font-size: clamp(44px, 15vw, 66px);
  }

  .menu-foot p:last-child {
    display: none;
  }

  .hero-quiet {
    min-height: 92svh;
  }

  .hero-index {
    top: 24%;
  }

  .hero-place {
    display: none;
  }

  .hero-mark h1 {
    font-size: clamp(72px, 22vw, 104px);
    line-height: 0.86;
    text-align: left;
  }

  .hero-mark > div {
    display: block;
    margin-top: 62px;
  }

  .hero-mark strong {
    font-size: 31px;
  }

  .hero-mark p {
    margin-top: 10px;
    font-size: 11px;
  }

  .projects-quiet,
  .journal-quiet {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .quiet-heading {
    display: block;
    margin-bottom: 58px;
  }

  .quiet-heading h2 {
    margin-top: 18px;
    font-size: 46px;
  }

  .project-index-shell {
    display: block;
  }

  .project-preview {
    display: none;
  }

  .project-row {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    min-height: auto;
    padding: 25px 0 52px;
  }

  .project-list:hover .project-row {
    opacity: 1;
  }

  .project-list .project-row:hover,
  .project-list .project-row:focus-visible,
  .project-row.is-current {
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-project-cover {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 68svh;
    display: block;
    margin-top: 24px;
    object-fit: contain;
  }

  .journal-line {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 26px 0;
  }

  .journal-line > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about {
    display: block;
  }

  .about-portrait {
    min-height: 78svh;
    height: 78svh;
  }

  .about-copy {
    padding: 86px var(--side);
  }

  .about-copy > p {
    margin-bottom: 48px;
  }

  .about-copy h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .social-area {
    margin-top: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }

  .project-intro {
    min-height: 76svh;
    display: block;
    padding-top: 150px;
  }

  .project-intro h1 {
    margin-top: 70px;
    font-size: clamp(58px, 18vw, 88px);
  }

  .project-description {
    margin-top: 60px;
  }

  .gallery {
    padding-bottom: 100px;
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 2),
  .gallery-item:nth-child(3n) {
    width: 100%;
    margin: 0 auto 90px;
  }

  .project-nav a {
    min-height: 150px;
    font-size: 23px;
  }

  .lightbox {
    grid-template-columns: 42px 1fr 42px;
  }

  .lightbox figure {
    max-width: calc(100vw - 92px);
  }
}

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

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

/* Journal / longform reading */

.reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.reading-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.article-masthead {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 150px var(--side) 46px;
  border-bottom: 1px solid var(--line);
}

.article-kicker,
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-kicker p,
.article-meta p {
  margin: 0;
}

.article-title {
  width: min(980px, 100%);
  align-self: center;
  margin: 8vh auto;
}

.article-eyebrow {
  margin: 0 0 34px;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.article-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 10.5vw, 158px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-align: center;
}

.mobile-title-break {
  display: none;
}

.article-deck {
  margin: 48px auto 0;
  color: #4b4b49;
  font-family: var(--serif);
  font-size: clamp(13px, 1.15vw, 16px);
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
}

.article-begin {
  position: absolute;
  right: auto;
  bottom: 44px;
  left: 50%;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.14em;
  transform: translateX(-50%);
  text-transform: uppercase;
}

.manuscript {
  position: relative;
  padding: clamp(120px, 17vw, 250px) var(--side);
}

.manuscript-note {
  position: sticky;
  top: 48%;
  width: 100%;
  height: 0;
  display: flex;
  justify-content: space-between;
  color: #aaa9a5;
  font-size: 7px;
  letter-spacing: 0.2em;
  pointer-events: none;
  text-transform: uppercase;
}

.manuscript-note span:first-child {
  transform: translateX(calc(-1 * var(--side))) rotate(-90deg);
}

.manuscript-note span:last-child {
  transform: translateX(var(--side)) rotate(90deg);
}

.manuscript-body {
  width: min(35.5em, calc(100vw - var(--side) * 2));
  margin: 0 auto;
  color: #20201e;
  font-family: var(--serif);
  font-size: clamp(16px, 1.38vw, 19px);
  line-height: 2.08;
  text-align: justify;
  text-justify: inter-ideograph;
}

.manuscript-body p {
  margin: 0 0 1.4em;
}

.manuscript-body p:not([class]) {
  text-indent: 2em;
}

.article-loading {
  color: var(--quiet);
  text-align: center;
}

.manuscript-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 0 5.5em;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-align: center;
}

.manuscript-section:not(:first-child) {
  margin-top: 8em;
}

.manuscript-section span {
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.2em;
}

.prologue-line {
  margin-bottom: 0.52em !important;
  font-size: 0.92em;
  letter-spacing: 0.025em;
  text-align: center;
}

.season-mark {
  margin: 8.5em 0 4.5em !important;
  color: #10100f;
  font-size: 1.08em;
  letter-spacing: 0.18em;
  text-align: center;
}

.season-mark::before {
  width: 1px;
  height: 52px;
  display: block;
  margin: 0 auto 32px;
  background: var(--line);
  content: "";
}

.inscription {
  margin: 4em -4em !important;
  font-size: 1.05em;
  letter-spacing: 0.22em;
  line-height: 2.2;
  text-align: center;
}

.closing-poem-title {
  margin: 6em 0 2em !important;
  font-size: 1.12em;
  letter-spacing: 0.42em;
  text-align: center;
}

.closing-poem-line {
  margin: 0 !important;
  letter-spacing: 0.2em;
  text-align: center;
}

.article-end {
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--side) 45px;
  color: #fff;
  background: var(--dark);
}

.article-end > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.article-end h2 {
  align-self: center;
  margin: 90px 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 94px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.article-end > div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-line[href] {
  transition: padding 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.journal-line[href]:hover,
.journal-line[href]:focus-visible {
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 860px) {
  .article-masthead {
    min-height: 92svh;
    padding-top: 120px;
    padding-bottom: 32px;
  }

  .article-kicker p:last-child,
  .article-meta p:nth-child(2) {
    display: none;
  }

  .article-title {
    margin: 7vh auto;
  }

  .article-eyebrow {
    margin-bottom: 28px;
  }

  .article-title h1 {
    font-size: clamp(60px, 18.5vw, 78px);
    line-height: 1.06;
  }

  .mobile-title-break {
    display: inline;
  }

  .article-deck {
    margin-top: 42px;
    font-size: 12px;
    line-height: 2.2;
  }

  .article-begin,
  .manuscript-note {
    display: none;
  }

  .manuscript {
    padding-top: 110px;
    padding-bottom: 130px;
  }

  .manuscript-body {
    width: min(100%, 31em);
    font-size: 16px;
    line-height: 2.05;
    text-align: left;
  }

  .manuscript-body p {
    margin-bottom: 1.55em;
  }

  .manuscript-section {
    margin-bottom: 4.5em;
  }

  .manuscript-section:not(:first-child) {
    margin-top: 7em;
  }

  .prologue-line {
    text-align: left;
  }

  .season-mark {
    margin-top: 7em !important;
  }

  .inscription {
    margin-right: 0 !important;
    margin-left: 0 !important;
    letter-spacing: 0.12em;
  }

  .closing-poem-line {
    letter-spacing: 0.12em;
  }

  .article-end {
    min-height: 72svh;
    padding-top: 70px;
  }

  .article-end h2 {
    align-self: flex-start;
  }
}
