
:root {
  --paper: #f1eee7;
  --paper-deep: #e8e4dc;
  --ink: #1d1d1a;
  --muted: #77746d;
  --faint: #aaa69d;
  --line: rgba(29, 29, 26, 0.2);
  --line-soft: rgba(29, 29, 26, 0.1);
  --vermilion: #9e3f2f;
  --mincho: "Songti TC", "STSongti-TC-Regular", "Noto Serif TC", "Source Han Serif TC", "PMingLiU", serif;
  --gothic: "PingFang TC", "Noto Sans TC", "Source Han Sans TC", "Microsoft JhengHei", sans-serif;
  --roman-serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --roman-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --rail-space: 76px;
}

html[lang="en"] {
  --mincho: var(--roman-serif);
  --gothic: var(--roman-sans);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mincho);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border-radius: 0;
}

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

::selection {
  background: var(--ink);
  color: var(--paper);
}

.label-face {
  font-family: var(--gothic);
}

.paper-section {
  position: relative;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 18% 27%, rgba(255, 255, 255, 0.34), transparent 34%),
    repeating-linear-gradient(92deg, rgba(29, 29, 26, 0.008) 0 1px, transparent 1px 6px);
}

.paper-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.022'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
  mix-blend-mode: multiply;
}

.paper-section > * {
  position: relative;
  z-index: 1;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1.25s var(--ease-out),
    transform 1.25s var(--ease-out);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.side-rail {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 50;
  display: flex;
  width: 44px;
  height: min(76svh, 690px);
  padding: 3px 0;
  align-items: center;
  color: #fff;
  gap: 18px;
  background: transparent;
  mix-blend-mode: difference;
  transform: translateY(-50%);
  flex-direction: column;
}

.side-rail nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}

.side-rail a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--gothic);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.38;
  transition: opacity 600ms var(--ease-out);
  writing-mode: vertical-rl;
}

.side-rail a:hover,
.side-rail a.active {
  opacity: 1;
}

.nav-dot {
  width: 3px;
  height: 3px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background-color 500ms ease, transform 500ms var(--ease-out);
}

.side-rail a.active .nav-dot {
  background: currentColor;
  transform: scale(1.65);
}

.rail-line {
  width: 1px;
  min-height: 28px;
  flex: 1;
  background: currentColor;
  opacity: 0.25;
}

.side-rail button {
  display: flex;
  padding: 0;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--gothic);
  font-size: 9px;
  letter-spacing: 0.14em;
  opacity: 0.46;
  gap: 7px;
  transition: opacity 600ms var(--ease-out);
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.side-rail .language-toggle {
  letter-spacing: 0.08em;
}

.side-rail button:hover,
.side-rail button.sound-on {
  opacity: 1;
}

.sound-mark {
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.sound-on .sound-mark {
  background: currentColor;
  animation: sound-pulse 2.8s ease-in-out infinite;
}

@keyframes sound-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; }
  50% { box-shadow: 0 0 0 4px transparent; }
}

.hero {
  min-height: 100svh;
  padding: 4.8vw calc(7vw + var(--rail-space)) 4.5vw 6.5vw;
  overflow: hidden;
}

.hero-meta {
  position: absolute;
  top: 4.8vw;
  right: calc(7vw + var(--rail-space));
  left: 6.5vw;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.hero-title-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(77vw, 1120px);
  transform: translate3d(calc(-50% - var(--rail-space) / 2), -51%, 0);
}

html.reveal-ready .hero-title-block[data-reveal] {
  transform: translate3d(calc(-50% - var(--rail-space) / 2), calc(-51% + 22px), 0);
}

html.reveal-ready .hero-title-block[data-reveal].is-visible {
  transform: translate3d(calc(-50% - var(--rail-space) / 2), -51%, 0);
}

.hero-kicker {
  margin: 0 0 clamp(2rem, 4vw, 4.5rem);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-align: center;
}

