:root {
  --ink: #11110f;
  --ink-soft: #262522;
  --ivory: #f4efe5;
  --paper: #fbf8f1;
  --lavender: #cdb4db;
  --pink-1: #ffc8dd;
  --pink-2: #ffafcc;
  --blue-1: #bde0fe;
  --blue-2: #a2d2ff;
  --line: rgba(17, 17, 15, 0.22);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
html.is-locked,
body.is-locked {
  overflow: hidden;
  overscroll-behavior: none;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
picture, img { display: block; width: 100%; }
button { color: inherit; }
::selection { background: var(--pink-2); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 15px;
  background: var(--paper);
  border: 1px solid var(--ink);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 3.2vw;
  color: var(--ivory);
  background: var(--ink);
  border-bottom: 1px solid rgba(244, 239, 229, 0.25);
}
.brand {
  justify-self: start;
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
}
.brand > span { display: inline-block; transform: translateY(2px) rotate(-7deg); color: var(--pink-2); }
.brand sup { color: var(--blue-1); font-family: var(--sans); font-size: 0.35em; letter-spacing: 0; vertical-align: top; }
.site-header nav { display: flex; align-items: center; gap: clamp(22px, 3.5vw, 58px); }
.site-header nav a,
.bag-button {
  position: relative;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--pink-1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.77, 0, .18, 1);
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.bag-button {
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0 10px 16px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.bag-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  color: var(--ink);
  background: var(--blue-1);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, .74fr) minmax(520px, 1.26fr);
  min-height: calc(100svh - 78px);
  color: var(--ivory);
  background: var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 5vw 10vh 6vw;
}
.eyebrow {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1,
.section-head h2,
.manifesto h2,
.journal h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(4.3rem, 6.8vw, 8.6rem); }
.hero-title-lockup,
.hero-title-line { display: block; }
.hero-title-line { white-space: nowrap; }
.rotating-word {
  position: relative;
  display: inline-grid;
  margin-left: .05em;
  vertical-align: .02em;
  font-style: italic;
  isolation: isolate;
}
.rotating-word::after {
  content: "canvas";
  grid-area: 1 / 1;
  visibility: hidden;
}
.rotating-word em {
  grid-area: 1 / 1;
  opacity: 0;
  font-weight: 400;
  white-space: nowrap;
  transform-origin: 12% 70%;
  animation: hero-word-rotate 9s cubic-bezier(.65, 0, .22, 1) infinite;
  animation-delay: var(--word-delay);
  will-change: opacity, transform;
}
.rotating-word em:nth-child(1) { color: var(--pink-1); }
.rotating-word em:nth-child(2) { color: var(--blue-1); }
.rotating-word em:nth-child(3) { color: var(--lavender); }
@keyframes hero-word-rotate {
  0% { opacity: 0; transform: translateY(.42em) rotate(calc(var(--tilt) + 3deg)); }
  5%, 28% { opacity: 1; transform: translateY(0) rotate(var(--tilt)); }
  34%, 100% { opacity: 0; transform: translateY(-.36em) rotate(calc(var(--tilt) - 3deg)); }
}
.hero-copy > .text-link { margin-top: clamp(42px, 6vh, 64px); }
.text-link {
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--pink-2);
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.text-link span { display: inline-block; margin-left: 16px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px, 4px); }

