:root {
  --ink: #11100f;
  --paper: #e8e3da;
  --acid: #f0542d;
  --gold: #cdaa55;
  --line: rgba(232, 227, 218, 0.26);
  --pad: clamp(18px, 2.1vw, 36px);
  --display: "Geologica", "Helvetica Neue", Arial, sans-serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  cursor: default;
}

body.no-scroll {
  overflow: hidden;
}

button,
a,
input {
  font: inherit;
}

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

button {
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

input {
  cursor: text;
}

img {
  display: block;
  width: 100%;
}

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.ui-arrow {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  font-size: 1rem;
  font-style: normal;
  vertical-align: -0.1em;
}

.ui-arrow::before {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 78%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: center;
}

.ui-arrow::after {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 42%;
  height: 42%;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

#paint-canvas {
  position: fixed;
  inset: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
}

body.has-modal #paint-canvas {
  z-index: 96;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11100f;
  color: var(--paper);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
  clip-path: inset(0 0 0 0);
}

.loader.is-done {
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.loader p {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 3.2rem);
  letter-spacing: -0.035em;
}

.loader em {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0;
}

.loader__line {
  position: absolute;
  right: 0;
  bottom: 10vh;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.loader__line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  animation: load 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes load {
  to {
    width: 100%;
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.2rem;
  align-items: start;
  padding: 18px var(--pad);
  color: #f3eee7;
  mix-blend-mode: difference;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.15;
}

.brand {
  width: fit-content;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.brand span {
  display: block;
}

.site-header__edition {
  opacity: 0.68;
}

.site-header__nav {
  display: flex;
  gap: clamp(16px, 2vw, 38px);
  justify-self: end;
}

.site-header__nav a {
  position: relative;
}

.site-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.menu-button {
  display: none;
  width: 32px;
  height: 26px;
  padding: 5px 0;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.35s, margin 0.35s;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #11100f;
  isolation: isolate;
}

.hero__wash {
  display: none;
}

.hero__art {
  position: absolute;
  inset: -4vh -2vw;
  z-index: 0;
  width: auto;
  aspect-ratio: auto;
  transform: translate3d(0, calc(var(--hero-progress, 0) * -5vh), 0)
    scale(calc(1.04 + var(--hero-progress, 0) * 0.08));
  transform-origin: center;
  will-change: transform;
}

.hero__art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 17, 0.16) 0%,
    rgba(5, 7, 17, 0.22) 45%,
    rgba(5, 7, 17, 0.7) 100%
  );
  content: "";
}

.hero__art img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero__title {
  position: absolute;
  inset: auto var(--pad) 12vh;
  z-index: 2;
  font-family: var(--display);
  width: calc(100vw - var(--pad) * 2);
  font-size: clamp(8rem, 19vw, 22rem);
  font-weight: 600;
  line-height: 0.64;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.hero__line {
  display: block;
  white-space: nowrap;
  text-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  will-change: transform;
}

.hero__line--one {
  transform: translate3d(calc(var(--hero-progress, 0) * -12vw), 0, 0);
}

.hero__line--two {
  color: var(--paper);
  text-align: right;
  transform: translate3d(calc(var(--hero-progress, 0) * 10vw), 0, 0);
}

.hero__note {
  position: absolute;
  bottom: 22px;
  left: var(--pad);
  z-index: 15;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 20px;
  z-index: 15;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.84rem;
}

.hero__scroll svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  transition: transform 0.4s;
}

.hero__scroll:hover svg {
  transform: rotate(-45deg);
}

.eyebrow {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.statement {
  min-height: 130vh;
  padding: 18vh var(--pad) 12vh;
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink);
}

.statement__copy {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 3vw;
  margin-top: 18vh;
}

.statement__small {
  padding-top: 1.2vw;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.55;
}

