@font-face {
  font-family: "Great Vibes";
  src: url("./assets/GreatVibes-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("./assets/NotoSerif-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("./assets/NotoSerif-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("./assets/NotoSerif-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif";
  src: url("./assets/NotoSerif-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #eeeeec;
  --ink: #202020;
  --muted: #62605d;
  --red: #970808;
  --line: #b8b4ae;
  --header: rgba(10, 10, 10, 0.72);
  --serif: "Noto Serif", Georgia, "Times New Roman", serif;
  --sans: "Noto Serif", Georgia, "Times New Roman", serif;
  --script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.panel {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  padding: clamp(70px, 8vw, 150px) clamp(20px, 6vw, 120px);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 6vw, 120px);
  background: var(--header);
  color: #f0efed;
  backdrop-filter: blur(10px);
}

.brand {
  position: absolute;
  left: clamp(22px, 17vw, 330px);
  width: 74px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(85%) saturate(4521%) hue-rotate(357deg) brightness(84%) contrast(111%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 48px);
  font-size: 15px;
  letter-spacing: 0;
}

.site-nav a {
  opacity: 0.84;
  transition: color 220ms ease, opacity 220ms ease;
}

.site-nav a:hover {
  color: #fff;
  opacity: 1;
}

.site-nav a + a {
  position: relative;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: calc(clamp(18px, 2.6vw, 48px) / -2);
  top: 50%;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: #fff;
}

.hero {
  height: clamp(640px, 52.1vw, 1000px);
  min-height: 0;
  padding: 0;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: url("./assets/hero-bg.webp") center / cover;
  filter: grayscale(1) contrast(1.1);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.22), transparent 28%);
}

.hero-inner {
  position: relative;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.hero h1 {
  position: absolute;
  left: 6.04%;
  top: 24.3%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(112px, 10.6vw, 204px);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-left: 11.05vw;
  margin-top: 0.04em;
}

.hero h1 b {
  color: var(--red);
  font-weight: 600;
}

.hero blockquote {
  position: absolute;
  left: 61.8%;
  top: 68.4%;
  margin: 0;
  max-width: 640px;
  font-family: var(--script);
  font-size: clamp(31px, 2.05vw, 39px);
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero blockquote span {
  display: block;
}

.torn-edge {
  --tear-height: clamp(47px, 6.5vw, 107px);
  position: relative;
  z-index: 8;
  width: 100%;
  max-width: 100vw;
  height: var(--tear-height);
  margin-top: calc(var(--tear-height) * -0.5);
  margin-bottom: calc(var(--tear-height) * -0.5);
  overflow: hidden;
  pointer-events: none;
}

.torn-edge::before {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 50%;
  width: 146vw;
  min-width: 146%;
  transform: translateX(-50%);
  background: url("./assets/line.svg") center / 100% 100% no-repeat;
}

.about {
  height: 1004px;
  min-height: 1004px;
  padding: 0;
  background: #050505;
  color: #f2f2f0;
}

.about-grid {
  position: relative;
  display: block;
  width: 1920px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
}

.about-copy {
  position: absolute;
  z-index: 3;
  left: 8.23%;
  top: 13.65%;
  width: 40.2%;
  max-width: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.43;
}

.about-copy p {
  margin: 0 0 14px;
}

.portrait-wrap {
  --author-grayscale: 1;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  left: auto;
  width: 48.4%;
  height: 100%;
  margin: 0;
  filter: grayscale(var(--author-grayscale));
  overflow: hidden;
  transition: filter 260ms ease;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 48%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #050505 0%,
    rgba(5, 5, 5, 0.99) 12%,
    rgba(5, 5, 5, 0.9) 30%,
    rgba(5, 5, 5, 0.52) 62%,
    rgba(5, 5, 5, 0) 100%
  );
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: right top;
}

.about-heading {
  position: absolute;
  left: 8.18%;
  top: 68%;
  z-index: 5;
}

.about-heading h2,
.books h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 202px;
  font-weight: 500;
  line-height: 0.9;
}

.about-heading p {
  margin: -16px 0 0 42.5%;
  color: var(--red);
  font-family: var(--script);
  font-size: 43px;
  line-height: 1;
}

.mark,
.quote,
.giant-symbol {
  position: absolute;
  user-select: none;
  pointer-events: none;
  font-family: var(--serif);
  line-height: 1;
}

.parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.mark-left {
  z-index: 4;
  left: 3.75%;
  top: 72px;
  color: var(--red);
  font-size: 134px;
}

.quote {
  z-index: 3;
  color: #fff;
  font-size: 360px;
  text-shadow: 0 0 38px rgba(0, 0, 0, 0.25);
}

.quote-top {
  left: 50.5%;
  top: 88px;
}

.quote-bottom {
  left: 50.5%;
  top: 388px;
}

.photo-strip {
  --strip-height: 273px;
  --strip-gap: 8px;
  position: relative;
  z-index: 3;
  display: block;
  height: var(--strip-height);
  overflow: hidden;
  background: #111;
  border-block: 0;
}

.photo-track {
  display: flex;
  align-items: center;
  gap: var(--strip-gap);
  width: max-content;
  height: 100%;
  animation: photo-marquee 46s linear infinite;
  will-change: transform;
}

.photo-strip:hover .photo-track {
  animation-play-state: paused;
}

.photo-thumb {
  flex: 0 0 auto;
  width: auto;
  height: var(--strip-height);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.photo-thumb img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  transition: filter 300ms ease, transform 300ms ease;
}

.photo-thumb:hover img,
.photo-thumb:focus-visible img {
  filter: grayscale(0);
  transform: scale(1.025);
}

@keyframes photo-marquee {
  from {
    transform: translate3d(calc(-50% - var(--strip-gap) / 2), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.photo-lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 56px;
  background: rgba(0, 0, 0, 0.86);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox img {
  max-width: min(92vw, 1500px);
  max-height: 86vh;
  width: auto;
  height: auto;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.5);
}

.photo-lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.muse-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 18px;
  place-items: center;
  padding: 34px clamp(18px, 4vw, 70px) 30px;
  background: rgba(238, 238, 236, 0.96);
}

.muse-lightbox[hidden] {
  display: none;
}

.muse-lightbox img {
  max-width: calc(100vw - clamp(36px, 8vw, 140px));
  max-height: calc(100svh - 174px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.26));
}

.muse-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
}