.hero h1 {
  display: flex;
  margin: 0;
  align-items: baseline;
  justify-content: center;
  font-family: var(--mincho);
  font-size: clamp(6.5rem, 16vw, 14.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-left: clamp(1.4rem, 6vw, 7rem);
}

.hero h1 span:nth-child(2) {
  font-size: 0.56em;
  color: var(--vermilion);
  transform: translateY(-0.18em);
}

.hero h1.hero-title-en {
  align-items: center;
  font-size: clamp(3.8rem, 7.7vw, 8.7rem);
  letter-spacing: 0.015em;
  line-height: 0.78;
  flex-direction: column;
}

.hero h1.hero-title-en span + span {
  margin-top: 0.26em;
  margin-left: 0;
}

.hero h1.hero-title-en span:nth-child(2) {
  margin-left: 0.42em;
  font-size: 0.27em;
  letter-spacing: 0.42em;
  transform: none;
}

html[lang="en"] .hero-kicker,
html[lang="en"] .hero-en {
  letter-spacing: 0.3em;
}

html[lang="en"] .prologue-answer {
  padding-left: 8%;
}

html[lang="en"] .essay-mark {
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

html[lang="en"] .footer-question {
  font-size: clamp(2rem, 4.6vw, 5rem);
  letter-spacing: 0.035em;
}

.hero-en {
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.62em;
  text-align: center;
}

.hero-axis {
  position: absolute;
  right: calc(11vw + var(--rail-space));
  bottom: 18vh;
  display: flex;
  width: min(26vw, 360px);
  align-items: center;
}

.hero-axis span {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.hero-axis i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vermilion);
}

.hero-question {
  position: absolute;
  bottom: 8.5vh;
  left: 6.5vw;
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  letter-spacing: 0.22em;
}

.hero-year {
  position: absolute;
  right: calc(7vw + var(--rail-space));
  bottom: 8.5vh;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.3em;
}

.section-heading {
  display: flex;
  padding-bottom: 1.1rem;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--gothic);
  font-size: 10px;
  letter-spacing: 0.32em;
}

.section-number {
  color: var(--muted);
  letter-spacing: 0.12em;
}

.prologue {
  min-height: 126svh;
  padding: 8vw calc(8vw + var(--rail-space)) 10vw 7vw;
}

.prologue-layout {
  display: grid;
  min-height: 102svh;
  padding-top: 9vw;
  align-items: center;
  gap: clamp(3rem, 7vw, 9rem);
  grid-template-columns: minmax(260px, 0.75fr) minmax(440px, 1.25fr);
}

.prologue-copy > p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: 0.1em;
}

