:root {
  --ink: #0d0c0c;
  --ink-soft: #181515;
  --line: rgba(13, 12, 12, .2);
  --paper: #eee6da;
  --paper-deep: #e4d8ca;
  --paper-ink: #302723;
  --paper-muted: #665951;
  --signal: #b52c23;
  --signal-dark: #7e1b16;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --body: "Libre Baskerville", Georgia, serif;
  --sans: Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--paper-ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, summary:focus-visible, .menu-toggle:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }
.site-shell { max-width: 1500px; min-height: 100vh; margin: 0 auto; overflow: hidden; }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 100; height: 3px; background: var(--signal); transform: scaleX(0); transform-origin: left center; pointer-events: none; }

.site-header {
  min-height: 68px;
  padding: 0 clamp(20px, 5.4vw, 86px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-top: 3px solid var(--signal);
  border-bottom: 1px solid rgba(238, 230, 218, .18);
  background: var(--ink);
  color: var(--paper);
}
.wordmark { position: relative; padding-left: 12px; font-family: var(--display); font-size: 16px; font-weight: 500; letter-spacing: -.055em; white-space: nowrap; }
.wordmark::before { content: ""; position: absolute; left: 0; top: 50%; width: 2px; height: 18px; background: var(--signal); transform: translateY(-50%); }
.site-nav { display: flex; justify-content: flex-end; gap: clamp(17px, 2.6vw, 40px); }
.site-nav a {
  color: rgba(238, 230, 218, .72);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: -.01em;
  text-transform: none;
  white-space: nowrap;
  transition: color .25s, letter-spacing .25s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--signal); letter-spacing: .015em; }
.menu-toggle { display: none; }

.home-hero {
  min-height: min(700px, calc(100vh - 68px));
  padding: clamp(70px, 10vw, 145px) clamp(24px, 5.4vw, 86px) clamp(75px, 9vw, 125px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  position: relative;
  background: var(--ink);
  color: var(--paper);
}
.home-hero::before { content: ""; position: absolute; left: 48%; top: 15%; width: clamp(180px, 22vw, 340px); aspect-ratio: 1; border: 1px solid rgba(181, 44, 35, .13); border-radius: 48% 52% 46% 54%; transform: rotate(-18deg); animation: ink-orbit 18s ease-in-out infinite alternate; pointer-events: none; }
.home-hero::after { content: ""; position: absolute; right: clamp(24px, 5.4vw, 86px); bottom: 0; width: 1px; height: 44%; background: var(--signal); opacity: .8; transform-origin: bottom; animation: thread-draw 1.2s .35s cubic-bezier(.2,.8,.2,1) both; }
.home-copy-reveal h1 { animation: typeset-in .95s cubic-bezier(.2,.8,.2,1) both; }
.home-copy-reveal p { animation: copy-in .8s .32s cubic-bezier(.2,.8,.2,1) both; }
.home-links-reveal { animation: links-in .8s .48s cubic-bezier(.2,.8,.2,1) both; }
.home-links-reveal a { opacity: 0; animation: link-in .65s cubic-bezier(.2,.8,.2,1) both; }
.home-links-reveal a:nth-child(1) { animation-delay: .62s; }
.home-links-reveal a:nth-child(2) { animation-delay: .72s; }
.home-links-reveal a:nth-child(3) { animation-delay: .82s; }
.home-links-reveal a:nth-child(4) { animation-delay: .92s; }
@keyframes typeset-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes links-in { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes link-in { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
@keyframes thread-draw { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes ink-orbit { from { transform: rotate(-18deg) translate3d(-8px, 0, 0); } to { transform: rotate(8deg) translate3d(12px, 18px, 0); } }
.home-copy { max-width: 880px; }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.075em; }
.home-copy h1 { margin: 0; padding: 0 0 .08em; overflow: visible; font-size: clamp(70px, 12.5vw, 184px); line-height: .84; }
.home-copy h1 span { display: block; }
.home-copy h1 .title-name { color: var(--paper); }
.home-copy h1 .title-poems { margin-left: .09em; color: var(--signal); transition: transform .35s ease, letter-spacing .35s ease; }
.home-copy h1:hover .title-poems { transform: translateX(.045em); letter-spacing: -.035em; }
.home-copy p { max-width: 56ch; margin: clamp(48px, 5vw, 78px) 0 0; color: rgba(238, 230, 218, .68); font-size: 15px; line-height: 1.75; }
.home-links { border-top: 1px solid rgba(238, 230, 218, .3); }
.home-links a {
  min-height: 58px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(238, 230, 218, .3);
  color: var(--paper);
  font-family: var(--body);
  font-size: clamp(16px, 1.7vw, 23px);
  letter-spacing: -.04em;
  transition: color .2s, padding-left .2s;
}
.home-links a:hover { padding-left: 11px; color: var(--signal); }
.home-links small { grid-column: 1; color: var(--signal); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: none; }

.collection-preview {
  position: relative;
  z-index: 1;
  margin: -34px 0 0;
  padding: clamp(78px, 9vw, 120px) clamp(24px, 5.4vw, 86px) clamp(80px, 9vw, 130px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 80px);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -18px 42px rgba(0, 0, 0, .24);
  background: var(--paper);
  color: var(--paper-ink);
}
.preview-collection { min-width: 0; }
.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal-on-scroll.is-revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(2) { transition-delay: .1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: .2s; }
.preview-title {
  display: block;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--signal);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -.055em;
  transition: color .2s;
}
.preview-title:hover { color: var(--signal-dark); }
.preview-poems { display: flex; flex-direction: column; }
.preview-poems a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--paper-muted); font-family: var(--body); font-size: 13px; line-height: 1.3; transition: color .2s, padding-left .2s; }
.preview-poems a:hover { padding-left: 8px; color: var(--signal-dark); }

