:root {
  --paper: #eee6d8;
  --paper-light: #f7f2e9;
  --ink: #241f1a;
  --muted: #756d62;
  --rust: #8c4d35;
  --cobalt: #294d6a;
  --sun: #d6a629;
  --line: rgba(36, 31, 26, .28);
  --page-pad: clamp(24px, 7vw, 112px);
  --display: "Prata", "Times New Roman", serif;
  --hand: "Indie Flower", cursive;
  --script: "Allura", cursive;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
/* Keep the document fixed to the viewport on touch screens. */
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: clip;
}
main, section, header, footer { max-width: 100%; }
img { max-width: 100%; }
a { color: inherit; }
button { color: inherit; font: inherit; }

.paper-noise {
  position: fixed;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  z-index: 20;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.ambient-art {
  position: absolute;
  z-index: -1;
  max-width: none;
  opacity: .24;
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: transform;
}
.ambient-art--top {
  width: min(88vw, 1220px);
  right: -9vw;
  top: 12vh;
  opacity: .22;
  filter: saturate(.7) contrast(.9);
}
.ambient-art--bottom { width: min(65vw, 880px); left: -16vw; top: 195vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 78px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 230, 216, .84);
  backdrop-filter: blur(16px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 13px/1 var(--sans);
  letter-spacing: .18em;
  text-decoration: none;
}
.wordmark i { width: 22px; height: 1px; background: var(--ink); }
.site-nav { display: flex; gap: clamp(20px, 3vw, 48px); }
.site-nav a {
  font-size: 13px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible { border-color: var(--ink); }
.menu-button { display: none; }

main { position: relative; }
.intro {
  min-height: calc(100svh - 78px);
  padding: 12vh clamp(24px, 7vw, 112px) 8vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  align-items: center;
}
.intro-title {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  will-change: transform;
}
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.intro h1 {
  margin: 0;
  font: 400 clamp(84px, 15vw, 230px)/.72 var(--display);
  letter-spacing: -.045em;
  position: relative;
}
.intro h1 span, .intro h1 em { display: block; }
.intro h1 em {
  color: var(--rust);
  font-family: var(--script);
  font-size: 1.16em;
  font-weight: 400;
  line-height: .58;
  letter-spacing: -.025em;
  margin-left: .28em;
}
.intro-subtitle {
  margin: 0 0 clamp(28px, 3vw, 44px) .25em;
  font: 500 clamp(10px, .78vw, 12px)/1.2 var(--sans);
  letter-spacing: .19em;
  text-transform: uppercase;
}
.intro-note {
  grid-row: 2;
  align-self: end;
  max-width: 320px;
  margin: 0 6vw 2vh 0;
  font: italic 400 clamp(24px, 2.4vw, 38px)/1.08 var(--serif);
  grid-column: 1;
}
.intro-note p { margin: 0; }
.intro-note cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font: 600 10px/1 var(--sans);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.round-link {
  grid-column: 1;
  grid-row: 3;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 22px;
  align-self: end;
  margin-top: 20px;
  transition: background .25s, color .25s;
}
.round-link:hover { background: var(--ink); color: var(--paper-light); }

.reader {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(230px, .78fr) minmax(300px, 1.22fr);
  gap: clamp(48px, 10vw, 180px);
  align-items: start;
  background: rgba(247, 242, 233, .62);
  border-block: 1px solid var(--line);
}
.reader > :not(.section-art), .influences > :not(.section-art) { z-index: 1; }
.catalog > :not(.section-art) { position: relative; z-index: 1; }
.section-art {
  position: absolute;
  z-index: 0;
  max-width: none;
  opacity: .24;
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: transform;
}

.intro h1,
.intro-subtitle,
.intro-note,
.author-photo img,
.collections-portrait {
  will-change: transform;
}
.section-art--boats { width: min(78vw, 1120px); right: -17vw; bottom: -10%; }
.section-art--orchard { width: min(92vw, 1320px); left: -12vw; bottom: -18%; opacity: .24; }
.section-art--village { width: min(72vw, 1040px); right: -17vw; top: 3%; opacity: .24; }
.reader-meta { position: sticky; top: 130px; }
.reader-meta h2 {
  margin: 18px 0 44px;
  max-width: 450px;
  font: 500 clamp(42px, 5.2vw, 78px)/.9 var(--serif);
  letter-spacing: -.035em;
}
.reader-index {
  display: flex;
  gap: 10px;
  font: 500 13px/1 var(--sans);
  letter-spacing: .12em;
}
.reader-controls { display: flex; gap: 8px; margin-top: 30px; }
.reader-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}
.reader-controls button:hover, .reader-controls button:focus-visible { background: var(--ink); color: var(--paper-light); }
.poem-sheet { max-width: 660px; }
.poem-text {
  margin: 0;
  white-space: pre-wrap;
  font: 400 clamp(23px, 2vw, 31px)/1.58 var(--serif);
  letter-spacing: .005em;
}

.author-section {
  position: relative;
  min-height: min(880px, 92svh);
  padding: clamp(90px, 10vw, 150px) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, .92fr);
  gap: clamp(20px, 3vw, 60px);
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}
.author-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 100%;
  isolation: isolate;
}
.author-photo img {
  position: absolute;
  inset: -7% auto -8% -5%;
  width: min(72vw, 980px);
  height: 116%;
  object-fit: cover;
  object-position: 52% 42%;
  filter: saturate(.94) contrast(.99);
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 73%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 73%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 86%, transparent 100%);
  mask-composite: intersect;
}
.author-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  margin-left: clamp(-90px, -5vw, -40px);
  padding: clamp(34px, 5vw, 72px);
  background: rgba(238, 230, 216, .56);
  backdrop-filter: blur(4px);
}
.author-copy h2, .visual-heading h2 {
  margin: 18px 0 34px;
  font: 400 clamp(50px, 7vw, 108px)/.86 var(--display);
  letter-spacing: -.05em;
}
.author-copy h2 em, .visual-heading h2 em {
  color: var(--rust);
  font-family: var(--serif);
  font-weight: 400;
}
.author-copy > p:last-child, .visual-heading > p:last-child {
  max-width: 470px;
  font: 400 clamp(20px, 2vw, 28px)/1.35 var(--serif);
}