.kinetic-title {
  font-family: var(--display);
  font-size: clamp(4.2rem, 13.6vw, 15.5rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.kinetic-title span {
  display: block;
  overflow: hidden;
  transform: translateX(var(--offset, 0));
  transition: transform 0.1s linear;
}

.kinetic-title span:nth-child(2) {
  color: var(--gold);
  text-align: right;
}

.kinetic-title span:nth-child(3) {
  padding-right: 5vw;
  text-align: center;
}

.statement__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16vw;
  max-width: 900px;
  margin: 16vh 0 0 auto;
  font-size: clamp(1.05rem, 1.22vw, 1.34rem);
  line-height: 1.5;
}

.works {
  background: var(--ink);
}

.work {
  position: relative;
  height: 185vh;
  color: #f1ece5;
  background: var(--work-bg);
}

.work--light,
.work--blush {
  color: #f1ece5;
}

.work__number {
  position: absolute;
  top: 24px;
  left: var(--pad);
  z-index: 15;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 12rem);
  letter-spacing: -0.08em;
  opacity: 0.32;
}

.work__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.work__word {
  position: absolute;
  top: 50%;
  left: -2vw;
  z-index: 0;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(9rem, 28vw, 31rem);
  font-weight: 600;
  line-height: 0.65;
  letter-spacing: -0.12em;
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
  opacity: calc(0.07 + var(--word, 0) * 0.11);
  transform: translate3d(calc(-12% + var(--word, 0) * 12%), -50%, 0);
  will-change: transform;
}

.work__word--right {
  right: -2vw;
  left: auto;
  transform: translate3d(calc(12% - var(--word, 0) * 12%), -50%, 0);
}

.work__image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(320px, 36vw, 620px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  clip-path: none;
  transform: translate3d(-50%, -50%, 0)
    scale(calc(0.82 + var(--reveal, 0) * 0.18));
  will-change: transform;
}

.work__open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 13px 16px;
  color: #11100f;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}

.work__image:hover .work__open,
.work__image:focus-visible .work__open {
  opacity: 1;
  transform: translateY(0);
}

.work__image img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, calc((1 - var(--settle, 0)) * 3%), 0)
    scale(calc(1.18 - var(--settle, 0) * 0.18));
  will-change: transform;
}

.work--round .work__image {
  width: clamp(390px, 47vw, 730px);
  aspect-ratio: 1;
}

.work__meta {
  --divider-half: calc(clamp(178px, 20vw, 330px) + 18px);
  --meta-gap: 2vw;
  position: absolute;
  right: var(--pad);
  bottom: 22px;
  left: var(--pad);
  z-index: 15;
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, calc((50% - var(--divider-half) - var(--meta-gap)) / 2)))
    minmax(0, 1fr)
    auto;
  gap: var(--meta-gap);
  align-items: end;
  padding-top: 14px;
  opacity: var(--copy, 0);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(calc((1 - var(--copy, 0)) * 10px));
  will-change: opacity, transform;
}

.work__meta::before,
.work__meta::after {
  position: absolute;
  top: 0;
  width: calc(50% - var(--divider-half));
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.72;
  transform: scaleX(var(--copy, 0));
  transition: transform 0.08s linear;
}

.work__meta::before {
  left: 0;
  transform-origin: left center;
}

.work__meta::after {
  right: 0;
  transform-origin: right center;
}

.work--round .work__meta {
  --divider-half: calc(clamp(213px, 25.5vw, 383px));
}

.work__meta p {
  margin-bottom: 5px;
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
}

.work__meta span {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
}

.buy-link {
  grid-column: 4;
  display: flex;
  min-width: 230px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 17px;
  color: #11100f;
  background: var(--gold);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
}

.buy-link i {
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 0.35s;
}

.buy-link:hover i {
  transform: translate(5px, -5px);
}

.material {
  position: relative;
  padding: 11vh var(--pad) 13vh;
  overflow: clip;
  color: #ede6dd;
  background: var(--ink);
  isolation: isolate;
}