.site-footer { min-height: 76px; padding: 0 clamp(24px, 5.4vw, 86px); display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: rgba(238, 230, 218, .65); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: none; }
.site-footer a { color: var(--signal); }

.collection-hero { position: relative; overflow: hidden; padding: clamp(54px, 8vw, 110px) clamp(24px, 7vw, 110px) clamp(72px, 9vw, 125px); background: var(--paper); color: var(--paper-ink); }
.collection-art { position: absolute; z-index: 0; right: clamp(30px, 10vw, 180px); top: 50%; width: clamp(120px, 18vw, 260px); aspect-ratio: 1; color: var(--signal); opacity: .48; transform: translateY(-50%); pointer-events: none; }
.collection-art::before, .collection-art::after { content: ""; position: absolute; }
.collection-art-one { border: 1px solid currentColor; border-radius: 44% 56% 51% 49%; transform: translateY(-50%) rotate(-18deg); }
.collection-art-one::before { inset: 15% 24% 18% 10%; border: 1px solid currentColor; border-radius: 52% 48% 46% 54%; transform: rotate(29deg); }
.collection-art-one::after { left: 7%; top: 50%; width: 86%; height: 1px; background: currentColor; transform: rotate(-17deg); box-shadow: 0 16px 0 rgba(181, 44, 35, .45); }
.collection-art-two { border: 1px solid currentColor; border-radius: 50%; transform: translateY(-50%) rotate(12deg); }
.collection-art-two::before { inset: 17%; border: 1px solid currentColor; transform: rotate(45deg); }
.collection-art-two::after { left: 7%; top: 50%; width: 86%; height: 1px; background: currentColor; transform: rotate(-23deg); box-shadow: 0 -18px 0 rgba(181, 44, 35, .42), 0 18px 0 rgba(181, 44, 35, .42); }
.collection-art-three { border: 0; transform: translateY(-50%) skewY(-7deg); }
.collection-art-three::before { left: 38%; top: 8%; width: 24%; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; }
.collection-art-three::after { left: 19%; top: 37%; width: 62%; height: 54%; border: 1px solid currentColor; border-radius: 48% 52% 16% 16% / 26% 26% 10% 10%; box-shadow: 14px 12px 0 -1px var(--paper), 14px 12px 0 0 currentColor; }
.collection-hero h1 { position: relative; z-index: 1; max-width: 9ch; margin: 0; padding: clamp(28px, 4vw, 58px) clamp(24px, 4vw, 62px); background: var(--ink); color: var(--paper); font-size: clamp(52px, 9vw, 132px); line-height: .86; box-shadow: 14px 16px 0 var(--signal); }
.poems-section { padding: clamp(52px, 7vw, 95px) clamp(24px, 9vw, 145px) 115px; background: var(--paper); color: var(--paper-ink); }
.poem-page-list { max-width: 1040px; margin: 0 auto; border-top: 1px solid var(--line); }
.poem-entry { position: relative; scroll-margin-top: 100px; border-bottom: 1px solid var(--line); }
.poem-entry::before { content: ""; position: absolute; left: -16px; top: 0; bottom: 0; width: 2px; background: transparent; transition: background .35s; }
.poem-entry.is-active::before { background: var(--signal); }
.poem-entry-heading { display: grid; width: 100%; grid-template-columns: 45px 38px minmax(0, 1fr); gap: 15px; align-items: center; padding: 25px 0 22px; border: 0; background: transparent; color: var(--paper-ink); text-align: left; cursor: pointer; list-style: none; }
.poem-entry-heading::-webkit-details-marker { display: none; }
.poem-entry-heading:hover { color: var(--signal-dark); }
.poem-entry-heading h2 { margin: 0; font-size: clamp(24px, 3.2vw, 44px); line-height: 1.08; }
.poem-entry-number { color: var(--paper-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; transition: color .35s; }
.poem-entry.is-active .poem-entry-number { color: var(--signal); }
.poem-entry-graphic { position: relative; width: 30px; height: 30px; color: var(--paper-muted); opacity: .52; transition: color .35s, opacity .35s, transform .35s; }
.poem-entry.is-active .poem-entry-graphic { color: var(--signal); opacity: 1; transform: scale(1.08); }
.poem-entry-graphic::before, .poem-entry-graphic::after { content: ""; position: absolute; box-sizing: border-box; }
.mark-heart::before { left: 7px; top: 8px; width: 16px; height: 16px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); }
.mark-heart::after { left: 7px; top: 4px; width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 8px 0 0 -1px var(--paper), 8px 0 0 0 currentColor; }
.mark-door::before { left: 7px; top: 4px; width: 16px; height: 23px; border: 1px solid currentColor; }
.mark-door::after { right: 10px; top: 16px; width: 3px; height: 3px; border: 1px solid currentColor; border-radius: 50%; }
.mark-forest::before { left: 3px; bottom: 3px; width: 24px; height: 1px; background: currentColor; box-shadow: 0 -7px 0 currentColor; }
.mark-forest::after { left: 7px; bottom: 10px; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 15px solid currentColor; opacity: .75; }
.mark-mirror::before { inset: 4px 7px; border: 1px solid currentColor; transform: rotate(8deg); }
.mark-mirror::after { left: 4px; top: 14px; width: 22px; height: 1px; background: currentColor; transform: rotate(-18deg); }
.mark-road::before { left: 7px; top: 4px; width: 16px; height: 23px; border-left: 1px solid currentColor; border-right: 1px solid currentColor; transform: skewX(-14deg); }
.mark-road::after { left: 14px; top: 6px; width: 1px; height: 5px; background: currentColor; box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor; }
.mark-light::before { left: 9px; top: 8px; width: 12px; height: 12px; border: 1px solid currentColor; border-radius: 50%; }
.mark-light::after { left: 14px; top: 2px; width: 1px; height: 25px; background: currentColor; transform: rotate(18deg); }
.mark-ornament::before { left: 7px; top: 7px; width: 16px; height: 16px; border: 1px solid currentColor; border-radius: 50%; }
.mark-ornament::after { left: 14px; top: 2px; width: 3px; height: 7px; border: 1px solid currentColor; }
.mark-paw::before { left: 12px; top: 12px; width: 8px; height: 10px; border: 1px solid currentColor; border-radius: 50%; box-shadow: -7px -5px 0 -2px var(--paper), -7px -5px 0 -1px currentColor, 7px -5px 0 -2px var(--paper), 7px -5px 0 -1px currentColor; }
.mark-paw::after { left: 7px; top: 5px; width: 4px; height: 4px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 12px 0 0 -1px var(--paper), 12px 0 0 0 currentColor; }
.mark-sky::before { left: 8px; top: 4px; width: 14px; height: 14px; border: 1px solid currentColor; border-radius: 50%; }
.mark-sky::after { left: 3px; bottom: 6px; width: 24px; height: 1px; background: currentColor; box-shadow: 0 6px 0 currentColor; }
.mark-branch::before { left: 14px; top: 4px; width: 1px; height: 24px; background: currentColor; transform: rotate(42deg); }
.mark-branch::after { left: 7px; top: 9px; width: 13px; height: 9px; border-top: 1px solid currentColor; border-radius: 50%; transform: rotate(-25deg); }
.mark-tide::before { left: 3px; top: 9px; width: 24px; height: 9px; border-top: 1px solid currentColor; border-radius: 50%; }
.mark-tide::after { left: 3px; top: 17px; width: 24px; height: 9px; border-top: 1px solid currentColor; border-radius: 50%; }
.mark-train::before { left: 4px; top: 8px; width: 22px; height: 15px; border: 1px solid currentColor; }
.mark-train::after { left: 8px; top: 12px; width: 5px; height: 4px; border: 1px solid currentColor; box-shadow: 8px 0 0 -1px var(--paper), 8px 0 0 0 currentColor; }
.mark-split::before { left: 5px; top: 5px; width: 20px; height: 20px; border: 1px solid currentColor; border-radius: 50%; }
.mark-split::after { left: 14px; top: 5px; width: 1px; height: 20px; background: currentColor; transform: rotate(38deg); }
.mark-room::before { inset: 5px; border: 1px solid currentColor; }
.mark-room::after { left: 14px; bottom: 5px; width: 1px; height: 11px; background: currentColor; transform: rotate(35deg); }
.mark-roots::before { left: 8px; top: 4px; width: 1px; height: 24px; background: currentColor; box-shadow: 7px 0 0 currentColor, 14px 0 0 currentColor; }
.mark-roots::after { left: 4px; bottom: 4px; width: 22px; height: 9px; border-top: 1px solid currentColor; border-radius: 50%; }
.mark-dream::before { left: 5px; top: 8px; width: 20px; height: 14px; border: 1px solid currentColor; border-radius: 50%; transform: rotate(-14deg); }
.mark-dream::after { left: 15px; top: 3px; width: 1px; height: 24px; background: currentColor; transform: rotate(26deg); }
.mark-city::before { left: 5px; bottom: 4px; width: 5px; height: 15px; border: 1px solid currentColor; box-shadow: 8px -8px 0 -1px var(--paper), 8px -8px 0 0 currentColor, 16px -3px 0 -1px var(--paper), 16px -3px 0 0 currentColor; }
.mark-city::after { left: 3px; right: 3px; bottom: 3px; height: 1px; background: currentColor; }
.mark-stair::before { left: 5px; bottom: 6px; width: 20px; height: 15px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; background: transparent; }
.mark-stair::after { left: 5px; top: 5px; width: 20px; height: 1px; background: currentColor; transform: rotate(-32deg); }
.mark-sun::before { left: 8px; top: 8px; width: 14px; height: 14px; border: 1px solid currentColor; border-radius: 50%; }
.mark-sun::after { left: 14px; top: 2px; width: 1px; height: 26px; background: currentColor; transform: rotate(45deg); }
.mark-spotlight::before { left: 10px; top: 3px; width: 10px; height: 10px; border: 1px solid currentColor; border-radius: 50%; }
.mark-spotlight::after { left: 7px; top: 14px; width: 16px; height: 12px; border-left: 1px solid currentColor; border-right: 1px solid currentColor; transform: perspective(20px) rotateX(-20deg); }
.mark-breeze::before { left: 3px; top: 9px; width: 24px; height: 8px; border-top: 1px solid currentColor; border-radius: 50%; transform: rotate(-8deg); }
.mark-breeze::after { left: 7px; top: 17px; width: 18px; height: 7px; border-top: 1px solid currentColor; border-radius: 50%; transform: rotate(8deg); }
.mark-nightmare::before { left: 6px; top: 5px; width: 18px; height: 20px; border: 1px solid currentColor; border-radius: 48% 52% 45% 55%; transform: rotate(14deg); }
.mark-nightmare::after { left: 14px; top: 10px; width: 3px; height: 3px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 7px 0 0 -1px var(--paper), 7px 0 0 0 currentColor; }
.mark-bag::before { left: 5px; top: 9px; width: 20px; height: 16px; border: 1px solid currentColor; }
.mark-bag::after { left: 11px; top: 4px; width: 8px; height: 7px; border: 1px solid currentColor; border-bottom: 0; border-radius: 5px 5px 0 0; }
.mark-speech::before { left: 5px; top: 6px; width: 20px; height: 15px; border: 1px solid currentColor; border-radius: 50%; }
.mark-speech::after { left: 8px; bottom: 5px; width: 7px; height: 7px; border-left: 1px solid currentColor; transform: skew(-25deg); }
.poem-entry-body { max-width: 64ch; padding: 0 0 43px 102px; color: var(--paper-muted); font-family: var(--body); font-size: 15px; line-height: 1.9; }
.poem-entry-body p { margin: 0 0 28px; }
.poem-entry-body p:last-child { margin-bottom: 0; }