.influences {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.influences h2 {
  margin: 1rem 0 2.5rem;
  font: 400 clamp(2.9rem, 5.8vw, 6.2rem)/.9 var(--serif);
  letter-spacing: -.045em;
}

.influences h2 em { color: var(--rust); font-weight: 400; }

.writer-list { display: grid; border-top: 1px solid var(--line); }
.writer-list span {
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font: 500 .72rem/1.2 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-carousel { min-width: 0; }
.influences blockquote {
  margin: 0;
  padding: clamp(2rem, 5vw, 5rem);
  background: rgba(255, 252, 245, .48);
  border-left: 1px solid var(--rust);
}

.influences blockquote p {
  margin: 0;
  font: 400 clamp(1.55rem, 2.55vw, 3.15rem)/1.12 var(--serif);
  letter-spacing: -.025em;
}

.influences blockquote footer {
  margin-top: 2rem;
  font: 600 .7rem/1.2 var(--sans);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.quote-card {
  transition: opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}
.quote-card.is-changing { opacity: 0; transform: translate3d(22px, 0, 0); }
.quote-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.quote-nav span { margin-right: 8px; color: var(--muted); font-size: 11px; letter-spacing: .12em; }
.quote-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 242, 233, .5);
  cursor: pointer;
  font-size: 18px;
  transition: background .25s, color .25s, transform .25s;
}
.quote-nav button:hover, .quote-nav button:focus-visible { color: var(--paper-light); background: var(--ink); transform: translateY(-2px); }

.collections {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 112px);
}
.collections-portrait {
  position: absolute;
  z-index: -1;
  top: clamp(24px, 4vw, 64px);
  right: -1vw;
  width: min(52vw, 740px);
  opacity: .1;
  filter: saturate(1.08) contrast(1.04);
  mix-blend-mode: multiply;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24%, #000 82%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0, #000 24%, #000 82%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 78%, transparent 100%);
  mask-composite: intersect;
}
.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 78px;
}
.section-heading h2 {
  margin: 0;
  font: 400 clamp(50px, 7vw, 108px)/.86 var(--display);
  letter-spacing: -.05em;
}
.section-heading h2 span { display: block; }
.section-heading h2 em {
  display: block;
  margin: 0;
  color: var(--rust);
  font-family: var(--serif);
  font-weight: 400;
}
.section-subtitle {
  max-width: 520px;
  margin: clamp(26px, 4vw, 52px) 0 0;
  font: 500 clamp(13px, 1.3vw, 17px)/1.5 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog h2 {
  margin: 0;
  font: 400 clamp(48px, 7vw, 104px)/.88 var(--serif);
  letter-spacing: -.04em;
}
.collection-list { position: relative; z-index: 1; }
.collection-list { border-top: 1px solid var(--line); }
.collection-card {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr auto 44px;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  color: inherit;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: padding .3s, color .3s;
}
.collection-card:hover, .collection-card:focus-visible { color: var(--rust); }
.collection-card span { font-size: 12px; letter-spacing: .12em; }
.collection-card h3 { margin: 0; font: 400 clamp(36px, 4vw, 62px)/1 var(--serif); }
.collection-card b { font-size: 13px; font-weight: 500; }
.collection-card::after {
  content: "+";
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 400 24px/1 var(--serif);
  transition: transform .25s, background .25s;
}
.collection-card[aria-expanded="true"]::after { content: "−"; transform: rotate(180deg); background: rgba(247, 242, 233, .6); }
.collection-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-10px);
  transition: grid-template-rows .48s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, transform .48s cubic-bezier(.22, 1, .36, 1);
}
.collection-panel > * { min-height: 0; overflow: hidden; }
.collection-panel.is-open { grid-template-rows: 1fr; opacity: 1; transform: translateY(0); }
.collection-poems { margin: 0; padding: 0 0 28px 110px; list-style: none; border-bottom: 1px solid var(--line); }
.collection-poems li { border-bottom: 1px solid rgba(36, 31, 26, .16); }
.collection-poems li:last-child { border-bottom: 0; }
.collection-poems button {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 17px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.collection-poems button:hover .collection-poem-title, .collection-poems button:focus-visible .collection-poem-title { color: var(--rust); }
.collection-poem-number { color: var(--muted); font-size: 11px; letter-spacing: .1em; }
.collection-poem-title { font: 400 clamp(21px, 2.2vw, 31px)/1.15 var(--serif); }
.collection-poem-open { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.poem-dialog {
  width: min(1120px, calc(100% - 56px));
  height: min(88svh, 900px);
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 24px 80px rgba(36, 31, 26, .22);
}
.poem-dialog[open] { animation: poem-dialog-in .48s cubic-bezier(.22, 1, .36, 1) both; }
.poem-dialog::backdrop { background: rgba(36, 31, 26, .45); backdrop-filter: blur(7px); animation: poem-backdrop-in .36s ease both; }
@keyframes poem-dialog-in {
  from { opacity: 0; transform: translate3d(0, 34px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes poem-backdrop-in { from { opacity: 0; } to { opacity: 1; } }
.dialog-reader { position: relative; height: 100%; display: grid; grid-template-columns: minmax(280px, .78fr) minmax(340px, 1.22fr); }
.dialog-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dialog-close span { font: 300 26px/1 var(--sans); }
.dialog-meta { padding: clamp(46px, 6vw, 84px); border-right: 1px solid var(--line); }
.dialog-meta h2 { margin: 18px 0 36px; font: 500 clamp(40px, 4.6vw, 70px)/.92 var(--serif); letter-spacing: -.035em; }
.dialog-index { display: flex; gap: 10px; font-size: 12px; letter-spacing: .12em; }
.dialog-controls { display: flex; gap: 8px; margin-top: 28px; }
.dialog-controls button { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 19px; }
.dialog-controls button:hover, .dialog-controls button:focus-visible { color: var(--paper-light); background: var(--ink); }
.dialog-sheet { overflow-y: auto; padding: clamp(72px, 8vw, 112px) clamp(42px, 7vw, 94px); overscroll-behavior: contain; }
.dialog-poem-text { margin: 0; white-space: pre-wrap; font: 400 clamp(22px, 1.8vw, 29px)/1.58 var(--serif); }

.visual-diary {
  padding: clamp(90px, 10vw, 150px) 0 clamp(100px, 12vw, 190px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.visual-heading {
  padding: 0 clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  column-gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}
.visual-heading .eyebrow { grid-row: 1 / 3; }
.visual-heading h2 { margin-top: 0; }
.visual-heading > p:last-child { margin: 0; }
.art-strip {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  overflow-x: auto;
  max-width: 100vw;
  overscroll-behavior-inline: contain;
  padding: 10px clamp(24px, 7vw, 112px) 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--rust) transparent;
}
.art-strip figure { flex: 0 0 clamp(230px, 30vw, 430px); margin: 0; scroll-snap-align: center; }
.art-strip figure:nth-child(3n+2) { flex-basis: clamp(200px, 24vw, 340px); }
.art-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.82) contrast(.96);
  transition: filter .35s, transform .35s;
}
.art-strip figure:nth-child(even) img { aspect-ratio: 3 / 4; }
.art-strip figure:hover img { filter: saturate(1); transform: translateY(-5px); }
.art-strip figcaption { margin-top: 10px; color: var(--muted); font-size: 11px; letter-spacing: .14em; }

.catalog { position: relative; isolation: isolate; overflow: hidden; padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 112px); background: var(--paper-light); }
.catalog-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 70px; }
.catalog h2 { margin-top: 12px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--paper-light); }
.poem-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.poem-list li { border-bottom: 1px solid var(--line); }
.poem-list button {
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}
.poem-list button:hover .list-title, .poem-list button:focus-visible .list-title { color: var(--rust); transform: translateX(8px); }
.list-number, .list-collection { color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.list-title { font: 400 clamp(24px, 2.5vw, 38px)/1.05 var(--serif); transition: transform .25s, color .25s; }

footer {
  padding: 32px clamp(24px, 7vw, 112px);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
footer span:first-child { font: 400 19px/1 var(--hand); letter-spacing: .1em; }

@media (max-width: 760px) {
  .intro > *, .reader > *, .author-section > *, .influences > *, .visual-heading > *, .catalog-head > * { min-width: 0; }
  .site-header { min-height: 64px; }
  .menu-button { display: flex; align-items: center; gap: 10px; padding: 10px 0; border: 0; background: transparent; font-size: 12px; }
  .menu-button b, .menu-button b::after { display: block; width: 22px; height: 1px; background: currentColor; content: ""; }
  .menu-button b::after { transform: translateY(5px); }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    padding: 22px 24px 26px;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform .25s;
    z-index: -1;
  }
  .site-nav.open { transform: translateY(0); }
  .intro { min-height: calc(100svh - 64px); grid-template-columns: 1fr auto; padding-top: 8vh; }
  .intro h1 { font-size: clamp(70px, 24vw, 112px); }
  .intro h1 em { font-size: 1.23em; margin-left: .1em; }
  .intro-subtitle { margin: 0 0 25px .1em; font-size: 10px; letter-spacing: .16em; }
  .intro-note { max-width: 250px; font-size: 24px; margin-right: 16px; }
  .ambient-art--top {
    width: 180vw;
    right: -70vw;
    top: 17vh;
    opacity: .23;
  }
  .ambient-art--bottom { width: 120vw; left: -54vw; top: 220vh; }
  .reader { grid-template-columns: 1fr; gap: 45px; min-height: 0; }
  .section-art--boats { width: 175vw; right: -88vw; bottom: 4%; opacity: .23; }
  .section-art--orchard { width: 220vw; left: -70vw; bottom: -5%; opacity: .21; }
  .section-art--village { width: 170vw; right: -62vw; top: 4%; opacity: .22; }
  .reader-meta { position: static; }
  .reader-meta h2 { margin-bottom: 24px; }
  .poem-text { font-size: clamp(21px, 5.8vw, 27px); line-height: 1.52; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 48px; }
  .collections { padding-top: 96px; }
  .collections-portrait {
    top: 34px;
    right: auto;
    left: -20vw;
    width: 122vw;
    opacity: .08;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 78%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 7%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 78%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 7%, #000 82%, transparent 100%);
  }
  .section-subtitle { max-width: 310px; margin-top: 30px; font-size: 11px; line-height: 1.55; }
  .author-section {
    min-height: 760px;
    display: block;
    padding: 64px 24px 74px;
  }
  .author-photo {
    width: 100%;
    min-height: 100%;
    margin: 0;
  }
  .author-photo img {
    inset: -2% -32% auto -28%;
    width: 160%;
    height: 610px;
    object-position: 51% 43%;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 18%, #000 74%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 16%, #000 76%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 18%, #000 74%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 16%, #000 76%, transparent 100%);
    mask-composite: intersect;
  }
  .author-copy { margin: 350px 0 0; padding: 28px 24px 32px; background: rgba(238, 230, 216, .54); }
  .author-copy h2 { font-size: clamp(48px, 16vw, 76px); }
  .influences { grid-template-columns: 1fr; gap: 2.5rem; }
  .visual-heading { grid-template-columns: 1fr; }
  .visual-heading .eyebrow { grid-row: auto; }
  .visual-heading h2 { margin-top: 18px; }
  .collection-card { grid-template-columns: 36px 1fr auto 36px; gap: 9px; padding: 22px 0; }
  .collection-card h3 { font-size: clamp(30px, 9vw, 42px); }
  .collection-card b { max-width: 76px; font-size: 10px; }
  .collection-card::after { width: 34px; height: 34px; }
  .collection-poems { padding: 4px 0 22px 36px; }
  .collection-poems button { grid-template-columns: 32px 1fr; gap: 10px; padding: 15px 0; }
  .collection-poem-open { display: none; }
  .poem-dialog { width: 100%; height: 100dvh; border: 0; }
  .dialog-reader { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .dialog-close { position: fixed; top: 12px; right: 18px; padding: 8px; background: rgba(247, 242, 233, .9); }
  .dialog-meta { padding: 58px 24px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .dialog-meta h2 { max-width: calc(100% - 20px); margin: 12px 0 20px; font-size: clamp(34px, 11vw, 52px); }
  .dialog-controls { position: absolute; top: 55px; right: 20px; margin: 0; }
  .dialog-controls button { width: 38px; height: 38px; }
  .dialog-sheet { padding: 34px 24px 72px; }
  .dialog-poem-text { font-size: clamp(21px, 5.8vw, 26px); }
  .catalog-head { align-items: start; flex-direction: column; }
  .filters { justify-content: flex-start; }
  .poem-list button { grid-template-columns: 36px 1fr; }
  .list-collection { grid-column: 2; }
  footer { gap: 12px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .ambient-art,
  .section-art,
  .intro-title,
  .intro-note,
  .author-photo img,
  .collections-portrait { transform: none !important; }
}

/* The foreground lettering and distant illustrations occupy separate visual planes. */
.intro-title, .intro-note { transform-origin: left center; }
.intro-title { filter: drop-shadow(0 7px 12px rgba(61, 40, 24, .07)); }
@media (hover: hover) and (pointer: fine) {
  .intro-title, .intro-note, .ambient-art, .author-photo img, .collections-portrait, .section-art {
    transition: transform 180ms ease-out;
  }
}