.hero-stage {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: linear-gradient(137deg, var(--blue-1) 0 57%, var(--lavender) 57% 71%, var(--pink-1) 71% 100%);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .45;
  background-image: radial-gradient(rgba(17,17,15,.28) .8px, transparent .8px);
  background-size: 8px 8px;
}
.hero-art { position: absolute; margin: 0; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.hero-art--main {
  z-index: 2;
  top: 8%;
  right: 1%;
  width: 82%;
  transform: rotate(2.2deg);
  filter: drop-shadow(20px 24px 22px rgba(17,17,15,.27));
}
.hero-art--main:hover { transform: rotate(.7deg) translateY(-7px); }
.hero-art--main img { height: auto; object-fit: contain; }
.hero-art--float {
  z-index: 3;
  right: -2%;
  bottom: -1%;
  width: 43%;
  transform: rotate(-10deg);
  filter: drop-shadow(0 26px 24px rgba(17,17,15,.35));
}
.hero-art--float:hover { transform: rotate(-7deg) translate(-6px,-8px); }
.hero-art--float img { height: auto; object-fit: contain; }
.hero-art figcaption {
  position: absolute;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-art--main figcaption { top: 3%; left: 2%; transform: rotate(-4.6deg); }
.hero-art--float figcaption { right: 0; top: 17%; transform: rotate(10deg); }
.scribble {
  position: absolute;
  z-index: 4;
  bottom: 3%;
  left: 3%;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  transform: rotate(-10deg);
}

.collection { padding: 130px 3.2vw 150px; }
.section-head { display: grid; grid-template-columns: 1fr 34%; gap: 50px; align-items: end; margin-bottom: 65px; }
.section-head h2, .journal h2 { font-size: clamp(4rem, 8vw, 8.5rem); }
.collection-intro { max-width: 430px; margin: 0 0 4px; font-size: 1.05rem; }
.filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.filter span { opacity: .55; }
.filter:hover { transform: translateY(-2px); }
.filter.is-active { color: var(--ivory); background: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 46px 1.5vw; }
.product-card { min-width: 0; opacity: 1; transform: translateY(0); transition: opacity .35s ease, transform .35s ease; content-visibility: auto; contain-intrinsic-size: auto 480px; }
.product-card.is-hiding { opacity: 0; transform: translateY(24px) scale(.98); }
.product-card[hidden] { display: none; }
.product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: var(--pink-1);
  border: 0;
  text-align: left;
  cursor: pointer;
}
.product-card[data-category="canvas"] .product-image-wrap { background: var(--pink-1); }
.product-card[data-category="silk"] .product-image-wrap { background: var(--blue-1); }
.product-card[data-category="paper"] .product-image-wrap { background: var(--lavender); }
.product-image-wrap::after {
  content: "Quick view ↗";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: translateY(150%);
  transition: transform .3s cubic-bezier(.22,.8,.2,1);
}
.product-image-wrap:hover::after,
.product-image-wrap:focus-visible::after { transform: translateY(0); }
.product-image-wrap picture { height: 100%; }
.product-image-wrap img {
  height: 100%;
  object-fit: contain;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.product-image-wrap:hover img { transform: scale(.98); filter: saturate(1.06); }
.product-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.product-meta { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; padding-top: 17px; }
.product-kicker { margin: 0 0 7px; color: rgba(17,17,15,.6); font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; }
.product-title { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.2vw, 2.25rem); font-weight: 400; line-height: 1; }
.product-price { margin: 3px 0 0; font-family: var(--mono); font-size: .79rem; white-space: nowrap; }
.price-primary, .price-approx { display: block; }
.price-approx { margin-top: 3px; color: rgba(17,17,15,.55); font-size: .72em; font-weight: 400; }
.add-button {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.add-button:hover { border-bottom-color: var(--pink-2); }

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  color: var(--ivory);
  background: var(--ink);
}
.manifesto-mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
  background: var(--pink-1);
}
.manifesto-mark span {
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(8rem, 16vw, 18rem);
  line-height: .7;
  transition: background .25s ease, transform .35s ease;
}
.manifesto-mark span:nth-child(2) { background: var(--blue-1); transform: rotate(3deg) scale(1.06); }
.manifesto-mark span:nth-child(3) { background: var(--lavender); transform: rotate(-2deg) scale(1.04); }
.manifesto-mark span:nth-child(4) { background: var(--pink-2); }
.manifesto-mark span:hover { background: var(--ivory); transform: rotate(0) scale(.94); }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: 8vw; }
.manifesto h2 { max-width: 700px; font-size: clamp(4rem, 6vw, 7rem); }
.manifesto-copy > p:not(.eyebrow) { max-width: 570px; margin: 46px 0; color: rgba(244,239,229,.7); font-size: 1.08rem; }
.studio-facts { margin: 0; border-top: 1px solid rgba(244,239,229,.28); }
.studio-facts div { display: grid; grid-template-columns: 1fr auto; padding: 17px 0; border-bottom: 1px solid rgba(244,239,229,.28); }
.studio-facts dt { font-family: var(--serif); font-size: 1.45rem; }
.studio-facts dd { margin: 0; color: rgba(244,239,229,.6); font-family: var(--mono); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }

.journal { padding: 140px 3.2vw; }
.journal > h2 { margin-bottom: 70px; }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.notes-grid article { position: relative; min-height: 330px; padding: 26px 32px 28px 0; border-right: 1px solid var(--ink); }
.notes-grid article + article { padding-left: 32px; }
.notes-grid article:last-child { border-right: 0; }
.notes-grid article > span { font-family: var(--mono); font-size: .72rem; }
.notes-grid h3 { max-width: 330px; margin: 70px 0 16px; font-family: var(--serif); font-size: 2.1rem; font-weight: 400; line-height: 1; }
.notes-grid p { max-width: 320px; margin: 0; color: rgba(17,17,15,.65); font-size: .94rem; }
.notes-grid a { position: absolute; bottom: 28px; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.notes-grid a span { display: inline-block; transition: transform .2s ease; }
.notes-grid a:hover span { transform: translate(3px,-3px); }

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: end;
  padding: 110px 6vw;
  background: var(--blue-2);
}
.newsletter h2 { max-width: 720px; font-size: clamp(3.5rem, 6vw, 7rem); }
.newsletter form { position: relative; display: flex; border-bottom: 2px solid var(--ink); }
.newsletter input { flex: 1; min-width: 0; padding: 18px 4px; background: transparent; border: 0; outline: 0; font-size: 1rem; }
.newsletter input::placeholder { color: rgba(17,17,15,.58); }
.newsletter button { padding: 18px 4px 18px 20px; background: transparent; border: 0; cursor: pointer; font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; }
.form-status { position: absolute; top: calc(100% + 12px); left: 0; margin: 0; font-family: var(--mono); font-size: .72rem; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 80px 3.2vw 36px;
  color: var(--ivory);
  background: var(--ink);
}
.brand--footer { color: var(--ivory); font-size: clamp(4rem, 9vw, 10rem); }
footer > p { margin: 12px 0 0; color: rgba(244,239,229,.65); }
footer > div { display: grid; gap: 10px; margin-top: 12px; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; }
footer > div a:hover { color: var(--pink-1); }
footer .copyright { grid-column: 1 / -1; margin-top: 75px; padding-top: 18px; border-top: 1px solid rgba(244,239,229,.2); font-family: var(--mono); font-size: .68rem; text-transform: uppercase; }

.drawer-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(17,17,15,.62); backdrop-filter: blur(4px); }
.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(500px, 100%);
  padding: 28px;
  background: var(--paper);
  transform: translateX(102%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--ink); }
