:root {
  --ink: #303030;
  --muted: #747474;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --rail: clamp(15.5rem, 23vw, 20rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  padding: clamp(2.5rem, 6vh, 4.8rem) 2.6rem;
  background: #fff;
}

.wordmark {
  color: var(--ink);
  font-size: clamp(1.5rem, 2.15vw, 2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  margin-top: 1rem;
}

.site-nav a {
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 0.35rem;
  background: currentColor;
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

main,
footer {
  margin-left: var(--rail);
}

.cover {
  position: relative;
  min-height: calc(100svh - 3rem);
  margin: 1.5rem clamp(1.5rem, 4vw, 4rem) 1.5rem 0;
  overflow: hidden;
  background: var(--soft);
  color: #fff;
}

.cover-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--soft);
}

.cover-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.86) contrast(1.02);
  opacity: 0;
  animation: cover-fade 60s linear infinite;
}

.cover-slideshow img:nth-child(1) { animation-delay: 0s; }
.cover-slideshow img:nth-child(2) { animation-delay: 6s; }
.cover-slideshow img:nth-child(3) { animation-delay: 12s; }
.cover-slideshow img:nth-child(4) { animation-delay: 18s; }
.cover-slideshow img:nth-child(5) { animation-delay: 24s; }
.cover-slideshow img:nth-child(6) { animation-delay: 30s; }
.cover-slideshow img:nth-child(7) { animation-delay: 36s; }
.cover-slideshow img:nth-child(8) { animation-delay: 42s; }
.cover-slideshow img:nth-child(9) { animation-delay: 48s; }
.cover-slideshow img:nth-child(10) { animation-delay: 54s; }

@keyframes cover-fade {
  0%, 8% {
    opacity: 1;
  }

  12%, 100% {
    opacity: 0;
  }
}

.cover-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.36));
}

