@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;
}

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;
}

.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);
}

.torn-edge {
  --tear-height: clamp(36px, 5vw, 82px);
  position: relative;
  z-index: 8;
  height: var(--tear-height);
  margin-top: calc(var(--tear-height) * -0.68);
  margin-bottom: calc(var(--tear-height) * -0.32);
  overflow: visible;
  pointer-events: none;
}

.torn-edge::before {
  content: "";
  position: absolute;
  inset: 0 -60vw;
  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: 30.6%;
  max-width: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.5;
}

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

.portrait-wrap {
  position: absolute;
  z-index: 1;
  right: -8px;
  top: 0;
  left: auto;
  width: 45.3%;
  height: 100%;
  margin: 0;
  filter: grayscale(1);
  overflow: hidden;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 39%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #050505 0%,
    rgba(5, 5, 5, 0.98) 14%,
    rgba(5, 5, 5, 0.78) 36%,
    rgba(5, 5, 5, 0.34) 68%,
    rgba(5, 5, 5, 0) 100%
  );
}

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

.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: 47.7%;
  top: 88px;
}

.quote-bottom {
  left: 47.7%;
  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;
}

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

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

.work::before {
  left: 0;
  top: 0;
  width: 52%;
  height: 24px;
}

.work::after {
  right: -20px;
  top: 620px;
  width: 55%;
  height: 24px;
}

.work-intro {
  width: min(730px, 45vw);
  min-height: 390px;
  font-size: clamp(15px, 1.05vw, 19px);
}

.split-title {
  position: absolute;
  right: clamp(20px, 6vw, 120px);
  top: 70px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 11vw, 210px);
  font-weight: 400;
  line-height: 0.92;
}

.split-title span {
  display: block;
}

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

.poetry-console {
  position: relative;
  margin-top: 80px;
}

.poetry-tabs {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 46px);
  min-height: 52px;
  border-top: 11px solid #2b2b2b;
  border-bottom: 2px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  overflow-x: auto;
}

.poetry-tabs button {
  flex: 0 0 auto;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.poetry-tabs .active {
  color: var(--red);
}

.poetry-tabs label {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  min-width: 270px;
  gap: 18px;
}

.poetry-tabs input,
.poetry-tabs 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;
}

.poetry-tabs select {
  cursor: pointer;
}

.cycle-filter {
  flex: 0 0 260px;
}

.poem-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(40px, 9vw, 150px);
  padding-top: 80px;
}

.poem-card {
  max-width: 520px;
  max-height: 1020px;
  overflow: auto;
  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: block;
  margin-left: auto;
  margin-bottom: 42px;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 28px);
}

.poem-head {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  align-items: center;
}

.poem-head img {
  filter: grayscale(1);
}

.poem-head h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
}

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

.likes {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
}

.likes img {
  width: 28px;
  filter: none;
}

.poem-meta h4 {
  margin: 42px 0 22px;
  font-family: var(--serif);
  font-size: 25px;
}

.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;
}

.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;
}

.books {
  min-height: 2300px;
}

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

.books-copy::before {
  left: 0;
  top: 0;
  width: 7px;
  height: 260px;
}

.books-copy h2 {
  position: relative;
}

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

.books-copy h2::before {
  left: -80px;
  top: 32px;
  width: 245px;
  height: 4px;
}

.books-copy h2::after {
  right: -80px;
  bottom: -28px;
  width: 245px;
  height: 4px;
}

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

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

.book-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 90px;
  width: min(1000px, 62vw);
  margin-top: 110px;
}

.book-item {
  position: relative;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 70px;
  align-items: center;
  min-height: 420px;
  padding: 38px 0 42px 86px;
  border-bottom: 3px solid var(--line);
}

.book-item::after {
  left: 30px;
  bottom: 0;
  width: 4px;
  height: 225px;
  background: #4b4a48;
}

.book-item > span {
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--serif);
  font-size: 92px;
  transition: color 260ms ease;
}