.drawer-head h2 { margin: 0; font-family: var(--serif); font-size: 2.5rem; font-weight: 400; }
.drawer-head .bag-count { vertical-align: middle; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; background: transparent; border: 1px solid var(--ink); border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1; transition: transform .2s ease, background .2s ease; }
.icon-button:hover { background: var(--pink-1); transform: rotate(8deg); }
.empty-cart { margin: auto; text-align: center; }
.empty-cart p { margin: 0; font-family: var(--serif); font-size: 2.5rem; }
.empty-cart span { color: rgba(17,17,15,.6); font-size: .9rem; }
.cart-items { display: grid; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item picture, .cart-item img { width: 90px; height: 105px; object-fit: cover; }
.cart-item h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1; }
.cart-item p { margin: 0; color: rgba(17,17,15,.6); font-family: var(--mono); font-size: .68rem; text-transform: uppercase; }
.remove-item { padding: 4px; background: none; border: 0; border-bottom: 1px solid var(--ink); cursor: pointer; font-family: var(--mono); font-size: .66rem; text-transform: uppercase; }
.cart-summary { margin-top: auto; padding-top: 30px; }
.cart-summary > div { display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-top: 8px; font-family: var(--serif); font-size: 1.15rem; }
.cart-summary > div:first-child { margin-top: 0; }
.cart-summary > div strong { text-align: right; }
.cart-summary > .cart-grand-total { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--ink); font-size: 1.65rem; }
.cart-summary p { margin: 8px 0 24px; color: rgba(17,17,15,.55); font-size: .78rem; }
.checkout-button { width: 100%; padding: 17px; color: var(--ivory); background: var(--ink); border: 1px solid var(--ink); cursor: pointer; font-family: var(--mono); font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.checkout-button:hover { color: var(--ink); background: var(--pink-1); }
.checkout-button:disabled { cursor: wait; opacity: .72; }

.product-dialog {
  width: min(1060px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 100px rgba(0,0,0,.4);
}
.product-dialog::backdrop { background: rgba(17,17,15,.75); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; z-index: 3; top: 18px; right: 18px; background: var(--paper); }
.dialog-content { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 620px; }
.dialog-content > picture { height: 100%; min-height: 0; overflow: hidden; background: var(--blue-1); }
.dialog-content > picture img { height: 100%; max-height: calc(100svh - 40px); object-fit: contain; }
.dialog-copy { display: flex; flex-direction: column; padding: clamp(40px, 6vw, 80px); }
.dialog-copy .eyebrow { margin-bottom: auto; }
.dialog-copy h2 { margin: 30px 0 16px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.3rem); font-weight: 400; line-height: .88; letter-spacing: -.04em; }
.dialog-description { color: rgba(17,17,15,.65); }
.dialog-spec { display: grid; grid-template-columns: 1fr auto; margin: 25px 0 30px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .72rem; text-transform: uppercase; }
.dialog-price { margin: 0 0 25px; font-family: var(--serif); font-size: 2rem; }
.dialog-price .price-approx { font-family: var(--mono); font-size: .36em; }
.dialog-add { width: 100%; padding: 16px; color: var(--ivory); background: var(--ink); border: 1px solid var(--ink); cursor: pointer; font-family: var(--mono); font-size: .75rem; text-transform: uppercase; }

.toast { position: fixed; z-index: 200; right: 24px; bottom: 24px; max-width: 320px; padding: 13px 18px; color: var(--ink); background: var(--pink-1); border: 1px solid var(--ink); font-family: var(--mono); font-size: .72rem; text-transform: uppercase; transform: translateY(150%); transition: transform .3s ease; }
.toast.is-visible { transform: translateY(0); }
.cursor-echo { position: fixed; z-index: 300; top: 0; left: 0; width: 16px; height: 16px; pointer-events: none; border: 1px solid var(--pink-2); border-radius: 50%; transform: translate(-50%,-50%); opacity: 0; transition: width .18s ease, height .18s ease, opacity .2s ease, background .18s ease; mix-blend-mode: difference; will-change: transform; }
.cursor-echo.is-visible { opacity: 1; }
.cursor-echo.is-hovering { width: 38px; height: 38px; background: var(--pink-2); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: .85fr 1.15fr; }
  .hero h1 { font-size: clamp(4.1rem, 7.4vw, 6.7rem); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .manifesto { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 780px) {
  .site-header { position: sticky; top: 0; grid-template-columns: 1fr auto; min-height: 66px; padding: 0 20px; }
  .site-header nav { display: none; }
  .hero { display: flex; min-height: auto; flex-direction: column; }
  .hero-copy { padding: 85px 24px 65px; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6.8rem); }
  .hero-copy > .text-link { margin-top: 42px; }
  .hero-stage { min-height: 570px; }
  .hero-art--main { top: 10%; right: -4%; width: 101%; }
  .hero-art--float { right: -6%; bottom: 1%; width: 57%; }
  .scribble { bottom: 4%; left: 4%; }
  .collection { padding: 95px 20px 115px; }
  .section-head { display: block; margin-bottom: 44px; }
  .section-head h2, .journal h2 { font-size: clamp(4.2rem, 19vw, 7rem); }
  .collection-intro { margin-top: 28px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 14px; }
  .product-card { transform: none; }
  .product-meta { display: block; padding-top: 13px; }
  .product-price { margin-top: 9px; }
  .add-button { margin-top: 12px; }
  .manifesto { display: flex; min-height: auto; flex-direction: column; }
  .manifesto-mark { min-height: 430px; order: 2; }
  .manifesto-mark span { font-size: 8.4rem; }
  .manifesto-copy { padding: 95px 24px 75px; }
  .manifesto h2 { font-size: clamp(4rem, 17vw, 6rem); }
  .journal { padding: 100px 20px; }
  .notes-grid { display: block; }
  .notes-grid article, .notes-grid article + article { min-height: 290px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .notes-grid article:last-child { border-bottom: 0; }
  .notes-grid h3 { margin-top: 50px; }
  .notes-grid a { bottom: 24px; }
  .newsletter { display: block; padding: 90px 24px 100px; }
  .newsletter form { margin-top: 50px; }
  footer { grid-template-columns: 1fr; padding: 70px 24px 28px; }
  footer .copyright { grid-column: auto; margin-top: 40px; }
  .product-dialog { inset: 0; width: 100%; max-width: none; height: 100svh; height: 100dvh; max-height: none; margin: 0; }
  .dialog-close { position: fixed; top: 16px; right: 16px; }
  .dialog-content { display: block; min-height: 100%; }
  .dialog-content > picture { height: 48svh; }
  .dialog-content > picture img { max-height: 48svh; }
  .dialog-copy { padding: 35px 25px 40px; }
  .dialog-copy .eyebrow { margin-bottom: 25px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-echo { display: none; }
  .product-image-wrap::after { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rotating-word em { opacity: 0; transform: none; animation: none !important; }
  .rotating-word em:first-child { opacity: 1; transform: rotate(-2deg); }
  .cursor-echo { display: none; }
}