.muse-lightbox-title {
  color: var(--red);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.muse-lightbox-controls {
  display: grid;
  grid-template-columns: 70px auto 70px;
  gap: 22px;
  align-items: center;
}

.muse-lightbox-arrow,
.muse-download {
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-family: var(--serif);
  cursor: pointer;
}

.muse-lightbox-arrow {
  font-size: 62px;
  line-height: 0.8;
}

.muse-download {
  display: inline-grid;
  place-items: center;
  padding: 0 44px;
  background: var(--red);
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  text-decoration: none;
}

.work {
  padding-top: 86px;
  min-height: 1700px;
}

.work::before,
.work::after {
  content: "";
  position: absolute;
  z-index: 1;
  height: 7px;
  background: var(--red);
}

.work::before {
  top: 86px;
  left: 0;
  width: min(52vw, 920px);
}

.work::after {
  top: 354px;
  left: clamp(360px, 28.5vw, 548px);
  right: 0;
}

.books-copy::before,
.books-copy::after,
.book-item::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.work-intro {
  position: relative;
  z-index: 2;
  width: min(810px, 46vw);
  min-height: 326px;
  padding-top: 62px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
}

.split-title {
  position: absolute;
  right: clamp(54px, 8vw, 150px);
  top: 140px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(112px, 9.9vw, 190px);
  font-weight: 400;
  line-height: 0.74;
}

.split-title span {
  display: block;
}

.split-title span:last-child {
  margin-left: clamp(80px, 9vw, 190px);
}

.poetry-title .poetry-title-note {
  display: block;
  width: max-content;
  margin: 22px auto 0 4%;
  color: var(--red);
  font-family: var(--script);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.poetry-title .poetry-title-main {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: #272727;
}

.poetry-title .poetry-title-main span {
  display: inline;
  margin-left: 0;
  color: var(--red);
}

.poetry-title .poetry-title-main::before,
.poetry-title .poetry-title-main::after {
  content: none;
}

.poetry-title .poetry-title-main::before {
  left: -24px;
  top: -28px;
  width: min(38vw, 680px);
}

.poetry-title .poetry-title-main::after {
  right: -24px;
  bottom: -28px;
  width: min(38vw, 680px);
}

.poetry-console {
  position: relative;
  z-index: 2;
  margin-top: 14px;
}

.poetry-controls {
  font-family: var(--serif);
  font-size: clamp(17px, 1.25vw, 24px);
}

.poetry-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(18px, 3vw, 58px);
  align-items: end;
  padding-bottom: 28px;
}

.poetry-control {
  display: grid;
  gap: 8px;
}

.poetry-control span {
  color: var(--red);
  font-size: clamp(20px, 1.55vw, 30px);
}

.poetry-control select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 4px;
  color: var(--ink);
  outline-color: var(--red);
  font: inherit;
  cursor: pointer;
}

.poetry-list-toggle {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 30px;
  border: 0;
  background: #2b2b2b;
  color: white;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1;
}

.poetry-list-toggle[aria-expanded="true"] {
  background: #171717;
}

.poetry-nav-row {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 72px);
  min-height: 76px;
  border-bottom: 2px solid var(--line);
}

.poetry-arrow,
.random-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
}

.poetry-arrow {
  padding: 8px 0 12px;
  color: var(--red);
  font-size: clamp(42px, 4.5vw, 86px);
  line-height: 1;
}

.poetry-arrow:first-child {
  justify-self: start;
}

.poetry-arrow:last-child {
  justify-self: end;
}

.poem-layout {
  padding-top: 80px;
}

.poem-detail {
  max-width: 1160px;
}

.poem-detail-title {
  margin: 0 0 58px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.6vw, 108px);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
}

.poem-detail-head {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(280px, 1fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  margin-bottom: 76px;
}

.poem-detail-head > img {
  width: 100%;
  background: white;
  filter: grayscale(1);
  transition: filter 2200ms ease;
}

.poem-detail-head > img.is-color-resetting {
  filter: grayscale(1);
  transition: none;
}

.poem-detail-head > img.is-color-visible {
  filter: grayscale(0);
}

.poem-card {
  max-width: 720px;
  overflow: visible;
  padding-right: 24px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.32;
  scrollbar-color: var(--red) transparent;
}

.poem-card h3 {
  margin: 0 0 36px;
  font-size: clamp(20px, 2vw, 34px);
  letter-spacing: 0;
}

.poem-card p {
  margin: 0 0 26px;
}

.poem-meta {
  position: relative;
  max-width: 760px;
}

.random-link {
  display: inline-block;
  padding: 8px 0 12px;
  color: var(--red);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.1;
}

.poem-meta p {
  font-size: clamp(15px, 1.05vw, 19px);
}

.poem-like {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(18px, 1.35vw, 26px);
}

.poem-like img {
  width: 32px;
  filter: none;
}

.poem-like.is-liked img {
  transform: scale(1.12);
}

.poem-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
}

.poem-share,
.poem-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(16px, 1.15vw, 21px);
  text-decoration: none;
}

.poem-share {
  padding: 0 22px;
}

.poem-social {
  width: 44px;
}

.poem-social img {
  width: 28px;
  height: 28px;
}

.poem-meta h4 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 66px);
  line-height: 1;
}

.poem-meta h4:not(:first-of-type) {
  margin-top: 72px;
}

.poem-meta p + p {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.poem-books {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(15px, 1.05vw, 19px);
}

.poem-books span {
  border-left: 3px solid var(--red);
  padding-left: 12px;
}

.poem-reviews {
  max-width: 760px;
  margin-top: 76px;
  font-family: var(--serif);
}

.poem-reviews h4 {
  margin: 0 0 30px;
  font-size: clamp(28px, 2.4vw, 46px);
}

.poem-review {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.poem-review header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 10px;
  font-size: clamp(16px, 1.1vw, 20px);
}

.poem-review time,
.poem-review strong {
  color: var(--red);
}

.review-name-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 0;
  color: var(--red);
  cursor: pointer;
  font: inherit;
}

.poem-review p {
  margin: 0;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
}

.poem-list-panel {
  border-bottom: 2px solid var(--line);
  padding: 22px 0 24px;
}

.poem-list {
  display: grid;
  gap: 8px;
  max-height: 390px;
  overflow: auto;
  padding-right: 10px;
  scrollbar-color: var(--red) transparent;
}

.poem-list button {
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  padding: 7px 0 7px 12px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.2;
  text-align: left;
}

.poem-list button:hover,
.poem-list button:focus-visible,
.poem-list button.active {
  border-left-color: var(--red);
  color: var(--red);
}

.review-button {
  display: inline-grid;
  place-items: center;
  margin-top: 55px;
  min-width: 290px;
  min-height: 78px;
  background: var(--red);
  color: white;
  font-family: var(--serif);
  font-size: 21px;
  border: 0;
  cursor: pointer;
}

.review-modal,
.phone-modal,
.book-owner-modal,
.book-owner-list-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.74);
}