.coming-page { position: relative; isolation: isolate; overflow: hidden; min-height: calc(100vh - 68px); padding: clamp(72px, 10vw, 150px) clamp(24px, 7vw, 110px); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(180px, .5fr); align-items: center; gap: clamp(40px, 9vw, 140px); background: var(--signal-dark); color: var(--paper); }
.coming-page::before { content: ""; position: absolute; inset: clamp(22px, 4vw, 58px); border: 1px solid rgba(238, 230, 218, .18); pointer-events: none; animation: coming-frame-in 1.4s .15s ease both; }
.coming-page::after { content: ""; position: absolute; left: 58%; top: -8%; width: 1px; height: 116%; background: rgba(238, 230, 218, .16); transform: rotate(19deg); transform-origin: center; pointer-events: none; animation: coming-registration 1.1s .4s ease both; }
.coming-cover { position: relative; z-index: 1; isolation: isolate; max-width: 760px; padding: clamp(34px, 6vw, 88px) clamp(26px, 5vw, 72px); background: var(--ink); box-shadow: 18px 18px 0 var(--paper); animation: coming-cover-in .9s cubic-bezier(.2,.8,.2,1) both; }
.coming-cover::before { content: ""; position: absolute; z-index: -1; inset: 12px -18px -18px 18px; border: 1px solid rgba(238, 230, 218, .68); background: transparent; transform: rotate(2.2deg); }
.coming-cover h1, .coming-cover p { position: relative; z-index: 1; }
.coming-cover::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28%; height: 4px; background: var(--signal); transform-origin: left; animation: coming-underline .9s .7s ease both; }
.coming-page h1 { max-width: 9ch; margin: 0; font-size: clamp(55px, 10vw, 150px); line-height: .82; animation: coming-title-in .9s .16s cubic-bezier(.2,.8,.2,1) both; }
.coming-page p { margin: 38px 0 0; color: var(--signal); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: none; animation: coming-copy-in .7s .55s ease both; }
.coming-art { position: relative; z-index: 1; width: min(28vw, 290px); aspect-ratio: 1; border: 1px solid rgba(238, 230, 218, .72); transform: rotate(12deg); animation: coming-art-drift 12s 1s ease-in-out infinite alternate; }
.coming-art::before, .coming-art::after, .coming-art span::before, .coming-art span::after { content: ""; position: absolute; box-sizing: border-box; }
.coming-art::before { inset: 12%; border: 1px solid var(--signal); border-radius: 48% 52% 43% 57%; transform: rotate(-28deg); }
.coming-art::after { left: 12%; top: 50%; width: 76%; height: 1px; background: var(--paper); transform: rotate(24deg); box-shadow: 0 -34px 0 rgba(238, 230, 218, .46), 0 34px 0 rgba(238, 230, 218, .46); }
.coming-art span::before { left: 49%; top: 6%; width: 1px; height: 88%; background: var(--paper); transform: rotate(-17deg); }
.coming-art span::after { left: 28%; top: 28%; width: 44%; height: 44%; border: 1px solid rgba(181, 44, 35, .8); transform: rotate(45deg); }
@keyframes coming-frame-in { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: scale(1); } }
@keyframes coming-registration { from { opacity: 0; transform: rotate(19deg) scaleY(0); } to { opacity: 1; transform: rotate(19deg) scaleY(1); } }
@keyframes coming-cover-in { from { opacity: 0; transform: translateY(26px) rotate(-1deg); } to { opacity: 1; transform: translateY(0) rotate(0); } }
@keyframes coming-title-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes coming-copy-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes coming-underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes coming-art-drift { from { transform: rotate(12deg) translate3d(-6px, 4px, 0); } to { transform: rotate(18deg) translate3d(8px, -10px, 0); } }

