@import url("https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Yuyu&display=swap");

:root {
  --paper: #f3eee4;
  --paper-deep: #e8e0d3;
  --ink: #171616;
  --muted: #706b63;
  --red: #a3483d;
  --yellow: #e5d177;
  --pink: #e5b6a9;
  --green: #b8c9a8;
  --line: rgba(23, 22, 22, 0.22);
  --body: "Yuyu", "Trebuchet MS", sans-serif;
  --hand: "Gochi Hand", "Trebuchet MS", sans-serif;
  --sans: var(--body);
  --mono: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(35, 26, 15, 0.06) 0.65px, transparent 0.8px),
    radial-gradient(rgba(35, 26, 15, 0.035) 0.65px, transparent 0.8px),
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.2),
      transparent 42%,
      rgba(112, 88, 55, 0.025)
    );
  background-position:
    0 0,
    11px 13px,
    0 0;
  background-size:
    17px 17px,
    23px 23px,
    100% 100%;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background: repeating-linear-gradient(
    96deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.06) 4px,
    transparent 5px
  );
  mix-blend-mode: soft-light;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
.wordmark {
  font-family: var(--hand);
}

.site-shell {
  width: min(100% - 72px, 1380px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.site-header .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header .wordmark span {
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.site-header .wordmark:hover span {
  transform: rotate(-3deg) translateY(-1px);
}

.wordmark-avatar {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
  object-fit: cover;
}

.wordmark i {
  color: var(--red);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 1.5rem;
  font-weight: 400;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a span {
  display: inline-block;
  margin-left: 0.1rem;
  font-size: 0.95em;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  gap: 4px;
}

.menu-icon b {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  height: calc(100svh - 80px);
  min-height: 560px;
  max-height: 760px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vh, 74px) 7vw clamp(28px, 5vh, 74px) 0;
}

.eyebrow,
.note-topline,
.card-kicker {
  margin: 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0.4rem 0.05rem 0;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  max-width: 680px;
  margin: 25px 0 25px;
  font-size: clamp(4.4rem, 7.6vw, 8.15rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero h1 .title-word {
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.hero h1 .title-word:hover {
  transform: rotate(-2deg);
}

h1 em,
h2 em,
h3 em {
  position: relative;
  font-family: var(--hand);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 em {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 em::after {
  position: absolute;
  right: 2%;
  bottom: 0.01em;
  left: 1%;
  height: 0.14em;
  content: "";
  border-top: 2px solid var(--red);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.intro {
  max-width: 455px;
  margin: 0;
  color: #4f4a44;
  font-size: 1.85rem;
  line-height: 1.45;
  letter-spacing: -0.055em;
  font-family: var(--body);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 55px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 1.5rem;
  font-weight: 400;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-big {
  font-size: 2rem;
}

.text-link,
.arrow-link {
  font-size: 0.72rem;
  font-weight: 800;
}

.text-link span,
.arrow-link span,
.email-link span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.arrow-link:hover span,
.email-link:hover span {
  transform: translate(3px, -3px);
}

.hero-meta {
  display: flex;
  align-items: baseline;
  gap: 2.2rem;
  margin-top: 0;
  padding-top: 20px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  font-family: var(--mono);
  font-size: 1.5rem;
}

.social-links a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.social-links a:hover {
  border-color: var(--ink);
}

.social-links span {
  color: var(--red);
}

.hero-art {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.hero-art::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 80%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.portrait-note {
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 1%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--red);
  font-family: var(--hand);
  font-size: 1.45rem;
  line-height: 0.9;
  text-align: right;
  transform: rotate(5deg);
}

.portrait-note svg {
  width: 82px;
  height: 65px;
  margin-top: 3px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.portrait-frame {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(115%, 680px, 90%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(-2deg);
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.hero-art:hover .portrait-frame {
  transform: translate(-50%, -50%) rotate(-2deg) scale(1.04);
}

.portrait-paper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portrait-paper img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.12);
  mix-blend-mode: multiply;
  transform: translateY(-8%) scale(1.04);
  transform-origin: center top;
}

.book-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 2vw, 3rem);
  min-height: 650px;
  padding: clamp(38px, 4.5vw, 68px) 4% clamp(43px, 5vw, 73px) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.book-copy {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.book-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.04rem, 5.04vw, 5.32rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.book-copy h2 .title-line {
  display: inline-block;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.book-copy h2 .title-line:hover {
  transform: rotate(-2deg);
}

.book-copy h2 em {
  color: var(--red);
}

.book-copy h2 em::after {
  position: absolute;
  right: -1%;
  bottom: 0.03em;
  left: 0;
  height: 0.12em;
  content: "";
  border-top: 2px solid var(--red);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.book-description {
  max-width: 560px;
  margin: 34px 0 0;
  color: #4f4a44;
  font-size: 1.85rem;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.book-description a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.7rem;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-button {
  align-self: flex-end;
  margin-top: 32px;
}

.book-visual {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  isolation: isolate;
}

.book-visual::before {
  position: absolute;
  z-index: 0;
  width: min(78%, 480px);
  aspect-ratio: 1;
  content: "";
  border-radius: 48% 52% 57% 43% / 53% 44% 56% 47%;
  background: var(--green);
  opacity: 0.9;
  transform: translate(-3%, 2%) rotate(-8deg);
}

.book-cover {
  position: relative;
  z-index: 1;
  width: min(72%, 380px);
  margin: 0;
  transform: rotate(4deg);
  transition: transform 0.3s ease;
}

.book-cover::before {
  position: absolute;
  z-index: -1;
  inset: 12px -12px -12px 12px;
  content: "";
  border: 1px solid var(--ink);
  background: var(--yellow);
  transform: rotate(-5deg);
}

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.book-visual:hover .book-cover {
  transform: translate(-4px, -7px) rotate(1deg);
}

.book-scribble,
.book-sticker {
  position: absolute;
  font-family: var(--hand);
  line-height: 0.85;
  text-align: center;
}

.book-scribble {
  top: 9%;
  left: 1%;
  color: var(--red);
  font-size: 1.8rem;
  transform: rotate(-13deg);
}

.book-sticker {
  right: 2%;
  bottom: 15%;
  padding: 12px 14px 10px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  font-size: 1.35rem;
  transform: rotate(8deg);
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  min-width: max-content;
  padding: 16px 0;
}

.marquee b {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 400;
}

.notes-section {
  padding: 70px 0 135px;
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 48px;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.95;
}

.section-heading h2 em,
.about-section h2 em,
.contact-section h2 em {
  font-size: 1.04em;
}

.arrow-link {
  align-self: end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--ink);
}

.notes-grid {
  position: relative;
  width: 100%;
  min-height: 490px;
}

.note-card {
  --card-angle: 0deg;
  --card-x: 0px;
  --card-y: 0px;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  display: flex;
  width: min(100%, 400px);
  height: 260px;
  flex-direction: column;
  padding: 25px 25px 22px;
  border: 1px solid var(--ink);
  transform: translate(var(--card-x), var(--card-y)) rotate(var(--card-angle));
  transition:
    top 0.35s ease,
    left 0.35s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.note-card:nth-child(1) {
  --card-angle: -4deg;
  top: 20px;
  left: 0;
  z-index: 4;
}

.note-card:nth-child(2) {
  --card-angle: 3deg;
  top: 80px;
  left: 28%;
  z-index: 2;
}

.note-card:nth-child(3) {
  --card-angle: -2deg;
  top: 140px;
  left: 56%;
  z-index: 2;
}

.note-card:nth-child(4) {
  --card-angle: 2deg;
  top: 200px;
  left: 18%;
  z-index: 5;
}

.note-card::before {
  position: absolute;
  top: 17px;
  right: 15px;
  width: 45px;
  height: 12px;
  content: "";
  background: rgba(148, 9, 9, 0.38);
  transform: rotate(10deg);
}

.note-card h3 {
  position: relative;
}

.note-card h3::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: rotate(-2deg);
  transition: width 0.25s ease;
}

.note-card::after {
  position: absolute;
  bottom: 23px;
  left: 25px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--red);
  box-shadow:
    9px 0 0 var(--red),
    18px 0 0 var(--red);
  opacity: 0.72;
  transform: rotate(-8deg);
}

.note-icon-circle {
  position: absolute;
  z-index: 0;
  right: 35px;
  bottom: 32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.note-card img {
  position: absolute;
  right: 25px;
  bottom: 22px;
  display: block;
  width: 100px;
  height: 100px;
  z-index: 1;
  opacity: 0.82;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.note-card:hover,
.note-card:focus-visible {
  z-index: 10;
  --card-x: -3px;
  --card-y: -3px;
  box-shadow: 7px 7px 0 var(--ink);
}

.note-card:hover img,
.note-card:hover .note-icon-circle {
  transform: translate(-4px, -4px) rotate(3deg);
}

.note-card-yellow {
  background-color: var(--yellow);
  background-image: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2),
    transparent 45%
  );
}

.note-card-pink {
  background-color: var(--pink);
  background-image: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    transparent 45%
  );
}

.note-card-cream,
.note-card-beige {
  background: #e8dfd1;
}

.note-card-animal {
  background-color: #c9d0b7;
  background-image: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2),
    transparent 45%
  );
}

.note-topline {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 0.58rem;
}

.note-card h3 {
  margin: 35px 0 17px;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.note-card h3 em {
  font-size: 1.07em;
}

.note-card p {
  max-width: 270px;
  min-height: 50px;
  margin: 0 0 20px;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.note-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 22, 22, 0.45);
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  column-gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  padding: 60px 0 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-heading {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 60px;
}

.about-heading h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.about-heading h2:hover {
  transform: rotate(-2deg);
}

.about-heading h2 em {
  color: var(--ink);
}

.about-layout {
  display: contents;
}

.about-profile {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 3px;
  text-align: center;
}

.about-photo {
  position: relative;
  width: clamp(230px, 28vw, 400px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 9px 9px 0 var(--yellow);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.about-profile:hover .about-photo {
  transform: rotate(2deg);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.about-profile:hover .about-photo img {
  transform: scale(1.06);
}

.about-details {
  display: grid;
  gap: 3px;
  width: min(100%, 400px);
  margin-top: 25px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.about-details p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #4f4a44;
  font-family: var(--hand);
  font-size: 1.45rem;
  line-height: 1.25;
}

.about-details p::before {
  position: absolute;
  top: 0.55em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.about-details strong {
  color: var(--ink);
  font-weight: 400;
}

.about-stamp {
  display: grid;
  width: 114px;
  height: 114px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--hand);
  font-size: 1.42rem;
  line-height: 0.8;
  text-align: center;
  transform: rotate(-13deg);
}

.about-section .eyebrow {
  margin-bottom: 28px;
}

.about-body {
  align-self: end;
  padding-bottom: 2px;
}

.about-body p {
  max-width: 350px;
  margin: 0 0 18px;
  color: #4f4a44;
  font-size: 0.89rem;
  line-height: 1.75;
}

.button-outline {
  margin-top: 14px;
  background: transparent;
}

.links-section {
  padding: 60px 0 110px;
  border-bottom: 1px solid var(--line);
}

.links-heading {
  margin-bottom: 34px;
}

.links-heading h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.links-heading h2:hover {
  transform: rotate(-2deg);
}

.links-heading h2 em {
  color: var(--ink);
  font-style: normal;
}

.links-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-top: 10px;
}

.link-row {
  --row-angle: 0deg;
  --row-shift: 0px;
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transform: translateY(var(--row-shift)) rotate(var(--row-angle));
  transition: transform 0.25s ease;
}

.link-row:nth-child(1) {
  --row-angle: -2deg;
  --row-shift: 10px;
}

.link-row:nth-child(2) {
  --row-angle: 1.5deg;
  --row-shift: -3px;
}

.link-row:nth-child(3) {
  --row-angle: -1deg;
  --row-shift: 17px;
}

.link-row:hover,
.link-row:focus-visible {
  transform: translateY(calc(var(--row-shift) - 6px)) rotate(var(--row-angle));
}

.link-row-number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.link-row-icon {
  display: block;
  width: clamp(84px, 10vw, 132px);
  height: clamp(84px, 10vw, 132px);
  margin: 18px 0 14px;
  color: var(--ink);
  background: transparent;
  transform: rotate(-5deg);
  transition: transform 0.25s ease;
}

.link-row:nth-child(2) .link-row-icon {
  transform: rotate(5deg) scale(0.88);
}

.link-row:nth-child(3) .link-row-icon {
  transform: rotate(-2deg) scale(1.08);
}

.link-row:hover .link-row-icon,
.link-row:focus-visible .link-row-icon {
  transform: rotate(0deg) scale(1.08);
}

.link-row-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.link-row-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-row-copy strong {
  font-family: var(--hand);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.link-row-copy span {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.link-row-arrow {
  position: absolute;
  right: 0;
  bottom: 17px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.link-row:hover .link-row-arrow,
.link-row:focus-visible .link-row-arrow {
  transform: translate(4px, -4px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding: 72px 0 110px;
  border-bottom: 1px solid var(--line);
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.contact-heading h2:hover {
  transform: rotate(-2deg);
}

.contact-heading h2 em {
  color: var(--ink);
  font-style: normal;
}

.contact-links {
  align-self: end;
}

.contact-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: padding-left 0.25s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  padding-left: 10px;
}

.contact-link-copy {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.contact-link-copy strong {
  font-family: var(--hand);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.contact-link-copy span {
  color: #4f4a44;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-link-arrow {
  font-size: 2rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0 31px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.site-footer .wordmark {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.9rem;
  text-transform: none;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  }

  .hero h1 {
    font-size: clamp(4rem, 7.5vw, 6.3rem);
  }

  .portrait-frame {
    width: min(120%, 620px);
    height: auto;
  }

  .section-heading {
    grid-template-columns: 0.75fr 1.5fr auto;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 38px, 600px);
  }

  .site-header {
    height: 77px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    z-index: 8;
    top: 77px;
    right: 19px;
    left: 19px;
    display: none;
    padding: 15px 20px 20px;
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-copy {
    display: contents;
  }

  .hero-art {
    position: relative;
    z-index: auto;
    order: 1;
    top: auto;
    right: auto;
    width: 100%;
    height: min(290px, 78vw);
    min-height: 0;
    margin: 0;
    overflow: visible;
  }

  .hero-art::before {
    width: min(78%, 300px);
  }

  .portrait-frame {
    width: min(72vw, 280px);
    height: auto;
  }

  .hero h1 {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 0 8px;
    text-align: center;
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .intro {
    order: 3;
    width: 100%;
    max-width: 480px;
    margin: 0;
    text-align: center;
    font-size: 1.55rem;
    letter-spacing: -0.045em;
  }

  .hero-actions {
    order: 4;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 0;
  }

  .hero-meta {
    order: 5;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding: 12px 0 24px;
  }

  .social-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    font-size: 1.15rem;
  }

  .social-links a {
    white-space: nowrap;
  }

  .portrait-note {
    display: none;
  }

  .book-section {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
    padding: 43px 0 48px;
  }

  .book-copy {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .book-visual {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .book-copy h2 {
    max-width: 600px;
  }

  .book-description {
    max-width: 540px;
    font-size: 1.55rem;
  }

  .book-visual {
    min-height: 490px;
  }

  .book-cover {
    width: min(62%, 320px);
  }

  .book-scribble {
    left: 8%;
  }

  .book-sticker {
    right: 8%;
  }

  .notes-section {
    padding: 90px 0 95px;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading h2 {
    margin: 25px 0 27px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .notes-grid {
    width: min(100%, 430px);
    min-height: 1015px;
    margin: 0 auto;
  }

  .note-card {
    left: 8px;
    width: min(350px, calc(100% - 16px));
    height: 290px;
  }

  .note-card:nth-child(1) {
    top: 0;
    left: 8px;
  }

  .note-card:nth-child(2) {
    top: 235px;
    left: 8px;
  }

  .note-card:nth-child(3) {
    top: 470px;
    left: 8px;
  }

  .note-card:nth-child(4) {
    top: 705px;
    left: 8px;
  }

  .notes-grid:hover .note-card:nth-child(1),
  .notes-grid:focus-within .note-card:nth-child(1) {
    top: 0;
    left: 8px;
  }

  .notes-grid:hover,
  .notes-grid:focus-within {
    min-height: 1015px;
  }

  .notes-grid:hover .note-card:nth-child(2),
  .notes-grid:focus-within .note-card:nth-child(2) {
    top: 235px;
    left: 8px;
  }

  .notes-grid:hover .note-card:nth-child(3),
  .notes-grid:focus-within .note-card:nth-child(3) {
    top: 470px;
    left: 8px;
  }

  .notes-grid:hover .note-card:nth-child(4),
  .notes-grid:focus-within .note-card:nth-child(4) {
    top: 705px;
    left: 8px;
  }

  .note-card p {
    max-width: calc(100% - 85px);
  }

  .note-card img {
    right: 25px;
    bottom: 22px;
    width: 100px;
    height: 100px;
  }

  .about-section {
    display: block;
    padding: 55px 0 70px;
  }

  .about-heading {
    margin-bottom: 38px;
  }

  .about-layout {
    display: grid;
    gap: 40px;
  }

  .about-profile {
    grid-column: auto;
    grid-row: auto;
  }

  .about-stamp {
    position: absolute;
    top: 66px;
    right: 5px;
    width: 92px;
    height: 92px;
    font-size: 1.15rem;
  }

  .about-section h2 {
    max-width: 470px;
    padding-right: 35px;
  }

  .about-body {
    align-self: auto;
  }

  .links-section {
    padding: 55px 0 45px;
  }

  .links-heading {
    margin-bottom: 35px;
  }

  .links-heading h2 {
    font-size: clamp(3.8rem, 14vw, 5.2rem);
  }

  .links-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .link-row,
  .link-row:nth-child(1),
  .link-row:nth-child(2),
  .link-row:nth-child(3) {
    --row-angle: 0deg;
    --row-shift: 0px;
    display: grid;
    grid-template-columns: 24px 70px minmax(0, 1fr) 26px;
    min-height: 122px;
    flex-direction: initial;
    align-items: center;
    gap: clamp(10px, 3vw, 18px);
    padding: 14px 0;
  }

  .link-row-icon,
  .link-row:nth-child(2) .link-row-icon,
  .link-row:nth-child(3) .link-row-icon {
    width: 70px;
    height: 70px;
    flex: none;
    margin: 0;
    transform: rotate(-3deg);
  }

  .link-row-copy {
    min-width: 0;
    gap: 4px;
  }

  .link-row-copy strong {
    font-size: clamp(1.9rem, 8vw, 3rem);
    white-space: nowrap;
  }

  .link-row-copy span {
    font-size: 0.78rem;
  }

  .link-row-arrow {
    position: static;
    justify-self: end;
    font-size: 1.9rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 45px 0 70px;
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-footer p:last-child {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 3.5rem);
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2,
  .about-section h2,
  .contact-section h2 {
    font-size: 3rem;
  }

  .links-heading h2 {
    font-size: 3rem;
  }

  .link-row,
  .link-row:nth-child(1),
  .link-row:nth-child(2),
  .link-row:nth-child(3) {
    grid-template-columns: 22px 58px minmax(0, 1fr) 24px;
    min-height: 106px;
    gap: 10px;
  }

  .link-row-icon,
  .link-row:nth-child(2) .link-row-icon,
  .link-row:nth-child(3) .link-row-icon {
    width: 58px;
    height: 58px;
  }

  .link-row-copy strong {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .link-row-arrow {
    font-size: 1.7rem;
  }

  .book-copy h2 {
    font-size: clamp(2.4rem, 10.4vw, 3.2rem);
  }

  .book-description {
    font-size: 1.55rem;
  }

  .book-visual {
    min-height: 420px;
  }

  .book-cover {
    width: 68%;
  }

  .book-scribble {
    top: 7%;
    left: 2%;
  }

  .book-sticker {
    right: 0;
    bottom: 12%;
  }
}

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

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