@media (min-width: 981px) {
  .poem-layout {
    padding-top: 62px;
  }

  .poem-detail {
    display: grid;
    grid-template-columns: minmax(520px, 47%) minmax(520px, 1fr);
    column-gap: clamp(72px, 8vw, 150px);
    align-items: start;
    max-width: none;
  }

  .poem-detail-title {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 34px;
    font-size: clamp(24px, 1.65vw, 34px);
    line-height: 1.05;
    text-align: left;
  }

  .poem-card {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
    padding-top: 88px;
    padding-right: 0;
    font-size: clamp(15px, 1.05vw, 19px);
    line-height: 1.28;
  }

  .poem-card p {
    margin-bottom: 26px;
  }

  .poem-detail-head {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(140px, 190px) minmax(260px, 1fr);
    gap: 34px;
    align-items: start;
    margin: 0 0 36px;
  }

  .poem-detail-head > img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
  }

  .poem-meta {
    max-width: 360px;
  }

  .poem-meta h4 {
    margin: 0 0 4px;
    font-size: clamp(22px, 1.55vw, 32px);
    font-weight: 700;
    line-height: 1;
  }

  .poem-meta h4:not(:first-of-type) {
    margin-top: 30px;
  }

  .poem-meta p,
  .poem-books {
    font-size: clamp(18px, 1.25vw, 24px);
    line-height: 1.06;
  }

  .poem-books {
    display: grid;
    gap: 4px;
  }

  .poem-books span {
    border-left: 0;
    padding-left: 0;
  }

  .poem-actions {
    grid-column: 1;
    grid-row: 3;
    flex-wrap: nowrap;
    gap: 16px;
    max-width: 620px;
    margin: 52px 0 0;
    padding-top: 22px;
  }

  .poem-like img {
    width: 36px;
  }

  .poem-share {
    min-width: 190px;
    padding: 0 30px;
  }

  .poem-social {
    width: 52px;
  }

  .poem-share,
  .poem-social {
    min-height: 52px;
  }

  .poem-reviews {
    grid-column: 2;
    grid-row: 1;
    max-width: 610px;
    margin: 0;
    padding-top: 180px;
  }

  .poem-reviews h4 {
    margin: 0 0 34px;
    font-size: clamp(22px, 1.5vw, 30px);
    font-weight: 700;
  }

  .poem-review {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0 22px;
    padding: 0 0 42px;
    border-top: 0;
  }

  .poem-review::before {
    content: "* * *";
    grid-column: 1;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
  }

  .poem-review header,
  .poem-review p {
    grid-column: 2;
  }

  .poem-review header {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
    font-size: clamp(15px, 1vw, 18px);
  }

  .poem-review time,
  .poem-review strong,
  .review-name-button {
    color: var(--ink);
  }

  .poem-review p,
  .poem-review-empty {
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 700;
    line-height: 1.18;
  }

  .review-button {
    display: grid;
    width: 355px;
    min-width: 355px;
    min-height: 74px;
    margin: 42px 0 0;
    font-size: 23px;
  }
}

.review-modal[hidden],
.phone-modal[hidden],
.book-owner-modal[hidden],
.book-owner-list-modal[hidden] {
  display: none;
}

.review-form,
.phone-card,
.book-owner-form,
.book-owner-list-card {
  position: relative;
  width: min(620px, 100%);
  background: #f2f2f0;
  padding: clamp(28px, 5vw, 52px);
  color: var(--ink);
  font-family: var(--serif);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.4);
}

.review-form h2,
.phone-card h2,
.book-owner-form h2,
.book-owner-list-card h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.review-close,
.phone-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.review-form label,
.book-owner-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  font-size: clamp(17px, 1.3vw, 22px);
}

.review-form input,
.review-form textarea,
.book-owner-form input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  color: var(--ink);
  outline-color: var(--red);
  font: inherit;
}

.review-form textarea {
  resize: vertical;
  min-height: 150px;
}

.review-form button[type="submit"],
.book-owner-form button[type="submit"] {
  min-height: 58px;
  min-width: 190px;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  font: inherit;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.phone-card p {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  color: var(--red);
}

#book-owner-book {
  margin: -14px 0 28px;
  color: var(--red);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 700;
}

.book-owner-list {
  display: grid;
  gap: 18px;
  max-height: min(58vh, 560px);
  overflow: auto;
  padding-right: 6px;
}

.book-owner-list article {
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

.book-owner-list h3 {
  margin: 0 0 5px;
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.05;
}

.book-owner-list p,
.book-owner-empty {
  margin: 0;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.35;
}

.book-owner-list time {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 14px;
}

.books {
  min-height: 2300px;
  isolation: isolate;
  overflow: visible;
}

.books-copy {
  position: relative;
  z-index: 3;
  width: min(780px, 48vw);
  padding: 70px 0 0 82px;
}

.books-copy::before {
  left: 0;
  top: 0;
  width: 3px;
  height: 260px;
  background: var(--ink);
}

.books-copy::after {
  right: -96px;
  top: 168px;
  width: 3px;
  height: 250px;
  background: var(--ink);
}

.books-copy h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 62px;
  line-height: 0.92;
  overflow: visible;
}

.books-title-word {
  position: relative;
  display: inline-block;
}

.books-copy .title-red {
  color: var(--red);
}

.books-copy h2::before,
.books-copy h2::after,
.books-title-word::before,
.books-title-word::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.books-copy h2::before {
  left: -0.25em;
  top: -0.04em;
  width: 1.28em;
  height: 2px;
}

.books-copy h2::after {
  right: -0.22em;
  bottom: -0.08em;
  width: 1.28em;
  height: 2px;
}

.books-title-word::before {
  left: -0.16em;
  top: -0.23em;
  width: 2px;
  height: 1.08em;
}

.books-title-word::after {
  right: -0.12em;
  bottom: -0.18em;
  width: 2px;
  height: 0.92em;
}

@media (min-width: 981px) {
  .books-copy::before,
  .books-copy::after {
    content: none;
  }
}

.books-copy p,
.books-copy ul {
  max-width: 730px;
  font-size: clamp(16px, 1.1vw, 20px);
}

.books-copy ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.books-copy li {
  margin-bottom: 0.2em;
}

.books-owner-note {
  color: var(--red);
}

.giant-symbol {
  z-index: 0;
  right: -210px;
  top: -50px;
  color: #242424;
  font-size: clamp(520px, 58vw, 1120px);
}

.books-mobile-symbol {
  display: none;
}

.books__deco {
  position: absolute;
  z-index: 1;
  top: -600px;
  right: 0;
  width: 42%;
  height: calc(100% + 600px);
  min-height: calc(100% + 600px);
  overflow: visible;
  clip-path: inset(0 -120vw 0 -120vw);
  pointer-events: none;
}

.books__deco-track {
  position: absolute;
  inset: 0;
  display: block;
  will-change: transform;
}

.books__deco-set {
  position: relative;
  height: clamp(800px, 300vw, 3540px);
}