.material__visuals {
  position: relative;
  grid-column: 1 / 9;
  width: 100%;
  height: clamp(650px, 53vw, 810px);
}

.material__process {
  position: absolute;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  background: #171614;
}

.material__process--drawing {
  top: 0;
  left: 0;
  width: 82%;
  aspect-ratio: 4 / 3;
  opacity: calc(0.12 + var(--material-drawing, 0) * 0.88);
  clip-path: inset(0 calc((1 - var(--material-drawing, 0)) * 100%) 0 0);
  transform: translate3d(
    calc(var(--material-scene, 0) * -2vw),
    calc((1 - var(--material-drawing, 0)) * 42px - var(--material-scene, 0) * 18px),
    0
  );
  will-change: clip-path, opacity, transform;
}

.material__process--texture {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 36%;
  aspect-ratio: 4 / 5;
  border: 10px solid var(--ink);
  opacity: var(--material-texture, 0);
  clip-path: inset(calc((1 - var(--material-texture, 0)) * 100%) 0 0 0);
  transform: translate3d(
      calc(var(--material-scene, 0) * 1.2vw),
      calc((1 - var(--material-texture, 0)) * 82px - var(--material-scene, 0) * 22px),
      0
    )
    scale(calc(0.96 + var(--material-texture, 0) * 0.04));
  transform-origin: bottom right;
  will-change: clip-path, opacity, transform;
}

.material__process img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(calc(1.06 - var(--material-scene, 0) * 0.06));
  transform-origin: center;
  will-change: transform;
}

.material__process--texture img {
  object-position: 50% center;
}

.material__process figcaption {
  position: absolute;
  right: 12px;
  bottom: 11px;
  display: flex;
  gap: 12px;
  padding: 8px 10px;
  color: #eee7de;
  background: rgba(17, 16, 15, 0.84);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.material__process figcaption span {
  color: var(--gold);
}

.material__process--drawing figcaption {
  right: auto;
  left: 12px;
}

.material__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.material__index {
  width: 270px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.material__title {
  position: relative;
  z-index: 2;
  margin: 8vh -1vw 0;
  font-family: var(--display);
  max-width: 100%;
  font-size: clamp(5rem, 10.2vw, 11.5rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.material__title span {
  display: block;
}

.material__title span:nth-child(2) {
  transition-delay: 0.08s;
}

.material__title .reveal-word--gold {
  color: #cda84e;
  transition-delay: 0.16s;
}

.material__title .material__title-line {
  display: flex;
  gap: 0.16em;
  align-items: baseline;
}

.material__title-line b {
  font: inherit;
}

.material__gallery {
  position: relative;
  z-index: 2;
  height: 175vh;
  margin-top: 9vh;
}

.material__scene {
  position: sticky;
  top: 8vh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 3vw;
  align-items: center;
  min-height: 84vh;
}

.material__copy {
  grid-column: 9 / 13;
  width: 100%;
  padding-bottom: 0.25rem;
  opacity: var(--material-copy, 0);
  transform: translate3d(0, calc((1 - var(--material-copy, 0)) * 46px), 0);
  will-change: opacity, transform;
}

.material__copy p {
  font-size: clamp(1.08rem, 1.55vw, 1.62rem);
  line-height: 1.38;
  letter-spacing: 0;
}

.material__copy p + p {
  margin-top: 1.25em;
  color: rgba(237, 230, 221, 0.72);
}

.material__copy span {
  display: block;
  margin-top: 32px;
  font-size: 0.86rem;
  line-height: 1.5;
  opacity: 0.72;
}

.catalog {
  padding: 16vh var(--pad) 20vh;
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink);
}

.catalog__head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4vw;
  align-items: start;
}

.catalog__head > .eyebrow {
  grid-column: 1 / 3;
}

.catalog__head h2 {
  grid-column: 3 / 13;
  font-family: var(--display);
  font-size: clamp(5.6rem, 11.5vw, 13rem);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.09em;
}

.catalog__head h2 i {
  color: var(--gold);
  font-style: normal;
  -webkit-text-stroke: 0;
}

.catalog__intro {
  grid-column: 10 / 13;
  padding-top: 1rem;
  font-size: 1.04rem;
  line-height: 1.55;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12vh 2vw;
  margin-top: 18vh;
}

.card {
  min-width: 0;
}

.card--lower {
  padding-top: 0;
}

.card--wide {
  grid-column: span 6;
  padding: 0 7vw;
}

.card--round .card__image {
  aspect-ratio: 2 / 3;
}

.card--round .card__image img {
  padding: 9%;
  object-fit: contain;
}

.card--photo .card__image {
  aspect-ratio: 3 / 4;
  background: #11100f;
}

.card--photo.card--round .card__image {
  aspect-ratio: 3 / 4;
}

.card--photo.card--round .card__image img,
.card--photo .card__image img {
  padding: 0;
  object-fit: contain;
}

.card__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #201f1c;
}

.card__image::after {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.08);
  content: "";
  opacity: 0;
  transition: opacity 0.35s;
}