.prologue-copy .question {
  margin-top: 1.1rem;
  font-size: clamp(2.25rem, 4.6vw, 5.3rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.prologue-answer {
  margin-top: clamp(4.5rem, 12vh, 9rem);
  padding-left: 18%;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  letter-spacing: 0.1em;
  line-height: 2.15;
}

.prologue-answer p {
  margin: 0;
}

.editorial-figure,
.work-frame {
  margin: 0;
}

.image-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.image-ratio img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-note {
  display: grid;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.2em;
  grid-template-columns: 48px 1fr auto;
}

.poem {
  min-height: 310svh;
  padding: 8vw calc(10vw + var(--rail-space)) 12vw 8vw;
}

.poem-grid {
  display: grid;
  min-height: 278svh;
  padding-top: 8vw;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.poem-stanza {
  align-self: center;
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  letter-spacing: 0.09em;
  line-height: 2.05;
}

.poem-stanza p {
  margin: 0;
}

.stanza-one {
  grid-column: 2 / 8;
  grid-row: 1;
}

.stanza-two {
  grid-column: 7 / 13;
  grid-row: 2;
}

.stanza-three {
  grid-column: 3 / 11;
  grid-row: 3;
}

.stanza-four {
  max-width: 48rem;
  grid-column: 5 / 13;
  grid-row: 4;
}

.poem-ending {
  margin-top: 5rem !important;
  color: var(--vermilion);
  font-size: clamp(1.45rem, 2.5vw, 2.8rem);
}

.poem-final-line {
  display: block;
  margin-top: 4.5rem;
  color: var(--vermilion);
  font-size: clamp(1.45rem, 2.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.55;
}

.interlude {
  display: grid;
  min-height: 145svh;
  padding: 13vw calc(9vw + var(--rail-space)) 13vw 9vw;
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(480px, 1.25fr) minmax(220px, 0.55fr);
}

.interlude-quote {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  letter-spacing: 0.13em;
  line-height: 1.85;
}

.essay {
  padding: 9vw calc(10vw + var(--rail-space)) 14vw 8vw;
}

.essay-layout {
  display: grid;
  margin-top: 9vw;
  gap: clamp(4rem, 8vw, 10rem);
  grid-template-columns: minmax(140px, 0.45fr) minmax(360px, 1.55fr);
}

.essay-aside {
  position: sticky;
  top: 12vh;
  display: flex;
  height: 76vh;
  align-items: center;
  color: var(--muted);
  font-family: var(--gothic);
  font-size: 8px;
  letter-spacing: 0.3em;
  flex-direction: column;
}

.essay-mark {
  color: var(--ink);
  font-family: var(--mincho);
  font-size: clamp(6rem, 12vw, 12rem);
  line-height: 0.95;
}

.essay-rule {
  width: 1px;
  margin: 2.5rem 0;
  flex: 1;
  background: var(--line);
}

.essay-aside > span:last-child {
  writing-mode: vertical-rl;
}

.essay-body {
  max-width: 750px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.035em;
  line-height: 2.15;
}

.essay-body p {
  margin: 0 0 2.25rem;
}

.essay-body strong {
  font-weight: 500;
}

.essay-lead {
  margin-bottom: 7rem !important;
  font-size: clamp(1.7rem, 3.1vw, 3.5rem);
  line-height: 1.58 !important;
}

.essay-lead strong,
.essay-question strong {
  display: block;
  margin-top: 1.2rem;
}

.essay-lead strong {
  color: var(--vermilion);
}

.essay-question {
  margin: 8rem 0 !important;
  padding: 3.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.25rem, 1.9vw, 2rem);
  line-height: 1.85 !important;
}

.pull-quote {
  margin: 9rem 0 !important;
  font-size: clamp(1.9rem, 3.7vw, 4.2rem);
  line-height: 1.52 !important;
}

.essay-ending {
  display: flex;
  margin-top: 9rem;
  padding-top: 4rem;
  border-top: 1px solid var(--ink);
  gap: 1.4rem;
  flex-direction: column;
}

.essay-ending strong {
  font-size: clamp(1.4rem, 2.3vw, 2.45rem);
}

.essay-ending p {
  margin-top: 5rem;
  color: var(--muted);
}

.works {
  padding-bottom: 16vw;
}

.works-intro {
  min-height: 90svh;
  padding: 9vw calc(10vw + var(--rail-space)) 10vw 8vw;
}

.works-intro h2 {
  max-width: 820px;
  margin: 12vh 0 0;
  font-size: clamp(3rem, 6.8vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.works-intro > p {
  max-width: 31rem;
  margin: 8rem 0 0 auto;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 2;
}

.works-list {
  display: flex;
  padding: 5vw calc(9vw + var(--rail-space)) 0 8vw;
  gap: clamp(9rem, 18vw, 17rem);
  flex-direction: column;
}

.work-frame {
  width: min(78vw, 1120px);
}

.work-frame:nth-child(even) {
  align-self: flex-end;
}

.work-frame:nth-child(3n) {
  width: min(68vw, 980px);
  align-self: center;
}

.work-image-wrap {
  box-shadow: 0 18px 70px rgba(29, 29, 26, 0.045);
}

.work-image {
  transition: filter 1.2s ease;
}

.work-frame figcaption {
  display: flex;
  margin-top: 1.2rem;
  padding-top: 1rem;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
}

.work-frame figcaption > div {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.work-number,
.work-frame small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.work-frame h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.footer {
  min-height: 112svh;
  padding: 9vw calc(8vw + var(--rail-space)) 4vw 7vw;
}

.footer-question {
  display: grid;
  min-height: 65svh;
  align-items: center;
  font-size: clamp(3.7rem, 9vw, 10rem);
  line-height: 1;
  grid-template-columns: auto minmax(80px, 1fr) auto;
}

.footer-question i {
  height: 1px;
  margin: 0 clamp(2rem, 6vw, 8rem);
  background: var(--line);
}

.footer-question span:last-child {
  color: var(--vermilion);
}

.footer-continuation {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  letter-spacing: 0.2em;
  text-align: center;
}

.copyright {
  margin-top: 14vh;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--gothic);
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.9;
}

.copyright-primary {
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-between;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.copyright-primary a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.35em;
  transition: text-decoration-color 500ms var(--ease-out);
}

.copyright-primary a:hover,
.copyright-primary a:focus-visible {
  text-decoration-color: currentColor;
}

.copyright p {
  margin: 0;
}

@media (max-width: 900px) {
  :root {
    --rail-space: 48px;
  }

  .side-rail {
    right: 6px;
    width: 38px;
  }

  .prologue-layout,
  .interlude {
    grid-template-columns: 1fr;
  }

  .prologue-layout {
    padding-top: 12vw;
  }

  .prologue-copy {
    max-width: 620px;
  }

  .editorial-figure {
    width: 100%;
  }

  .interlude {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }

  .interlude-figure {
    order: 2;
  }

  .interlude-quote {
    order: 1;
  }

  .essay-layout {
    gap: 5vw;
    grid-template-columns: 100px 1fr;
  }

  .work-frame,
  .work-frame:nth-child(3n) {
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --rail-space: 0px;
  }

  .side-rail {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: auto;
    height: 38px;
    padding: 0 10px;
    gap: 10px;
    transform: none;
    flex-direction: row;
  }

  .side-rail nav {
    gap: 11px;
    flex-direction: row;
  }

  .side-rail a {
    gap: 4px;
    font-size: 8px;
    letter-spacing: 0.08em;
    writing-mode: horizontal-tb;
  }

  .nav-dot {
    width: 2px;
    height: 2px;
  }

  .nav-label {
    display: none;
  }

  .rail-line {
    width: 20px;
    height: 1px;
    min-height: 0;
    flex: none;
  }

  .side-rail button {
    font-size: 8px;
    writing-mode: horizontal-tb;
  }

  .hero {
    padding: 28px 24px 34px;
  }

  .hero-meta {
    top: 28px;
    right: 24px;
    left: 24px;
    font-size: 7px;
    letter-spacing: 0.14em;
  }

  .hero-title-block {
    width: 88vw;
    transform: translate3d(-50%, -51%, 0);
  }

  html.reveal-ready .hero-title-block[data-reveal] {
    transform: translate3d(-50%, calc(-51% + 22px), 0);
  }

  html.reveal-ready .hero-title-block[data-reveal].is-visible {
    transform: translate3d(-50%, -51%, 0);
  }

  .hero-kicker {
    margin-bottom: 2.8rem;
    font-size: 8px;
  }

  .hero h1 {
    font-size: 27vw;
  }

  .hero h1.hero-title-en {
    font-size: 15vw;
  }

  .hero h1 span + span {
    margin-left: 5vw;
  }

  .hero-en {
    margin-top: 3rem;
    font-size: 7px;
    letter-spacing: 0.38em;
  }

  .hero-axis {
    right: 24px;
    bottom: 16vh;
    width: 34vw;
  }

  .hero-question {
    bottom: 8.5vh;
    left: 24px;
    font-size: 0.8rem;
  }

  .hero-year {
    right: 24px;
    bottom: 8.5vh;
  }

  .prologue,
  .poem,
  .essay {
    padding-right: 24px;
    padding-left: 24px;
  }

  .prologue {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 110px;
  }

  .prologue-layout {
    min-height: auto;
    padding-top: 80px;
    gap: 90px;
  }

  .prologue-copy .question {
    font-size: 10vw;
  }

  .prologue-answer {
    margin-top: 70px;
    padding-left: 17vw;
    font-size: 0.9rem;
  }

  .image-note {
    grid-template-columns: 36px 1fr auto;
    font-size: 7px;
  }

  .poem {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 140px;
  }

  .poem-grid {
    display: flex;
    min-height: auto;
    padding: 100px 5vw 0;
    gap: 130px;
    flex-direction: column;
  }

  .poem-stanza {
    align-self: flex-start;
    font-size: 1.05rem;
  }

  .poem-stanza:nth-child(even) {
    align-self: flex-end;
  }

  .poem-ending {
    margin-top: 3.5rem !important;
    font-size: 1.25rem;
  }

  .poem-final-line {
    margin-top: 3.5rem;
    font-size: 1.25rem;
  }

  .interlude {
    min-height: auto;
    padding: 120px 24px;
    gap: 70px;
  }

  .interlude-quote {
    font-size: 1.55rem;
  }

  .essay {
    padding-top: 72px;
    padding-bottom: 130px;
  }

  .essay-layout {
    display: block;
    margin-top: 90px;
  }

  .essay-aside {
    display: none;
  }

  .essay-body {
    font-size: 1rem;
    line-height: 2.05;
  }

  .essay-lead {
    margin-bottom: 5rem !important;
    font-size: 1.65rem;
  }

  .essay-question {
    margin: 5.5rem 0 !important;
    padding: 2.7rem 0;
    font-size: 1.22rem;
  }

  .pull-quote {
    margin: 6rem 0 !important;
    font-size: 1.85rem;
  }

  .essay-ending {
    margin-top: 6rem;
  }

  .works {
    padding-bottom: 140px;
  }

  .works-intro {
    min-height: 92svh;
    padding: 72px 24px 90px;
  }

  .works-intro h2 {
    margin-top: 15vh;
    font-size: 12vw;
  }

  .works-intro > p {
    margin-top: 6rem;
    font-size: 0.82rem;
  }

  .works-list {
    padding: 60px 24px 0;
    gap: 120px;
  }

  .work-frame figcaption {
    align-items: flex-start;
    gap: 0.8rem;
    flex-direction: column;
  }

  .work-frame figcaption > div {
    gap: 1rem;
  }

  .work-frame h3 {
    font-size: 1.35rem;
  }

  .footer {
    min-height: 100svh;
    padding: 70px 24px 82px;
  }

  .footer-question {
    min-height: 55svh;
    font-size: 14vw;
    grid-template-columns: auto 1fr auto;
  }

  .footer-question i {
    margin: 0 5vw;
  }

  .footer-continuation {
    font-size: 0.9rem;
    line-height: 2;
  }

  .copyright {
    margin-top: 12vh;
    font-size: 7px;
  }

  .copyright-primary {
    gap: 0.7rem;
    font-size: 8px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.reveal-ready [data-reveal],
  html.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  html.reveal-ready .hero-title-block[data-reveal],
  html.reveal-ready .hero-title-block[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(calc(-50% - var(--rail-space) / 2), -51%, 0);
  }
}