.books__deco-s1,
.books__deco-s2,
.books__deco-s3,
.books__deco-comma,
.books__deco-colon {
  position: absolute;
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.85;
  white-space: nowrap;
  color: #252525;
  user-select: none;
  pointer-events: none;
  will-change: transform;
}

.books__deco-s1 {
  top: clamp(-750px, -40vw, -200px);
  right: -5%;
  font-size: clamp(300px, 100vw, 1900px);
}

.books__deco-comma {
  top: clamp(200px, 35vw, 650px);
  left: 65%;
  color: var(--red);
  font-size: clamp(120px, 46vw, 888px);
  line-height: 0.55;
}

.books__deco-s3 {
  top: clamp(600px, 55vw, 1070px);
  left: -5%;
  font-size: clamp(130px, 42vw, 800px);
}

.books__deco-s2 {
  top: clamp(800px, 75vw, 1490px);
  left: 42%;
  font-size: clamp(220px, 73vw, 1400px);
}

.books__deco-colon {
  top: clamp(1000px, 100vw, 1980px);
  left: 12%;
  font-size: clamp(90px, 32vw, 616px);
  letter-spacing: -0.1em;
}

.book-list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0;
  width: min(1040px, 62vw);
  margin-top: 96px;
}

.book-item {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(54px, 4.6vw, 84px);
  align-items: center;
  min-height: 430px;
  padding: 58px 0 72px 98px;
  border-bottom: 0;
}

.book-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 2px;
  background: var(--ink);
  opacity: 1;
}

.book-item::after {
  left: 54px;
  top: auto;
  bottom: -42px;
  width: 2px;
  height: 128px;
  background: var(--ink);
}

.book-item:first-child::before {
  top: auto;
}

.book-visual {
  position: absolute;
  left: 98px;
  top: 50%;
  width: 300px;
  transform: translateY(-50%);
}

.book-visual::before,
.book-visual::after {
  display: none;
}

.book-visual > span {
  position: absolute;
  z-index: 4;
  left: -56px;
  top: -72px;
  font-family: var(--serif);
  font-size: 132px;
  transition: color 260ms ease;
}

.book-cover-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.book-cover-button img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  --book-grayscale: 1;
  filter: grayscale(var(--book-grayscale));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transition: filter 900ms ease, opacity 260ms ease, transform 260ms ease;
}

.book-owner-trigger {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 56px;
  border: 0;
  background: rgba(164, 0, 0, 0.96);
  color: #fff;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.book-item:hover .book-owner-trigger,
.book-item:focus-within .book-owner-trigger {
  opacity: 1;
  transform: translateY(0);
}

.book-text {
  grid-column: 2;
}

.book-item h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.05;
  transition: color 260ms ease;
}

.book-item:hover .book-visual > span,
.book-item:focus-within .book-visual > span,
.book-item:hover h3,
.book-item:focus-within h3 {
  color: var(--red);
}

.book-item:hover .book-cover-button img,
.book-item:focus-within .book-cover-button img {
  --book-grayscale: 0;
  transform: translateY(-4px);
}

.book-item p {
  max-width: 560px;
  font-size: clamp(15px, 1.05vw, 19px);
}

.muse {
  --muse-main-height: clamp(650px, 49vw, 850px);
  min-height: 1180px;
  display: grid;
  grid-template-columns: minmax(700px, 0.59fr) minmax(500px, 0.41fr);
  grid-template-rows: auto auto auto auto;
  gap: 0 clamp(48px, 4.4vw, 82px);
  align-items: start;
  padding-top: clamp(72px, 6vw, 112px);
  padding-bottom: 88px;
}

.muse-title {
  position: relative;
  z-index: 6;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  align-self: start;
  margin: 0 0 -108px;
  pointer-events: none;
}

.muse-title img {
  width: min(900px, 54vw);
  max-width: none;
}

.muse-text {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 100%;
  max-width: none;
  align-self: start;
  padding-top: clamp(8px, 1.85vw, 36px);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 600;
  line-height: 1.52;
}

.muse-pen {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  width: min(460px, 84%);
  justify-self: center;
  align-self: start;
  margin: clamp(6px, 0.7vw, 14px) 0 clamp(12px, 1.4vw, 26px);
  filter: grayscale(1);
}

.muse-gallery {
  position: relative;
  z-index: 4;
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  align-self: start;
  width: 100%;
  margin-top: -10px;
  height: var(--muse-main-height);
}

.muse-pages {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 0;
}

.muse-pages:empty {
  display: none;
}

.muse-page-button {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  cursor: pointer;
}

.muse-page-button.is-active {
  color: var(--red);
}

.muse-work {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(25, 25, 25, 0.16);
  padding: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.muse-work[hidden] {
  display: none !important;
}

.muse-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  transition: filter 420ms ease, transform 280ms ease;
}

.muse-work-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: clamp(30px, 2.2vw, 42px);
  padding: 5px 10px;
  background: rgba(238, 238, 236, 0.82);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 700;
  line-height: 1.12;
  transition: color 260ms ease, background 260ms ease;
}

.muse-work:hover img,
.muse-work:focus-visible img {
  filter: grayscale(0);
  transform: translateY(-4px);
}

.muse-work:hover .muse-work-title,
.muse-work:focus-visible .muse-work-title {
  color: var(--red);
  background: rgba(238, 238, 236, 0.92);
}

.luda {
  grid-column: 2 / 3;
  grid-row: 3 / 5;
  align-self: start;
  width: 100%;
  height: var(--muse-main-height);
  max-height: none;
  object-fit: cover;
  object-position: center top;
  margin-top: clamp(-56px, -2.9vw, -34px);
  --luda-grayscale: 1;
  filter: grayscale(var(--luda-grayscale));
  transition: filter 900ms ease;
}

.continue {
  min-height: 720px;
  padding-top: 135px;
}

.continue-title {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
}

.continue-title-art {
  display: block;
  width: min(1480px, 91vw);
  max-width: none;
  margin: 0 auto;
}

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

.continue-title-mobile-art {
  display: none;
}

.continue-copy {
  width: min(1120px, 72vw);
  margin: 70px auto 0;
  font-size: clamp(15px, 1.05vw, 19px);
}

.also-poems {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #151515;
}

.also-card {
  position: relative;
  --also-intensity: 0;
  --also-label-blur: 8px;
  display: block;
  min-width: 0;
  height: clamp(500px, 42vw, 760px);
  overflow: hidden;
  background: #151515;
}

.also-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--also-idle-scale, 1));
  --also-grayscale: 1;
  filter: grayscale(var(--also-grayscale));
  transition: filter 900ms ease, transform 360ms ease;
}

.also-card:hover img,
.also-card:focus-visible img {
  --also-grayscale: 0;
  transform: scale(var(--also-hover-scale, 1.025));
}

.also-card--olga img {
  --also-idle-scale: 1.04;
  --also-hover-scale: 1.07;
  object-position: center center;
}