.card__image img {
  height: 100%;
  object-fit: cover;
  scale: 1;
  transform: translate3d(0, var(--card-shift, 0%), 0)
    scale(var(--card-scale, 1));
  transition: scale 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.card__image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: block;
  padding: 14px 17px;
  color: #11100f;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.94;
  transform: translateY(0);
  transition: color 0.35s, background 0.35s, transform 0.35s;
}

.card__image:hover img {
  scale: 1.035;
}

.card__image:hover::after,
.card__image:hover span {
  opacity: 1;
}

.card__image:hover span {
  color: var(--paper);
  background: #11100f;
  transform: translateY(-4px);
}

.card__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(232, 227, 218, 0.28);
  margin-top: 15px;
  font-size: 0.9rem;
}

.card__meta h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.55vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.card__details {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(232, 227, 218, 0.28);
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
}

.card__details i {
  font-size: 1.25rem;
  font-style: normal;
  transition: transform 0.3s;
}

.card__details:hover i {
  transform: translate(4px, -4px);
}

.archive {
  padding: 15vh var(--pad) 18vh;
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink);
}

.archive__head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 3vw;
  align-items: start;
}

.archive__head > .eyebrow {
  grid-column: 1 / 3;
}

.archive__head h2 {
  grid-column: 3 / 12;
  font-family: var(--display);
  font-size: clamp(5.8rem, 12.6vw, 14rem);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.09em;
}

.archive__head h2 i {
  color: var(--gold);
  font-style: normal;
}

.archive__intro {
  grid-column: 10 / 13;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.55;
}

.archive__list {
  margin-top: 14vh;
  border-top: 1px solid rgba(237, 230, 221, 0.38);
}

.archive__row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 180px 76px 116px;
  gap: 1.5vw;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 0 2px;
  border-bottom: 1px solid rgba(237, 230, 221, 0.38);
  color: inherit;
  text-align: left;
  transition: padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s, background 0.35s;
}

.archive__row strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.15vw, 3.9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.archive__number,
.archive__size,
.archive__year,
.archive__open {
  font-size: 0.78rem;
  line-height: 1.35;
}

.archive__number {
  color: var(--gold);
}

.archive__size,
.archive__year {
  opacity: 0.72;
}

.archive__open {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-self: end;
  font-weight: 600;
}

.archive__row:hover,
.archive__row:focus-visible {
  padding-right: 20px;
  padding-left: 20px;
  color: #11100f;
  background: var(--gold);
}

.archive__row:hover .archive__number,
.archive__row:focus-visible .archive__number {
  color: #11100f;
}

.artist {
  position: relative;
  min-height: 120vh;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #11100f;
}

.artist__visual {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.42;
}

.artist__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #11100f 0%, transparent 45%);
  content: "";
}

