:root {
  --color-background: #f3efe7;
  --color-surface: #fbf9f5;
  --color-text: #292724;
  --color-text-soft: #6b665f;
  --color-line: #d8d1c6;
  --color-dark: #171714;
  --color-dark-soft: #262520;
  --color-white: #fff;
  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Jost", Arial, sans-serif;
  --space-page: clamp(1.25rem, 4vw, 4.75rem);
  --space-section: clamp(6rem, 12vw, 11rem);
  --content-width: 1560px;
  --reading-width: 42rem;
  --header-height: 4.75rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 260ms;
  --duration-slow: 780ms;
  --z-header: 30;
  --z-float: 35;
  --z-dialog: 60;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--color-background);
  color: var(--color-text);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.063rem);
  font-weight: 300;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
  font-size: clamp(3.7rem, 18vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 7.2vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.12;
}

i {
  font-family: var(--font-display);
  font-style: normal;
}

::selection {
  background: var(--color-dark);
  color: var(--color-white);
}

.section {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding: var(--space-section) var(--space-page);
}

.eyebrow,
.meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.4rem;
  color: var(--color-text-soft);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-160%);
  background: var(--color-dark);
  color: var(--color-white);
  transition: transform var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--space-page);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    backdrop-filter var(--duration-fast) ease;
}

.site-header.is-scrolled {
  border-color: color-mix(in srgb, var(--color-line) 76%, transparent);
  background: color-mix(in srgb, var(--color-background) 91%, transparent);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

.site-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.02;
  text-decoration: none;
}

.site-brand span:last-child {
  margin-left: 1.2rem;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0.65rem;
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  transition: transform var(--duration-fast) var(--ease-out);
}

.menu-toggle span:first-child {
  top: 1.25rem;
}

.menu-toggle span:last-child {
  top: 1.75rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.25rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.25rem) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  padding: calc(var(--header-height) + 2rem) var(--space-page) 3rem;
  opacity: 0;
  background: var(--color-background);
  pointer-events: none;
  transition:
    opacity var(--duration-fast) ease,
    visibility var(--duration-fast) step-end;
}

.main-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity var(--duration-fast) ease,
    visibility 0s step-start;
}

.main-nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 12vw, 4rem);
  line-height: 1.1;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform var(--duration-fast) var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  gap: clamp(2.75rem, 8vw, 7rem);
  padding: calc(var(--header-height) + 3rem) var(--space-page) 5rem;
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.hero__artist {
  color: var(--color-text);
}