.also-card--vitaly img {
  --also-idle-scale: 1.17;
  --also-hover-scale: 1.2;
  object-position: center 42%;
}

.also-card:hover,
.also-card:focus-visible {
  --also-intensity: 1;
  --also-label-blur: 0px;
}

.also-card-label {
  display: none;
}

.also-poems h2 {
  position: absolute;
  top: clamp(42px, 4.1vw, 72px);
  left: 50%;
  z-index: 3;
  transform: translate(-50%, 0);
  margin: 0;
  padding: 12px 48px;
  background: rgba(238, 238, 236, 0.94);
  font-family: var(--serif);
  font-size: clamp(36px, 3.7vw, 70px);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.also-poems h2[data-reveal] {
  transform: translate(-50%, 34px);
}

.also-poems h2[data-reveal].is-visible {
  transform: translate(-50%, 0);
}

.site-footer {
  display: grid;
  gap: 54px;
  min-height: 620px;
  padding: 72px clamp(24px, 7vw, 140px) 96px;
  background: #191919;
  color: #eceae6;
}

.footer-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(980px, 100%);
  margin: 0 auto;
}

.site-footer address {
  display: grid;
  gap: 13px;
  font-style: normal;
  text-align: center;
}

.site-footer address:first-child {
  border-right: 2px solid #d8d3ca;
  padding-right: 72px;
}

.site-footer address:last-child {
  padding-left: 72px;
}

.memory-mark {
  display: grid;
  justify-items: center;
  gap: 30px;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.memory-mark p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.22vw, 24px);
  font-weight: 400;
  line-height: 1.12;
}

.memory-map-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(96px, 0.64fr);
  gap: clamp(38px, 5vw, 92px);
  align-items: center;
  width: 100%;
}

.memory-map {
  justify-self: center;
  display: block;
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(10%) sepia(85%) saturate(4521%) hue-rotate(357deg) brightness(84%) contrast(111%);
}

.memory-admin-link {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  max-width: 118px;
  line-height: 0;
}

.memory-admin-link:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 8px;
}

.memory-map--crimea {
  max-width: 330px;
}

.memory-map--israel {
  max-width: 118px;
}

.memory-map-row small {
  font-family: var(--serif);
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 981px) {
  .site-footer {
    grid-template-columns: minmax(240px, 1fr) minmax(660px, 1.18fr) minmax(240px, 1fr);
    gap: clamp(34px, 3.8vw, 72px);
    align-items: center;
    min-height: 520px;
    padding: 82px clamp(70px, 7vw, 150px) 96px;
  }

  .footer-contacts {
    display: contents;
  }

  .site-footer address {
    align-self: center;
    gap: 15px;
    font-size: clamp(17px, 1.14vw, 22px);
    line-height: 1.18;
  }

  .site-footer address:first-child {
    grid-column: 1;
    justify-items: start;
    border-right: 0;
    padding-right: 0;
    text-align: left;
  }

  .site-footer address:last-child {
    grid-column: 3;
    justify-items: end;
    padding-left: 0;
    text-align: right;
  }

  .memory-mark {
    grid-column: 2;
    grid-row: 1;
    gap: 34px;
    width: 100%;
    min-height: 380px;
    align-content: center;
    box-sizing: border-box;
    border-left: 2px solid rgba(236, 234, 230, 0.82);
    border-right: 2px solid rgba(236, 234, 230, 0.82);
    padding: 0 clamp(78px, 6vw, 112px) 0 clamp(34px, 3.2vw, 58px);
  }

  .memory-mark p {
    font-size: clamp(17px, 1.13vw, 23px);
    font-weight: 400;
    line-height: 1.08;
  }

  .memory-map-row {
    grid-template-columns: minmax(170px, 1fr) auto minmax(78px, 0.3fr);
    gap: clamp(26px, 2.8vw, 48px);
  }

  .memory-map--crimea {
    max-width: 260px;
  }

  .memory-map--israel {
    max-width: 56px;
  }

  .memory-admin-link {
    justify-self: start;
    max-width: 56px;
    transform: translateX(-20px);
  }

  .memory-map-row small {
    font-size: clamp(20px, 1.35vw, 28px);
  }
}

.person-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.person-main {
  padding-top: 92px;
}

.person-hero {
  display: grid;
  gap: 28px;
  padding: clamp(22px, 5vw, 72px) clamp(20px, 7vw, 130px) clamp(48px, 7vw, 90px);
}

.person-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #161616;
}

.person-slider-track {
  display: flex;
  height: 100%;
  transform: translateX(calc(var(--person-slide, 0) * -100%));
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.person-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-slider button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 58px;
  border: 0;
  background: rgba(238, 238, 236, 0.78);
  color: var(--red);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.person-slider button:first-of-type {
  left: 0;
}

.person-slider button:last-of-type {
  right: 0;
}

.person-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.person-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 108px);
  line-height: 0.96;
}

.person-intro h1 span {
  color: var(--red);
}

.person-intro h1 .person-last-name {
  color: var(--ink);
}

.person-intro p {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 23px);
}

.person-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

.person-dedication {
  width: min(860px, 100%);
  margin-top: clamp(10px, 2.5vw, 28px);
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 4px solid var(--red);
}

.person-dedication-kicker {
  margin: 0 0 6px;
  color: var(--red);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
}

.person-dedication h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}

.person-dedication div {
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.45;
}

.person-dedication p {
  margin: 0 0 18px;
}

.person-dedication .person-dedication-signature {
  margin: 10px 0 0;
  color: var(--red);
  font-family: var(--script);
  font-size: clamp(32px, 3.4vw, 58px);
  line-height: 1;
  text-align: right;
}

.person-poems {
  padding: clamp(46px, 7vw, 96px) clamp(20px, 7vw, 130px);
  border-top: 3px solid var(--line);
}

.person-poem-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.person-list-toggle {
  width: 100%;
}

.person-list-panel {
  margin-bottom: 0;
}

.person-view {
  padding-top: clamp(52px, 7vw, 92px);
}

.person-poem-title {
  margin-bottom: 58px;
  font-size: clamp(46px, 5.6vw, 108px);
}

.person-poem-link {
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  padding: 7px 0 7px 12px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.2;
  text-align: left;
}

.person-poem-link.is-active,
.person-poem-link:hover {
  border-left-color: var(--red);
  color: var(--red);
}

.person-card {
  display: block;
}

.person-card img {
  display: none;
}

.person-poem-text {
  margin: 0;
}

.person-actions {
  max-width: 860px;
  margin-top: clamp(42px, 5vw, 70px);
}

.person-actions .person-like {
  border: 0;
  padding: 0;
}

.person-actions .person-share {
  padding: 0 22px;
}

.person-reviews {
  max-width: 860px;
}