.artist__visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.artist__content {
  position: relative;
  z-index: 2;
  padding: 15vh var(--pad);
}

.artist__name {
  margin-top: 20vh;
  font-family: var(--display);
  font-size: clamp(6rem, 17vw, 19rem);
  font-weight: 600;
  line-height: 0.68;
  letter-spacing: -0.09em;
}

.artist__name span {
  display: block;
}

.artist__name span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px #e8e3da;
}

.artist__text {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5vw;
  max-width: 740px;
  margin-top: 10vh;
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact {
  position: relative;
  min-height: 95vh;
  padding: 13vh var(--pad) 28px;
  border-top: 1px solid var(--line);
  color: var(--paper);
  background: var(--ink);
}

.contact__link {
  display: block;
  margin-top: 10vh;
  font-family: var(--display);
  font-size: clamp(5rem, 13.8vw, 15.5rem);
  font-weight: 600;
  line-height: 0.68;
  letter-spacing: -0.09em;
}

.contact__link span {
  display: block;
}

.contact__link span:nth-child(2) {
  text-align: center;
}

.contact__link span:last-child {
  color: var(--gold);
  text-align: right;
}

.contact__link .ui-arrow {
  font-size: 0.3em;
  vertical-align: 0.08em;
}

.contact__intro {
  width: min(360px, 28vw);
  margin: -1rem 0 0 auto;
  font-size: 1.04rem;
  line-height: 1.6;
}

.contact__foot {
  position: absolute;
  right: var(--pad);
  bottom: 25px;
  left: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding-top: 13px;
  border-top: 1px solid currentColor;
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-word {
  clip-path: inset(0 100% 0 0);
  transform: translateX(-4vw);
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1),
    transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.reveal-word.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

.reveal-image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.25s cubic-bezier(0.76, 0, 0.24, 1);
}

.reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal-card {
  opacity: 1;
  transform: none;
}

.reveal-card .card__image {
  clip-path: none;
  transform: none;
  transition: none;
}

.reveal-card .card__meta {
  opacity: 1;
  transform: none;
  transition: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  padding: 18vh var(--pad) 30px;
  color: var(--paper);
  background: #10100f;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-overlay.is-open {
  clip-path: inset(0 0 0 0);
}

.menu-overlay nav a,
.menu-overlay nav button {
  display: block;
  width: 100%;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: clamp(2.5rem, 11vw, 6rem);
  letter-spacing: -0.04em;
  text-align: left;
}

.menu-overlay nav span {
  margin-right: 14px;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0;
  vertical-align: top;
}

.menu-overlay > p {
  position: absolute;
  bottom: 25px;
  font-size: 0.62rem;
}

.product-detail {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  grid-template-columns: 49% 1fr;
  color: #f4efe7;
  background: #141311;
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.8s;
}

.product-detail.is-open {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s;
}

.product-detail__close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 3;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 0.7;
}

.product-detail__visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #090909;
  cursor: zoom-in;
  text-align: left;
}

.product-detail__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.28));
  content: "";
}

.product-detail__visual img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.product-detail.is-open .product-detail__visual img {
  transform: scale(1);
}

.product-detail.is-zoomed .product-detail__visual {
  cursor: zoom-out;
}

.product-detail.is-zoomed .product-detail__visual img {
  transform: scale(2);
}

.product-detail.is-round .product-detail__visual {
  background: #0d0e10;
}

.product-detail.is-round .product-detail__visual img,
.checkout.is-round .checkout__art img {
  padding: clamp(20px, 4vw, 70px);
  object-fit: contain;
}

.product-detail.is-photo .product-detail__visual img,
.checkout.is-photo .checkout__art img {
  padding: 0;
  background: #11100f;
  object-fit: contain;
}

.product-detail__count {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  color: white;
  font-size: 0.76rem;
}

.product-detail__zoom {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 14px;
  color: #11100f;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
}

.product-detail.is-zoomed .product-detail__zoom {
  color: var(--paper);
  background: #11100f;
}