@media (max-width: 850px) {
  .site-header { grid-template-columns: 1fr auto; gap: 18px; padding-top: 12px; padding-bottom: 10px; }
  .wordmark { grid-column: 1; grid-row: 1; }
  .menu-toggle { grid-column: 2; grid-row: 1; width: 31px; height: 31px; padding: 7px 5px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 1px solid rgba(238, 230, 218, .3); background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 100%; border-top: 1px solid var(--paper); transition: transform .2s; }
  .site-header.nav-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .site-header.nav-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { grid-column: 1 / -1; grid-row: 2; display: none; justify-content: flex-start; padding: 14px 0 8px; border-top: 1px solid rgba(238, 230, 218, .18); }
  .site-header.nav-open .site-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
  .site-header.nav-open .site-nav a { min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid rgba(238, 230, 218, .18); }
  .home-hero { min-height: 660px; grid-template-columns: 1fr; align-items: start; gap: 48px; }
  .home-hero::after { right: 24px; height: 25%; }
  .home-copy p { max-width: 58ch; }
  .collection-preview { grid-template-columns: 1fr 1fr; }
  .preview-collection:last-child { grid-column: 1 / -1; max-width: calc(50% - 14px); }
  .collection-hero h1 { max-width: 10ch; }
  .collection-art { right: 8%; }
}
@media (max-width: 600px) {
  .site-header { grid-template-columns: 1fr auto; gap: 14px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 10px; }
  .home-hero { min-height: 590px; padding-top: 61px; padding-bottom: 67px; }
  .home-hero::before { left: 50%; top: 18%; width: 220px; border-color: rgba(181, 44, 35, .22); }
  .home-hero::after { right: 22px; height: 18%; }
  .home-copy h1 { padding-bottom: .1em; font-size: clamp(62px, 20vw, 108px); line-height: .84; }
  .home-copy p { margin-top: 38px; font-size: 14px; }
  .home-links a { min-height: 53px; font-size: 17px; }
  .collection-preview { grid-template-columns: 1fr; gap: 48px; margin-top: -22px; padding-top: 65px; border-radius: 20px 20px 0 0; }
  .preview-title { font-size: 23px; }
  .preview-poems a { padding: 13px 0; }
  .preview-collection:last-child { grid-column: auto; max-width: none; }
  .collection-hero { padding: 45px 22px 122px; }
  .collection-art { top: auto; right: 18px; bottom: 18px; width: 108px; opacity: .78; filter: drop-shadow(0 0 10px rgba(181, 44, 35, .24)); transform: scale(.88); }
  .collection-art-one { transform: rotate(-14deg) scale(.88); }
  .collection-art-three { transform: skewY(-10deg) scale(.88); }
  .collection-hero h1 { max-width: 9ch; padding: 27px 22px; font-size: clamp(46px, 14vw, 82px); box-shadow: 8px 10px 0 var(--signal); }
  .poems-section { padding: 50px 22px 80px; }
  .poem-entry { scroll-margin-top: 84px; }
  .poem-entry::before { left: -10px; }
  .poem-entry-heading { grid-template-columns: 34px 34px minmax(0, 1fr); gap: 8px; padding: 19px 0; }
  .poem-entry-heading h2 { font-size: 22px; }
  .poem-entry-graphic { width: 28px; height: 28px; }
  .poem-entry-body { padding: 0 0 35px 76px; font-size: 14px; line-height: 1.82; }
  .coming-page { min-height: max(calc(100vh - 68px), 620px); grid-template-columns: 1fr; align-content: center; gap: 54px; padding-top: 67px; padding-bottom: 90px; }
  .coming-page::before { inset: 18px; }
  .coming-page::after { left: 78%; top: -4%; height: 108%; transform: rotate(14deg); }
  .coming-cover { width: calc(100% - 9px); }
  .coming-cover::before { inset: 10px -10px -12px 10px; }
  .coming-page h1 { font-size: clamp(48px, 14vw, 82px); }
  .coming-art { width: 148px; justify-self: end; margin-top: 6px; }
  .site-footer { min-height: 68px; font-size: 8px; }
  .site-footer a { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .home-copy-reveal h1, .home-copy-reveal p, .home-links-reveal, .home-links-reveal a, .reveal-on-scroll { opacity: 1; transform: none; clip-path: none; }
}