.person-review-button {
  margin-top: clamp(48px, 6vw, 86px);
  width: min(560px, 100%);
}

@media (min-width: 981px) {
  .person-view.poem-detail {
    display: block;
    max-width: 760px;
  }

  .person-poem-title {
    margin: 0 0 34px;
    font-size: clamp(24px, 1.65vw, 34px);
    line-height: 1.05;
    text-align: left;
  }

  .person-poem-text.poem-card {
    max-width: 720px;
    padding-top: 0;
    font-size: clamp(15px, 1.05vw, 19px);
    line-height: 1.28;
  }

  .person-actions,
  .person-reviews {
    max-width: 720px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(9px);
  transition:
    opacity 750ms ease,
    transform 750ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 900ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal].parallax {
  transform: translate3d(0, calc(34px + var(--parallax-y, 0px)), 0);
}

[data-reveal].parallax.is-visible {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.paragraph-reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 980px) {
  .site-header {
    justify-content: flex-end;
    height: 68px;
  }

  .brand {
    left: 20px;
    width: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 24px 22px;
    background: rgba(15, 15, 15, 0.94);
    transform: translateY(-120%);
    transition: transform 260ms ease;
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-nav a + a::before {
    display: none;
  }

  .person-page .site-header {
    justify-content: center;
  }

  .person-page .site-nav {
    position: static;
    display: flex;
    gap: 22px;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .person-page .site-nav a {
    padding: 0;
    border-bottom: 0;
  }

  .person-page .phone {
    display: none;
  }

  .hero {
    height: 760px;
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero h1 {
    left: 18px;
    top: 35%;
  }

  .hero h1 span + span {
    margin-left: 0;
    margin-top: -0.04em;
  }

  .hero blockquote {
    left: 18px;
    right: 18px;
    top: 63.5%;
    max-width: 430px;
  }

  .about-grid,
  .poem-layout,
  .muse {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
  }

  .about-copy,
  .work-intro,
  .books-copy,
  .book-list,
  .continue-copy {
    width: 100%;
  }

  .portrait-wrap {
    right: 0;
    width: 54%;
    height: 100%;
  }

  .portrait-wrap img {
    min-height: 0;
    max-height: none;
  }

  .about-heading {
    position: relative;
    margin-top: -60px;
  }

  .quote {
    opacity: 0.5;
  }

  .photo-strip {
    --strip-height: 210px;
  }

  .photo-strip img {
    height: 100%;
  }

  .work,
  .books {
    min-height: auto;
  }

  .split-title {
    position: relative;
    inset: auto;
    margin-top: 36px;
  }

  .book-item {
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding-left: 52px;
  }

  .book-item img {
    width: 180px;
  }

  .books__deco {
    display: none;
  }

  .books-mobile-symbol {
    display: block;
  }

  .giant-symbol {
    right: -170px;
    top: 260px;
    opacity: 0.18;
  }

  .muse-text,
  .muse-pen,
  .muse-gallery,
  .luda {
    grid-column: auto;
    grid-row: auto;
  }

  .muse-gallery {
    margin: 0;
    width: 100%;
  }

  .site-footer {
    padding-inline: clamp(20px, 6vw, 58px);
  }

  .footer-contacts {
    width: min(760px, 100%);
  }

  .site-footer address:first-child {
    padding-right: 40px;
  }

  .site-footer address:last-child {
    padding-left: 40px;
  }
}

@media (max-width: 640px) {
  .panel {
    padding: 66px 18px;
  }

  .hero {
    height: 680px;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero h1[data-reveal],
  .hero blockquote[data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero h1 span,
  .hero blockquote span {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(18px);
    transition:
      opacity 900ms ease,
      transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1),
      filter 1050ms ease;
  }

  .hero h1.is-visible span,
  .hero blockquote.is-visible span {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .hero h1.is-visible span:nth-child(1) {
    transition-delay: 180ms;
  }

  .hero h1.is-visible span:nth-child(2) {
    transition-delay: 360ms;
  }

  .hero blockquote.is-visible span:nth-child(1) {
    transition-delay: 620ms;
  }

  .hero blockquote.is-visible span:nth-child(2) {
    transition-delay: 780ms;
  }

  .hero blockquote.is-visible span:nth-child(3) {
    transition-delay: 940ms;
  }

  .hero blockquote.is-visible span:nth-child(4) {
    transition-delay: 1100ms;
  }

  .hero h1 {
    left: 20px;
    right: 20px;
    top: 25.5%;
    font-size: clamp(48px, 15.5vw, 62px);
    line-height: 0.96;
  }

  .hero h1 span + span {
    margin-top: 0.12em;
  }

  .hero blockquote {
    left: 72px;
    top: 52%;
    right: auto;
    width: calc((100vw - 88px) / 0.78);
    max-width: none;
    font-size: clamp(18px, 4.95vw, 20px);
    line-height: 1.28;
    white-space: nowrap;
  }

  .hero blockquote span {
    transform: translateY(18px) scaleX(0.76);
    transform-origin: left top;
  }

  .hero blockquote.is-visible span {
    transform: translateY(0) scaleX(0.76);
  }

  .work {
    display: flex;
    flex-direction: column;
    padding-top: 42px;
  }

  .work::before,
  .work::after {
    display: none;
  }

  .work-intro {
    order: 2;
    min-height: 0;
    margin-top: 48px;
    font-size: clamp(17px, 4.35vw, 20px);
    line-height: 1.5;
  }

  .about-copy[data-reveal],
  .work-intro[data-reveal],
  .books-copy[data-reveal],
  .muse-text[data-reveal],
  .continue-copy[data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .poetry-title {
    order: 1;
    position: relative;
    left: 50%;
    width: 100vw;
    margin: 0;
    text-align: center;
    line-height: 0.78;
    transform: translateX(-50%);
  }

  .poetry-title[data-reveal] {
    opacity: 1;
    filter: none;
    transform: translateX(-50%) translateY(34px);
  }

  .poetry-title[data-reveal].is-visible {
    transform: translateX(-50%) translateY(0);
  }

  .poetry-title .poetry-title-main {
    display: inline-block;
    position: relative;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px);
    white-space: nowrap;
    color: #272727;
    font-size: clamp(88px, 26.4vw, 110px);
    font-weight: 400;
    line-height: 0.78;
    transition:
      opacity 760ms ease 160ms,
      transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1) 160ms,
      filter 840ms ease 160ms;
  }

  .poetry-title .poetry-title-main::before,
  .poetry-title .poetry-title-main::after {
    content: "";
    position: absolute;
    width: 60vw;
    height: 7px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 850ms cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .poetry-title .poetry-title-main::before {
    left: calc(50% - 50vw);
    top: -18px;
    transform-origin: left center;
  }

  .poetry-title .poetry-title-main::after {
    right: calc(50% - 50vw);
    bottom: -20px;
    transform-origin: right center;
    transition-delay: 120ms;
  }

  .poetry-title.is-visible .poetry-title-main {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .poetry-title.is-visible .poetry-title-main::before,
  .poetry-title.is-visible .poetry-title-main::after {
    transform: scaleX(1);
  }

  .poetry-title .poetry-title-main span {
    display: inline;
    color: var(--red);
    margin-left: 0;
  }

  .split-title.poetry-title .poetry-title-note {
    display: block;
    width: max-content;
    margin: 30px 28px 0 auto;
    opacity: 0;
    filter: blur(8px);
    color: var(--red);
    font-family: var(--script);
    font-size: clamp(35px, 9.7vw, 46px);
    font-weight: 400;
    line-height: 1;
    transform: translateY(12px);
    transition:
      opacity 740ms ease 520ms,
      transform 740ms cubic-bezier(0.2, 0.9, 0.2, 1) 520ms,
      filter 820ms ease 520ms;
  }

  .poetry-title.is-visible .poetry-title-note {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  .poetry-console {
    order: 3;
    margin-top: 38px;
  }

  .about-heading h2,
  .books h2,
  .split-title:not(.poetry-title) {
    font-size: clamp(58px, 20vw, 92px);
  }

  .about {
    height: auto;
    min-height: 0;
    padding: 42px 0 0;
    overflow: hidden;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    height: auto;
  }

  .about-heading {
    position: relative;
    order: 1;
    left: auto;
    top: auto;
    margin: 0;
    padding: 0 22px;
  }

  .about-heading h2 {
    font-size: clamp(58px, 19vw, 82px);
    line-height: 0.92;
  }

  .about-heading p,
  .muse-title p {
    margin-left: 0;
  }

  .about-heading p {
    margin-top: 2px;
    font-size: clamp(31px, 8vw, 38px);
  }

  .about-copy {
    position: relative;
    order: 2;
    left: auto;
    top: auto;
    z-index: 3;
    width: auto;
    max-width: none;
    padding: 28px 24px 30px;
    font-size: clamp(18px, 4.7vw, 21px);
    line-height: 1.48;
  }

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

  .portrait-wrap {
    position: relative;
    order: 3;
    right: auto;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin: 0;
    transform: none;
  }

  .portrait-wrap.parallax,
  .portrait-wrap.parallax.is-visible {
    transform: none;
  }

  .portrait-wrap::before {
    inset: 0 0 auto;
    width: auto;
    height: 34%;
    background: linear-gradient(
      180deg,
      #050505 0%,
      rgba(5, 5, 5, 0.96) 13%,
      rgba(5, 5, 5, 0.68) 45%,
      rgba(5, 5, 5, 0.26) 76%,
      rgba(5, 5, 5, 0) 100%
    );
  }

  .portrait-wrap img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }

  .mark-left {
    display: none;
  }

  .quote {
    display: none;
  }

  .photo-strip {
    --strip-height: 170px;
    touch-action: pan-y;
  }

  .photo-track {
    animation: none;
    cursor: grab;
    transform: translate3d(var(--mobile-strip-x, 0px), 0, 0);
  }

  .photo-strip.is-dragging .photo-track {
    cursor: grabbing;
  }

  .photo-strip img {
    height: 100%;
    filter: grayscale(calc(1 - var(--center-intensity, 0)));
    transition: filter 420ms ease, transform 300ms ease;
  }

  .photo-thumb:hover img,
  .photo-thumb:focus-visible img {
    filter: grayscale(calc(1 - var(--center-intensity, 0)));
  }

  .poetry-controls {
    font-size: clamp(20px, 5.5vw, 24px);
  }

  .poetry-filter-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 22px;
  }

  .poetry-control {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .poetry-control span {
    font-size: clamp(22px, 6vw, 28px);
    white-space: nowrap;
  }

  .poetry-control select {
    font-size: clamp(16px, 4.45vw, 19px);
    padding: 8px 2px;
  }

  .poetry-nav-row {
    grid-template-columns: 54px 1fr 54px;
    gap: 8px;
    min-height: 72px;
  }

  .poetry-arrow {
    font-size: 52px;
  }

  .random-link {
    justify-self: center;
    font-size: clamp(20px, 5.6vw, 26px);
    text-align: center;
  }

  .poem-layout {
    padding-top: 64px;
  }

  .poem-detail-title {
    margin-bottom: 34px;
    font-size: clamp(20px, 6.1vw, 25px);
    line-height: 1.08;
    text-align: center;
  }

  .poem-detail-head {
    grid-template-columns: minmax(116px, 38vw) minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 58px;
  }

  .poem-meta {
    max-width: none;
  }

  .poem-like img {
    width: 26px;
  }

  .poem-meta h4 {
    margin-bottom: 8px;
    font-size: clamp(20px, 6.1vw, 25px);
    font-weight: 700;
  }

  .poem-meta h4:not(:first-of-type) {
    margin-top: 28px;
  }

  .poem-meta p,
  .poem-books {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .poem-books {
    display: grid;
    gap: 8px;
  }

  .poem-books span {
    white-space: nowrap;
  }

  .poem-card {
    max-width: none;
    padding-right: 0;
    font-size: clamp(14px, 3.85vw, 16px);
    line-height: 1.34;
  }

  .poem-card p {
    margin-bottom: 22px;
  }

  .poem-actions {
    max-width: none;
    margin-top: 30px;
    gap: 12px;
  }

  .poem-share {
    padding: 0 18px;
  }

  .poem-reviews {
    margin-top: 60px;
  }

  .poem-reviews h4 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .poem-review header {
    display: grid;
    gap: 4px;
  }

  .poem-review p,
  .poem-review-empty {
    font-size: clamp(16px, 4.2vw, 19px);
  }

  .poem-list {
    max-height: 310px;
  }

  .review-button {
    min-width: 100%;
  }

  .books {
    margin-top: -70px;
    padding-top: 24px;
  }

  .books-copy {
    padding-left: 6px;
  }

  .books-copy::after {
    right: 22px;
    top: 88px;
    height: 120px;
  }

  .books-copy h2 {
    margin-left: 28px;
    margin-bottom: 74px;
  }

  .books-copy::before {
    left: 0;
    top: 0;
    height: 210px;
  }

  .books-copy h2::after {
    right: -69px;
    bottom: -34px;
    width: 180px;
  }

  .book-list {
    gap: 30px;
    margin-top: 38px;
  }

  .book-item {
    grid-template-columns: 1fr;
    padding: 18px 0 42px 6px;
    border-bottom: 0;
  }

  .book-item:last-child {
    padding-bottom: 10px;
  }

  .book-item:last-child::before {
    bottom: -2px;
    top: auto;
  }

  .book-item:last-child::after {
    bottom: -46px;
    top: auto;
  }

  .book-item::before {
    left: -18px;
    top: auto;
    bottom: 42px;
    width: 216px;
    height: 3px;
    opacity: 1;
  }

  .book-item::after {
    left: 0;
    top: auto;
    bottom: -2px;
    width: 3px;
    height: 190px;
  }

  .book-visual {
    position: relative;
    left: auto;
    top: auto;
    width: min(240px, 72vw);
    transform: none;
  }

  .book-visual::before,
  .book-visual::after {
    display: none;
  }

  .book-visual > span {
    left: -2px;
    top: -20px;
  }

  .book-text {
    grid-column: 1;
    width: 100%;
  }

  .book-item p {
    max-width: none;
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.48;
  }

  .book-cover-button {
    overflow: visible;
  }

  .book-cover-button img {
    width: 100%;
  }

  .book-owner-trigger {
    position: static;
    min-height: 48px;
    margin-top: 10px;
    opacity: 1;
    transform: none;
    font-size: 17px;
  }

  .book-item h3 {
    font-size: clamp(27px, 7vw, 30px);
    line-height: 1.08;
    white-space: nowrap;
  }

  .muse {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .muse-title {
    order: 1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    transform: none;
  }

  .muse-title img {
    width: calc(100vw - 54px);
    margin: 0 27px;
    max-width: none;
  }

  .luda {
    order: 2;
    width: calc(100% + 36px);
    height: auto;
    max-width: none;
    max-height: none;
    margin: -38px -18px 0;
    object-fit: contain;
  }

  .luda.parallax {
    transform: none !important;
  }

  .muse-text {
    order: 3;
    max-width: none;
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.48;
  }

  .muse-pen {
    order: 4;
    width: min(280px, 72vw);
    align-self: center;
    margin: 24px auto 34px;
  }

  .muse-gallery {
    order: 5;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .muse-pages {
    order: 6;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 58px;
  }

  .muse-work {
    padding: 0 3px 12px;
  }

  .muse-work-title {
    position: static;
    min-height: auto;
    padding: 0;
    background: transparent;
    font-size: clamp(13px, 3.4vw, 15px);
  }

  .muse-work img {
    height: auto;
    aspect-ratio: 0.82;
  }

  .muse-lightbox {
    padding: 62px 18px 28px;
    gap: 14px;
  }

  .muse-lightbox img {
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 190px);
  }

  .muse-lightbox-controls {
    grid-template-columns: 54px minmax(130px, auto) 54px;
    gap: 10px;
  }

  .muse-download {
    padding: 0 30px;
  }

  .continue-title {
    position: relative;
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
    transform: none;
  }

  .continue-title-art {
    display: none;
  }

  .continue-title-mobile-art {
    display: block;
    width: calc(100vw - 42px);
    max-width: none;
    margin: 0 21px;
  }

  .continue-copy {
    width: auto;
    margin: 36px 24px 0;
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.48;
  }

  .continue {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .also-poems {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-bottom: 38px;
    overflow-x: clip;
  }

  .also-card {
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: visible;
  }

  .also-card img {
    display: block;
  }

  .also-card--olga::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 4;
    width: 100vw;
    height: clamp(34px, 9vw, 48px);
    background: url("./assets/line.svg") center / 100% 100% no-repeat;
    transform: translate(-50%, 50%) scaleX(1.14);
    pointer-events: none;
  }

  .also-card-label {
    position: absolute;
    left: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: min(300px, 74vw);
    min-height: 64px;
    padding: 8px 20px;
    font-family: var(--serif);
    font-size: clamp(28px, 7.6vw, 36px);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    opacity: var(--also-intensity);
    filter: blur(var(--also-label-blur));
    transition: opacity 900ms ease, filter 900ms ease;
  }

  .also-card--olga .also-card-label {
    top: 0;
    color: #eceae6;
    background: rgba(25, 25, 25, 0.93);
    transform: translate(-50%, -50%);
  }

  .also-card--vitaly .also-card-label {
    bottom: 0;
    color: var(--ink);
    background: rgba(238, 238, 236, 0.94);
    transform: translate(-50%, 50%);
  }

  .also-poems h2 {
    display: none;
  }

  .site-footer {
    gap: 44px;
    min-height: 0;
    padding: 56px 22px 72px;
  }

  .footer-contacts {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .site-footer address {
    gap: 9px;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.25;
  }

  .site-footer address:first-child {
    justify-items: start;
    border-right: 1px solid rgba(236, 234, 230, 0.82);
    padding-right: 18px;
    text-align: left;
  }

  .site-footer address:last-child {
    justify-items: end;
    padding-left: 18px;
    text-align: right;
  }

  .memory-mark {
    gap: 24px;
  }

  .memory-mark p {
    font-size: clamp(15px, 4.12vw, 17px);
    line-height: 1.18;
    white-space: nowrap;
  }

  .memory-map-row {
    grid-template-columns: 1fr auto 0.42fr;
    gap: 18px;
  }

  .memory-map {
    max-height: 124px;
  }

  .memory-map--crimea {
    max-width: 158px;
  }

  .memory-map--israel {
    max-width: 50px;
  }

  .memory-map-row small {
    font-size: clamp(17px, 4.5vw, 22px);
  }

  .person-main {
    padding-top: 76px;
  }

  .person-hero {
    padding: 20px 18px 44px;
  }

  .person-intro {
    grid-template-columns: 1fr;
  }

  .person-intro h1 {
    font-size: clamp(42px, 11.4vw, 54px);
  }

  .person-contact {
    text-align: left;
  }

  .person-dedication {
    margin-top: 4px;
    padding-left: 16px;
    border-left-width: 3px;
  }

  .person-dedication h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .person-dedication div {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.42;
  }

  .person-dedication .person-dedication-signature {
    font-size: clamp(30px, 9vw, 42px);
  }

  .person-poems {
    padding: 42px 30px 58px;
  }

  .person-list-toggle {
    min-height: 46px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .person-nav-row {
    margin-bottom: 0;
  }

  .person-random {
    max-width: 230px;
    white-space: normal;
  }

  .person-poem-text {
    font-size: clamp(14px, 3.85vw, 16px);
    line-height: 1.38;
  }

  .person-actions {
    margin-top: 34px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .person-actions .person-like {
    gap: 7px;
    flex: 0 0 auto;
    font-size: 17px;
  }

  .person-actions .person-like img {
    width: 26px;
  }

  .person-actions .person-share {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 40px;
    padding: 0 12px;
    font-size: 15px;
    white-space: nowrap;
  }

  .person-actions .poem-social {
    flex: 0 0 40px;
    width: 40px;
    min-height: 40px;
  }

  .person-actions .poem-social img {
    width: 25px;
    height: 25px;
  }

  .person-review-button {
    min-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