.product-detail__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 6vw 5vh;
}

.product-detail__content h2 {
  margin: 5vh 0 4vh;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.4vw, 8.5rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.055em;
}

.product-detail__text {
  max-width: 490px;
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  line-height: 1.46;
  letter-spacing: 0;
}

.product-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 7vh 0 0;
}

.product-detail__specs div {
  padding: 13px 10px 13px 0;
  border-top: 1px solid rgba(232, 227, 218, 0.24);
}

.product-detail__specs dt {
  margin-bottom: 8px;
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.74rem;
  font-weight: 600;
}

.product-detail__specs dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-detail__buy {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  align-items: end;
  margin-top: auto;
}

.product-detail__buy span {
  display: block;
  margin-bottom: 7px;
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.74rem;
}

.product-detail__buy strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.product-detail__add {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px 20px;
  color: #11100f;
  background: var(--gold);
  font-size: 0.98rem;
  font-weight: 600;
}

.checkout__close {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 0.7;
}

.checkout {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 44% 1fr;
  color: #f4efe7;
  background: #11100f;
  visibility: hidden;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.8s;
}

.checkout.is-open {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s;
}

.checkout__close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
}

.checkout__art {
  position: relative;
  overflow: hidden;
}

.checkout__art::after {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 10, 0.08);
  content: "";
}

.checkout__art img {
  height: 100%;
  object-fit: cover;
}

.checkout__art span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: white;
  font-size: 0.82rem;
}

.checkout__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.checkout__content h2 {
  margin: 5vh 0 3vh;
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.checkout__selection {
  margin-bottom: 5vh;
  font-size: 1.06rem;
  line-height: 1.5;
}

.checkout__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
}

.checkout__form label {
  border-bottom: 1px solid;
}

.checkout__form label:nth-child(3),
.checkout__form button {
  grid-column: 1 / -1;
}

.checkout__form span {
  display: block;
  color: rgba(244, 239, 231, 0.74);
  font-size: 0.82rem;
  font-weight: 600;
}