.cover-content {
  position: absolute;
  right: 2rem;
  bottom: 1.75rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.cover-content .eyebrow {
  align-self: flex-start;
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.cover-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.cover h1 {
  margin: 0;
  padding: 0.16em 0.24em 0.1em;
  background: rgba(126, 145, 205, 0.72);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.065em;
  text-align: right;
}

.cover h1 span {
  display: inline;
}

.cover-subtitle {
  margin: 0;
  padding: 0.3rem 0.45rem;
  background: rgba(126, 145, 205, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: right;
}

.cover-block:hover h1,
.cover-block:hover .cover-subtitle,
.cover-block:focus-visible h1,
.cover-block:focus-visible .cover-subtitle {
  background: rgba(151, 169, 224, 0.86);
}

.artist-bio {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 1.35fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 106rem;
  margin: 0;
  padding: clamp(6rem, 11vw, 11rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  background: #fff;
}

.intro,
.pollo-intro {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 1.35fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 106rem;
  margin: 0;
  padding: clamp(6rem, 11vw, 11rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  background: #fff;
}

.intro h2,
.artist-bio h2,
.pollo-intro h2,
.gallery-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.intro-copy {
  align-self: start;
  max-width: 42rem;
  color: #464646;
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.intro-copy p {
  margin: 0 0 1.35em;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.minga {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(22rem, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 106rem;
  margin: 0;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid #c68e8c;
  background: #d9a3a1;
  color: #241716;
}

.minga-art {
  position: relative;
  align-self: start;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #bc827f;
}

.minga-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(36, 23, 22, 0.32));
  pointer-events: none;
}

.minga-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.03);
}

.minga-art-caption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.minga-art-caption em {
  font-size: 0.55em;
  font-style: normal;
  letter-spacing: -0.02em;
}

.minga-copy {
  max-width: 46rem;
}

.minga-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.minga-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-align: right;
}

.minga-body {
  color: #3d2928;
}

.minga-body p {
  margin-bottom: 1.35em;
}

.minga-body blockquote {
  max-width: 32rem;
  margin: 2.8rem 0 3.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid #241716;
  color: #241716;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-style: italic;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.minga-event {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(36, 23, 22, 0.42);
}

.minga-event-label {
  margin-bottom: 1.1rem !important;
  color: #60413f;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.minga-event h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.minga-event p:not(.minga-event-label) {
  max-width: 34rem;
  margin-bottom: 1.1em;
  color: #3d2928;
}

.axes {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
}

.axes > * {
  max-width: 92rem;
  margin-right: auto;
  margin-left: auto;
}

.axes ol {
  list-style: none;
  margin-top: 3rem;
  padding: 0;
  border-top: 1px solid #c8c8c8;
}

.axes li {
  display: grid;
  grid-template-columns: 3rem minmax(12rem, 0.9fr) minmax(16rem, 1.35fr);
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #c8c8c8;
}

.axes li span {
  color: var(--muted);
  font-size: 0.75rem;
}

.axes li strong {
  font-size: 1rem;
  font-weight: 400;
}

.axes li p {
  max-width: 32rem;
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.notes-heading h2 {
  margin: 1.25rem 0 0;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.gallery {
  padding-top: clamp(5rem, 9vw, 9rem);
  background: #fff;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  max-width: 106rem;
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

.gallery-heading h2 {
  text-align: right;
}

.work,
.work--reverse {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) minmax(12rem, 18rem);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
  min-height: 0;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  overflow: visible;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.work-number,
.work--reverse .work-number {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

.work-image,
.work--reverse .work-image {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  min-height: 28rem;
  max-height: 82vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--soft);
  box-shadow: none;
}

.work-image img,
.work--reverse .work-image img {
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
  object-position: center;
}

.work-image video,
.work--reverse .work-image video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.work-info,
.work--reverse .work-info {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  padding-bottom: 0.25rem;
}

.work-info h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 2.8vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
}

.work-info p {
  max-width: 22rem;
  margin: 0;
  color: #555;
  font-size: 0.8rem;
  line-height: 1.45;
}

.work-info .work-description {
  max-width: 32rem;
  margin-top: 1.25rem;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.work-info .work-description p {
  max-width: 32rem;
  margin: 0 0 1.1em;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.work-info .work-description p:last-child {
  margin-bottom: 0;
}

.work--ofelia .work-image {
  background: #101010;
}

.notes {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.notes-heading,
.notes-grid {
  max-width: 106rem;
  margin-right: auto;
  margin-left: auto;
}

.notes-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.notes-heading h2 {
  margin-top: 0;
  text-align: right;
}

.notes-grid {
  display: block;
}

.note {
  border-top: 1px solid #c8c8c8;
}

.note + .note {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.note-media {
  margin-top: 1.5rem;
  background: #fff;
}

.note-media img {
  width: 100%;
  height: auto;
}

.note-copy {
  padding-top: 1.5rem;
}

.note-type {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.note-copy h3 {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.note-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 1.5rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.note-video-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease;
}

.note-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  padding: clamp(1.25rem, 3vw, 2rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.8rem;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.note-video-label {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.note-video-card:hover > img,
.note-video-card:focus-visible > img {
  transform: scale(1.025);
}

.note-play {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 0.9rem;
}

.exhibition--pollo {
  border-top: 1px solid var(--line);
}

.pollo-cover {
  position: relative;
  min-height: min(82svh, 58rem);
  margin: 1.5rem clamp(1.5rem, 4vw, 4rem) 1.5rem 0;
  overflow: hidden;
  background: var(--soft);
  color: #fff;
}

.pollo-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
  mix-blend-mode: normal;
  opacity: 1;
}

.pollo-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.4));
}

.pollo-cover-title {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 1.75rem;
  left: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 0;
}

.pollo-cover-title h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-align: right;
}

.pollo-cover-title > p:last-child {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: right;
}

.pollo-gallery {
  padding-top: clamp(5rem, 9vw, 9rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(22rem, 1.35fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 106rem;
  min-height: min(46svh, 34rem);
  margin: 0;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--ink);
  color: #fff;
}

.contact-heading h2 {
  margin: 1.25rem 0 0;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.contact-links {
  display: flex;
  align-self: end;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.contact-links a {
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  text-decoration: underline;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.72rem;
}

footer p {
  margin: 0;
}

footer a {
  text-decoration: none;
}

@media (max-width: 900px) {
  :root {
    --rail: 0px;
  }

  .site-header {
    position: sticky;
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    min-height: 4.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .wordmark {
    font-size: 1.08rem;
    line-height: 1;
  }

  .site-nav {
    flex-direction: row;
    gap: 1rem;
    margin: 0;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  main,
  footer {
    margin-left: 0;
  }

  .cover,
  .pollo-cover {
    min-height: calc(100svh - 6rem);
    margin: 0;
  }

  .artist-bio {
    grid-template-columns: 0.45fr 1fr;
  }

  .intro,
  .pollo-intro {
    grid-template-columns: 1fr 1.25fr;
  }

  .intro-copy {
    grid-column: 2;
  }

  .minga {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .work,
  .work--reverse {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .work-info,
  .work--reverse .work-info {
    grid-column: 2;
    grid-row: 2;
    max-width: 34rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
  }

  .site-nav a::after {
    display: none;
  }

  .cover-content,
  .pollo-cover-title {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .artist-bio,
  .intro,
  .pollo-intro,
  .minga {
    display: block;
    padding: 5rem 1.25rem;
  }

  .minga-art {
    max-width: none;
    margin-bottom: 3rem;
  }

  .minga-heading {
    display: block;
    margin-bottom: 3rem;
  }

  .minga-heading h2 {
    margin-top: 1.25rem;
    text-align: left;
  }

  .notes {
    display: block;
    padding: 4.5rem 1.25rem;
  }

  .notes-heading {
    display: block;
    margin-bottom: 3rem;
  }

  .notes-heading h2 {
    margin-top: 1.25rem;
    text-align: left;
  }

  .contact-panel {
    display: block;
    min-height: 0;
    padding: 4.5rem 1.25rem;
  }

  .contact-links {
    margin-top: 4rem;
  }

  .notes-grid {
    display: block;
  }

  .note + .note {
    margin-top: 3.5rem;
  }

  .artist-bio > *,
  .intro > *,
  .pollo-intro > * {
    margin-bottom: 2.5rem;
  }

  .artist-bio > *:last-child,
  .intro > *:last-child,
  .pollo-intro > *:last-child {
    margin-bottom: 0;
  }

  .axes {
    padding: 4.5rem 1.25rem;
  }

  .axes li {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
  }

  .axes li p {
    grid-column: 2;
  }

  .gallery-heading {
    display: block;
    margin-bottom: 4rem;
    padding: 0 1.25rem;
  }

  .gallery-heading h2 {
    margin-top: 1.25rem;
    text-align: left;
  }

  .work,
  .work--reverse {
    grid-template-columns: 1.5rem minmax(0, 1fr);
    gap: 1.1rem;
    padding: 3.5rem 1.25rem;
  }

  .work-image,
  .work--reverse .work-image {
    min-height: 0;
    max-height: none;
  }

  .work-image img,
  .work--reverse .work-image img {
    height: auto;
    max-height: none;
  }

  .work-image video,
  .work--reverse .work-image video {
    height: auto;
    max-height: none;
  }

  .work-info h3 {
    font-size: 2.25rem;
  }

  footer {
    flex-direction: column;
    padding: 1.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-slideshow img {
    animation: none;
  }

  .cover-slideshow img:not(:first-child) {
    display: none;
  }

  .cover-slideshow img:first-child {
    opacity: 1;
  }

  .site-nav a::after {
    transition: none;
  }
}