.hero__tagline {
  max-width: 33rem;
  margin-bottom: 0.45rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__tagline i {
  margin-inline: 0.25em;
}

.hero__period {
  margin-bottom: 2rem;
  color: var(--color-text-soft);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.03rem;
  text-decoration: none;
}

.text-link span {
  transition: transform var(--duration-fast) var(--ease-out);
}

.text-link:hover span {
  transform: translateY(0.25rem);
}

.hero__art {
  position: relative;
  width: min(100%, 38rem);
  margin: 0 auto;
}

.hero__art::before {
  position: absolute;
  z-index: -1;
  inset: clamp(1.4rem, 5vw, 3.75rem) clamp(-1rem, -2vw, -2.5rem) clamp(-1.2rem, -2vw, -2.5rem) clamp(1.4rem, 5vw, 3.75rem);
  border: 1px solid var(--color-line);
  content: "";
}

.hero__art picture {
  display: block;
  overflow: hidden;
  background: #ded8cd;
}

.hero__art img {
  width: 100%;
  height: auto;
}

.hero__art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  color: var(--color-text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: var(--space-page);
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll span {
  width: 1px;
  height: 3rem;
  background: var(--color-line);
}

.js .hero__copy > *,
.js .hero__art {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: hero-reveal 900ms var(--ease-out) forwards;
}

.js .hero__copy > :nth-child(2) {
  animation-delay: 90ms;
}

.js .hero__copy > :nth-child(3) {
  animation-delay: 160ms;
}

.js .hero__copy > :nth-child(4),
.js .hero__copy > :nth-child(5) {
  animation-delay: 220ms;
}

.js .hero__art {
  transform: translateY(1.5rem);
  animation-delay: 150ms;
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collection-intro {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.collection-intro__number {
  color: color-mix(in srgb, var(--color-text) 8%, transparent);
  font-family: var(--font-display);
  font-size: clamp(10rem, 46vw, 28rem);
  line-height: 0.7;
}

.collection-intro__copy {
  max-width: 42rem;
}

.collection-intro__copy > p:last-child {
  max-width: 32rem;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.collection-intro__index {
  justify-self: end;
  color: var(--color-text-soft);
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(4rem, 9vw, 8rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line);
}

.section-heading .eyebrow {
  width: 100%;
  margin-bottom: 0;
}

.section-heading h2,
.section-heading > p:last-child {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  color: var(--color-text-soft);
}

.works-grid {
  display: grid;
  gap: clamp(5rem, 13vw, 10rem) clamp(2rem, 6vw, 7rem);
}

.work-card {
  min-width: 0;
}

.work-card__image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e7e0d6;
  cursor: zoom-in;
}

.work-card__image picture {
  display: block;
}

.work-card__image img {
  width: 100%;
  height: auto;
  transition: transform 700ms var(--ease-out);
}

.work-card__view {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  width: auto;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0 0.8rem;
  border: 1px solid color-mix(in srgb, var(--color-white) 68%, transparent);
  border-radius: 999px;
  opacity: 1;
  background: color-mix(in srgb, var(--color-dark) 82%, transparent);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.035em;
  pointer-events: none;
  transform: translateY(0);
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease-out);
}

.work-card__view-icon {
  position: relative;
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.work-card__view-icon::after {
  position: absolute;
  right: -0.29rem;
  bottom: -0.14rem;
  width: 0.38rem;
  height: 1.4px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.work-card__caption {
  padding-top: 1.3rem;
}

.work-card__heading {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.work-card__heading .meta {
  color: var(--color-text-soft);
}

.work-card__details {
  margin: 0 0 0 4.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--color-line);
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.work-card__details div {
  display: grid;
  grid-template-columns: minmax(5.7rem, 0.45fr) 1fr;
  gap: 1rem;
}

.work-card__details dt,
.work-card__details dd {
  margin: 0;
}

.work-card__details dt {
  font-weight: 400;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.75rem);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.artist-statement {
  display: grid;
  gap: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid var(--color-line);
}

.artist-statement__lead blockquote {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2.4rem);
  line-height: 1.3;
}

.artist-statement__portrait {
  width: min(100%, 27rem);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  overflow: hidden;
  background: var(--color-line);
}

.artist-statement__portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.artist-statement__text {
  max-width: var(--reading-width);
}

.artist-statement__text p {
  margin-bottom: 1.45rem;
}

.artist-statement__text .statement-question {
  margin-block: 2.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.artist-statement__text footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
}

.artist-statement__text footer p {
  margin-bottom: 0.15rem;
}

.artist-statement__text footer p:first-child {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.artist-statement__text footer p:last-child {
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.closing {
  display: grid;
  min-height: 78svh;
  background: var(--color-dark);
  color: var(--color-white);
}

.closing__image {
  min-height: 55svh;
}

.closing__image picture,
.closing__image img {
  width: 100%;
  height: 100%;
}

.closing__image img {
  object-fit: contain;
  background: #0e0e0c;
}

.closing__quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--space-page);
}

.closing__quote .eyebrow {
  color: #aaa49b;
}

.closing__quote > p:nth-child(2) {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  line-height: 1.13;
}

.closing__quote > span {
  color: #aaa49b;
  font-size: 0.9rem;
}

.contact {
  display: grid;
  gap: 4rem;
}

.contact__intro h2 {
  max-width: 58rem;
}

.contact__details {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}

.contact__name {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.contact__details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__details ul:empty {
  display: none;
}

.contact__details a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 400;
}

.site-footer {
  display: grid;
  gap: 2.5rem;
  padding: 4rem var(--space-page);
  background: var(--color-dark);
  color: #c6c1b8;
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0.3rem;
}

.site-footer__name {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.whatsapp-float {
  position: fixed;
  z-index: var(--z-float);
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: 0 0.75rem 2.4rem rgb(23 23 20 / 14%);
  color: var(--color-text);
  text-decoration: none;
}

.contact-icon {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1.08rem;
  border: 1.7px solid currentColor;
  border-radius: 0.34rem;
}

.contact-icon::before {
  position: absolute;
  bottom: -0.29rem;
  left: 0.2rem;
  width: 0.42rem;
  height: 0.42rem;
  border-bottom: 1.7px solid currentColor;
  border-left: 1.7px solid currentColor;
  background: var(--color-surface);
  content: "";
  transform: skewY(-32deg) rotate(-12deg);
}

.contact-icon::after {
  position: absolute;
  top: 0.4rem;
  left: 0.28rem;
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0.31rem 0 currentColor, 0.62rem 0 currentColor;
  content: "";
}

.whatsapp-float[hidden] {
  display: none;
}

.lightbox {
  z-index: var(--z-dialog);
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  background: var(--color-dark);
  color: var(--color-white);
}

.lightbox[open] {
  display: block;
  opacity: 1;
  animation: lightbox-in 320ms ease both;
}

.lightbox::backdrop {
  background: rgb(0 0 0 / 92%);
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__shell {
  display: grid;
  width: 100%;
  height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
}

.lightbox__header,
.lightbox__navigation {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox__counter {
  margin: 0;
  color: #aaa49b;
}

.lightbox__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lightbox__zoom,
.icon-button,
.lightbox__navigation button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid #4b4943;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.lightbox__zoom {
  padding-inline: 1rem;
  font-size: 0.85rem;
}

.icon-button {
  padding: 0;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.lightbox__content {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  overflow: hidden;
}

.lightbox__stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  min-width: 0;
  place-items: center;
  overflow: auto;
  overscroll-behavior: contain;
  background: #10100e;
  cursor: default;
  touch-action: pan-y pinch-zoom;
}

.lightbox__image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: opacity 180ms ease;
}

.lightbox__image.is-loading {
  opacity: 0.55;
}

.lightbox__stage.is-zoomed {
  place-items: start center;
  cursor: zoom-out;
}

.lightbox__stage.is-zoomed .lightbox__image {
  position: static;
  inset: auto;
  width: 135%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: fill;
}

.lightbox__quality {
  position: absolute;
  right: 0.75rem;
  bottom: 0.6rem;
  margin: 0;
  color: #aaa49b;
  pointer-events: none;
}

.lightbox__details {
  display: block;
  min-width: 0;
  max-height: 27svh;
  padding: 0.15rem 0.25rem 0;
  overflow: auto;
}

.lightbox__details > .meta {
  margin-bottom: 0.25rem;
  color: #aaa49b;
}

.lightbox__details h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 6vw, 2.2rem);
}

.lightbox__details dl {
  margin: 0;
  color: #c5c1ba;
  font-size: 0.9rem;
}

.lightbox__details dl div {
  display: grid;
  grid-template-columns: 6.3rem 1fr;
  gap: 1rem;
  padding-block: 0.35rem;
  border-top: 1px solid #3a3935;
}

.lightbox__details dt {
  color: #8e8a83;
}

.lightbox__details dd {
  margin: 0;
}

.lightbox__navigation button {
  padding-inline: 0.85rem;
  border: 0;
  color: #c5c1ba;
  font-size: 0.86rem;
}

@media (hover: hover) and (pointer: fine) {
  .work-card__view {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  .work-card__image:hover img,
  .work-card__image:focus-visible img {
    transform: scale(1.018);
  }

  .work-card__image:hover .work-card__view,
  .work-card__image:focus-visible .work-card__view {
    opacity: 1;
    transform: translateY(0);
  }

  .lightbox__zoom:hover,
  .icon-button:hover,
  .lightbox__navigation button:hover {
    border-color: #858179;
    color: var(--color-white);
  }
}

@media (min-width: 620px) {
  .collection-intro {
    grid-template-columns: minmax(9rem, 0.7fr) minmax(18rem, 1fr);
  }

  .collection-intro__number {
    grid-row: 1 / span 2;
  }

  .collection-intro__index {
    grid-column: 2;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .work-card:nth-child(4n + 2) {
    padding-top: clamp(3rem, 9vw, 8rem);
  }

  .work-card:nth-child(4n + 3) {
    width: 88%;
    justify-self: end;
  }

  .work-card--wide {
    width: min(78%, 58rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 880px) {
  :root {
    --header-height: 5.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: 0;
    opacity: 1;
    background: transparent;
    pointer-events: auto;
    transition: none;
  }

  .main-nav a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hero {
    grid-template-columns: minmax(23rem, 0.92fr) minmax(22rem, 0.82fr);
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero__copy {
    padding-left: clamp(1rem, 4vw, 5rem);
  }

  .hero h1 {
    font-size: clamp(5.5rem, 9.5vw, 9.5rem);
  }

  .hero__art {
    width: min(100%, 42rem);
    max-height: calc(100svh - 8rem);
  }

  .hero__art img {
    max-height: calc(100svh - 10rem);
    object-fit: contain;
  }

  .hero__scroll {
    display: flex;
  }

  .collection-intro {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(28rem, 1fr) auto;
  }

  .collection-intro__number {
    grid-row: auto;
  }

  .collection-intro__index {
    grid-column: auto;
    align-self: end;
    padding-bottom: 1.2rem;
  }

  .artist-statement {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(28rem, 1fr);
    align-items: start;
  }

  .artist-statement__lead {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
  }

  .closing {
    grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  }

  .closing__image {
    min-height: 78svh;
  }

  .contact {
    grid-template-columns: minmax(24rem, 1fr) minmax(18rem, 0.6fr);
    align-items: end;
  }

  .site-footer {
    grid-template-columns: 1.2fr 0.8fr auto;
    align-items: end;
  }

  .site-footer > p:last-child {
    grid-column: auto;
    text-align: right;
  }

  .lightbox__shell {
    padding: max(1rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  }

  .lightbox__content {
    grid-template-rows: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 25vw);
    gap: clamp(1.5rem, 4vw, 4rem);
  }

  .lightbox__details {
    display: flex;
    max-height: none;
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(1rem, 3vw, 3rem);
    overflow: visible;
  }

  .lightbox__details > .meta {
    margin-bottom: 0.7rem;
  }

  .lightbox__details h2 {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
  }

  .lightbox__details dl div {
    padding-block: 0.6rem;
  }

  .lightbox__stage.is-zoomed .lightbox__image {
    width: 160%;
  }
}

@media (min-width: 1500px) {
  .works-grid {
    gap-inline: 8rem;
  }

  .work-card:not(.work-card--wide) {
    max-width: 40rem;
  }
}

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

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

  .js .hero__copy > *,
  .js .hero__art,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .whatsapp-float,
  .lightbox,
  .hero__scroll {
    display: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