.checkout__form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 0;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  font-size: clamp(1.25rem, 1.55vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.checkout__form input::placeholder {
  color: rgba(244, 239, 231, 0.66);
}

.checkout__form button {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  min-height: 60px;
  padding: 18px 20px;
  color: #11100f;
  background: var(--gold);
  font-size: 0.96rem;
  font-weight: 600;
}

.checkout__success {
  display: none;
  max-width: 470px;
}

.checkout__success span {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.checkout__success p {
  margin: 30px 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.checkout__success strong {
  font-size: 0.82rem;
}

.checkout.is-success .checkout__form,
.checkout.is-success .checkout__selection,
.checkout.is-success h2 {
  display: none;
}

.checkout.is-success .checkout__success {
  display: block;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header__edition,
  .site-header__nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-overlay {
    display: block;
  }

  .hero__title {
    top: 25vh;
    font-size: 16.2vw;
  }

  .statement__copy {
    grid-template-columns: 1fr;
  }

  .statement__small {
    margin-bottom: 7vh;
  }

  .work {
    height: 145vh;
  }

  .work__image {
    width: min(54vw, 460px);
  }

  .work__meta {
    --divider-half: calc(27vw + 18px);
    grid-template-columns: 1fr 1fr;
  }

  .work--round .work__meta {
    --divider-half: calc(min(43vw, 230px) + 18px);
  }

  .material__process {
    height: auto;
  }

  .material__visuals {
    grid-column: 1;
    height: clamp(590px, 82vw, 660px);
  }

  .material__gallery {
    height: 185svh;
  }

  .material__scene {
    top: 7vh;
    grid-template-columns: 1fr;
    gap: 4vh;
    align-content: center;
    min-height: 86svh;
  }

  .material__copy {
    grid-column: 1;
    max-width: 680px;
  }

  .buy-link {
    grid-column: 1 / -1;
  }

  .catalog__head {
    grid-template-columns: repeat(8, 1fr);
  }

  .catalog__head > .eyebrow {
    grid-column: 1 / 3;
  }

  .catalog__head h2 {
    grid-column: 2 / 9;
  }

  .catalog__intro {
    grid-column: 6 / 9;
  }

  .archive__head {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .archive__head > .eyebrow {
    grid-column: 1 / 3;
  }

  .archive__head h2 {
    grid-column: 2 / 9;
  }

  .archive__intro {
    grid-column: 6 / 9;
  }

  .archive__row {
    grid-template-columns: 42px minmax(0, 1fr) 132px 62px 90px;
  }

  .card {
    grid-column: span 6;
  }

  .card--wide {
    padding: 0;
  }

  .checkout {
    grid-template-columns: 38% 1fr;
  }

  .checkout__content {
    padding: 6vw 4vw;
  }

  .product-detail {
    grid-template-columns: 44% 1fr;
  }

  .product-detail__content {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 16px;
  }

  #paint-canvas {
    display: none;
  }

  .site-header {
    padding-top: 14px;
  }

  .hero__art {
    inset: 0 0 auto;
    width: 100%;
    height: 100svh;
    transform: translate3d(0, calc(var(--hero-progress, 0) * -4vh), 0)
      scale(calc(1 + var(--hero-progress, 0) * 0.05));
    transform-origin: center;
  }

  .hero__art span {
    right: 16px;
    bottom: 16px;
  }

  .hero__title {
    top: auto;
    bottom: 15vh;
    font-size: 23.5vw;
    line-height: 0.64;
  }

  .hero__note {
    bottom: 18px;
  }

  .hero__scroll span {
    display: none;
  }

  .statement {
    min-height: 110vh;
    padding-top: 13vh;
  }

  .statement__copy {
    margin-top: 12vh;
  }

  .kinetic-title {
    font-size: 18vw;
  }

  .kinetic-title span:first-child {
    font-size: 0.8em;
  }

  .kinetic-title span:nth-child(2) {
    padding-right: 3vw;
    font-size: 0.9em;
  }

  .statement__foot {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 12vh;
  }

  .work {
    height: 130vh;
  }

  .work__number {
    font-size: 18vw;
  }

  .work__word {
    font-size: 43vw;
  }

  .work__image {
    top: 47%;
    width: 72vw;
  }

  .work--round .work__image {
    width: 86vw;
  }

  .work__meta {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .work__meta::before {
    right: 0;
    width: auto;
  }

  .work__meta::after {
    display: none;
  }

  .work__meta div:nth-child(2) {
    text-align: right;
  }

  .buy-link {
    min-width: 0;
  }

  .material {
    padding: 10vh var(--pad) 12vh;
  }

  .material__process {
    height: auto;
  }

  .material__visuals {
    height: min(98vw, 380px);
  }

  .material__process--drawing {
    width: 88%;
  }

  .material__process--texture {
    width: 46%;
    border-width: 6px;
  }

  .material__index {
    width: auto;
    text-align: right;
  }

  .material__title {
    margin-top: 8vh;
    font-size: 14vw;
    line-height: 0.8;
  }

  .material__gallery {
    height: 190svh;
    margin-top: 8vh;
  }

  .material__scene {
    gap: 4vh;
  }

  .material__copy {
    grid-column: 1;
    width: 100%;
  }

  .catalog {
    padding-top: 12vh;
  }

  .catalog__head {
    grid-template-columns: 1fr;
  }

  .catalog__head > .eyebrow,
  .catalog__head h2 {
    grid-column: 1;
  }

  .catalog__head h2 {
    margin-top: 8vh;
    font-size: 13.4vw;
  }

  .catalog__intro {
    grid-column: 1;
    margin-left: 34vw;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 12vh;
    margin-top: 12vh;
  }

  .archive {
    padding-top: 12vh;
    padding-bottom: 14vh;
  }

  .archive__head {
    grid-template-columns: 1fr;
  }

  .archive__head > .eyebrow,
  .archive__head h2,
  .archive__intro {
    grid-column: 1;
  }

  .archive__head h2 {
    margin-top: 8vh;
    font-size: 19vw;
  }

  .archive__intro {
    margin: 7vh 0 0 29vw;
  }

  .archive__list {
    margin-top: 10vh;
  }

  .archive__row {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 86px;
    padding: 14px 0;
  }

  .archive__row strong {
    font-size: clamp(1.2rem, 6.2vw, 1.55rem);
  }

  .archive__size {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.72rem;
  }

  .archive__year {
    display: none;
  }

  .archive__open {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    width: 28px;
    justify-content: center;
  }

  .archive__open > span {
    display: none;
  }

  .archive__open .ui-arrow {
    width: 14px;
    height: 14px;
    font-size: 1rem;
  }

  .archive__open .ui-arrow::before {
    top: calc(50% - 0.5px);
    left: 0;
    width: 100%;
    transform: none;
  }

  .archive__open .ui-arrow::after {
    top: 0;
    left: calc(50% - 0.5px);
    width: 1px;
    height: 100%;
    border: 0;
    background: currentColor;
  }

  .buy-link .ui-arrow,
  .contact__link .ui-arrow,
  .product-detail__add .ui-arrow,
  .checkout__form button .ui-arrow {
    display: none;
  }

  .archive__row:hover,
  .archive__row:focus-visible {
    padding-right: 10px;
    padding-left: 10px;
  }

  .card,
  .card--wide {
    grid-column: 1;
    padding: 0;
  }

  .card--lower,
  .card:nth-child(even) {
    padding-top: 0;
  }

  .card__meta {
    grid-template-columns: 1fr auto;
    font-size: 0.82rem;
  }

  .card__details {
    grid-column: 1 / -1;
  }

  .card__image span {
    right: 10px;
    bottom: 10px;
    display: block;
    padding: 12px 13px;
    font-size: 0.72rem;
  }

  .work__open {
    right: 10px;
    bottom: 10px;
    padding: 11px 13px;
    font-size: 0.72rem;
    opacity: 1;
    transform: none;
  }

  .artist {
    min-height: 100vh;
  }

  .artist__visual {
    inset: 25% 0 0 20%;
  }

  .artist__content {
    padding-top: 11vh;
  }

  .artist__name {
    margin-top: 14vh;
    font-size: 20vw;
  }

  .artist__text {
    grid-template-columns: 1fr;
    max-width: 83vw;
  }

  .contact {
    min-height: 82vh;
    padding-top: 11vh;
  }

  .contact__link {
    margin-top: 12vh;
    font-size: 16vw;
  }

  .contact__intro {
    width: 70vw;
    margin-top: 5vh;
  }

  .contact__foot {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .contact__foot p:nth-child(2) {
    display: none;
  }

  .product-detail {
    display: block;
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
  }

  .product-detail__visual {
    height: 48svh;
  }

  .product-detail__content {
    min-height: 70svh;
    padding: 8vh 18px 32px;
  }

  .product-detail__content h2 {
    margin: 4vh 0 3vh;
    font-size: 14vw;
  }

  .product-detail__text {
    font-size: 1.05rem;
  }

  .product-detail__specs {
    margin-top: 6vh;
  }

  .product-detail__buy {
    grid-template-columns: 1fr;
    margin-top: 7vh;
  }

  .checkout {
    display: block;
    overflow-y: auto;
  }

  .checkout__art {
    height: 31vh;
  }

  .checkout__content {
    min-height: 69vh;
    padding: 8vh 18px 40px;
  }

  .checkout__content h2 {
    margin: 4vh 0 2vh;
    font-size: 13vw;
  }

  .checkout__form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .checkout__form label,
  .checkout__form button {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #paint-canvas,
  .cursor-dot {
    display: none;
  }
}