.book-item img {
  width: 285px;
  filter: grayscale(1);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.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 > span,
.book-item:focus-within > span,
.book-item:hover h3,
.book-item:focus-within h3 {
  color: var(--red);
}

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

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

.muse {
  min-height: 1270px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto 1fr;
  gap: 34px;
  padding-bottom: 0;
}

.muse-title {
  position: relative;
  z-index: 4;
  grid-column: 1 / 2;
  align-self: start;
}

.muse-title h2 {
  display: inline;
  margin: 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(120px, 14vw, 270px);
  font-weight: 400;
  line-height: 0.82;
}

.muse-title p {
  display: inline-block;
  margin: 0 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(80px, 11vw, 215px);
  line-height: 0.9;
}

.muse-title > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(150px, 18vw, 340px);
  line-height: 0.8;
}

.muse-text {
  grid-column: 2 / 3;
  max-width: 700px;
  align-self: center;
  font-size: clamp(16px, 1.1vw, 20px);
}

.muse-gallery {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  align-self: end;
  margin-left: calc(clamp(20px, 6vw, 120px) * -1);
  width: calc(100% + clamp(20px, 6vw, 120px));
}

.muse-gallery img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  filter: grayscale(1);
}

.luda {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: end;
  width: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

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

.continue-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
  color: var(--red);
}

.continue-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 8vw, 160px);
  font-weight: 400;
  line-height: 0.88;
}

.continue-title em {
  color: var(--ink);
  font-style: normal;
  margin-left: clamp(70px, 12vw, 250px);
}

.continue-title span {
  font-family: var(--serif);
  font-size: clamp(180px, 20vw, 395px);
  line-height: 0.72;
}

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

.pen {
  width: min(520px, 35vw);
  margin: 52px auto 0;
  filter: grayscale(1);
}

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

.also-poems img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 300ms ease;
}

.also-poems img:hover {
  filter: grayscale(0);
}

.also-poems h2 {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 16px 56px;
  background: rgba(238, 238, 236, 0.9);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 92px);
  font-weight: 400;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 1.1fr) 1fr;
  gap: 56px;
  align-items: center;
  min-height: 520px;
  padding: 70px clamp(24px, 7vw, 140px);
  background: #191919;
  color: #eceae6;
}

.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: 56px;
}

.site-footer address:last-child {
  border-left: 2px solid #d8d3ca;
  padding-left: 56px;
}

.memory-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.memory-mark p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 28px);
}

.memory-mark img {
  width: 180px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(85%) saturate(4521%) hue-rotate(357deg) brightness(84%) contrast(111%);
}

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

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(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);
}

@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;
  }

  .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,
  .site-footer {
    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;
  }

  .poetry-tabs {
    align-items: stretch;
  }

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

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

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

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

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

  .site-footer address:first-child,
  .site-footer address:last-child {
    border: 0;
    padding: 0;
  }
}

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

  .hero {
    height: 680px;
  }

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

  .hero h1 {
    font-size: clamp(52px, 18.8vw, 76px);
  }

  .hero blockquote {
    font-size: 28px;
  }

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

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

  .about-copy {
    padding-left: 0;
  }

  .mark-left {
    top: 28px;
  }

  .quote {
    display: none;
  }

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

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

  .poetry-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 0 16px;
    overflow: visible;
  }

  .poetry-tabs label {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .poem-head {
    grid-template-columns: 120px 1fr;
  }

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

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

  .book-list {
    gap: 40px;
    margin-top: 54px;
  }

  .book-item {
    grid-template-columns: 1fr;
    padding: 24px 0 34px 38px;
  }

  .book-item img {
    width: min(240px, 72vw);
  }

  .muse-title h2 {
    display: block;
    font-size: clamp(86px, 30vw, 132px);
  }

  .muse-title > span {
    font-size: 100px;
  }

  .muse-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .continue-title {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .continue-title span:last-child {
    justify-self: end;
  }

  .continue-title em {
    margin-left: 32px;
  }

  .also-poems {
    grid-template-columns: 1fr;
  }

  .also-poems img {
    height: 420px;
  }

  .also-poems h2 {
    top: 42%;
    padding: 12px 28px;
  }
}

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

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