:root {
  --black: #1e1e1e;
  --black-soft: rgba(30, 30, 30, 0.7);
  --gray-100: #f1f1f1;
  --gray-300: #525050;
  --gray-400: #817e7e;
  --gray-600: #d9d8d8;
  --acid: #eaff4e;
  --white: #ffffff;
  --page-pad: 10px;
  --radius-image: 24px;
  --font-display: 'Special Gothic', 'Arial Black', Impact, sans-serif;
  --font-sans: 'Special Gothic', 'Arial Narrow', Arial, sans-serif;
  --font-mono: 'Fragment Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-tech: 'Michroma', 'Arial Narrow', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

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

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: var(--black);
}

.hero__image,
.hero__shade,
.shader-fill {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.shader-fill {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shader-fill--gradient {
  opacity: 0.46;
  mix-blend-mode: screen;
}

.shader-fill--feature {
  opacity: 0.9;
  mix-blend-mode: normal;
}

.shader-fill--hero-pattern {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: normal;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 74px;
  align-items: flex-start;
  gap: 4px;
  padding: 10px;
}

.nav a {
  position: relative;
  display: flex;
  height: 62px;
  min-width: 0;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.18px;
  padding: 0 4px;
  text-align: center;
  backdrop-filter: blur(52px);
}

.nav a.nav__logo {
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0 4px;
  backdrop-filter: none;
}

.nav__logo img {
  position: absolute;
  inset: -6px -10px -14px;
  width: calc(100% + 20px);
  height: 82px;
  max-width: none;
}

.hero__headline {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(622px, calc(100vw - 28px));
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  transform: translateY(20px) scale(0.878, 0.95);
  transform-origin: center top;
}

.headline-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: -8px;
}

.hero__headline span,
.section-title span {
  display: inline-flex;
  height: 95px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 20px;
  background: var(--acid);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.71;
  letter-spacing: -2px;
  overflow: visible;
}

.hero__headline span {
  font-size: 100px;
  line-height: 71px;
}

.section-title span {
  font-size: 100px;
  line-height: 71px;
}

.hero__headline .headline-row span {
  margin-right: -8px;
}

.hero__headline .headline-row span:last-child {
  margin-right: 0;
}

.hero__headline > span {
  margin-bottom: -8px;
}

.hero__headline em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 12px;
  background: var(--acid);
  color: var(--black);
  font-family: var(--font-tech);
  font-size: 44px;
  font-style: normal;
  line-height: 1;
}

.hero__footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.scroll-cue {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.scroll-cue img {
  width: 24px;
  height: 24px;
}

.page-curve {
  width: 100%;
  height: 48px;
  background: var(--white);
}

.page-curve--top {
  border-radius: 48px 48px 0 0;
}

.page-curve--bottom {
  border-radius: 0 0 48px 48px;
}

.intro {
  display: flex;
  height: 780px;
  justify-content: center;
  padding: 92px var(--page-pad) 140px;
}

.measure {
  width: min(705px, calc(100vw - 40px));
}

.intro .measure {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.pill {
  display: inline-flex;
  height: 28px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.08);
  color: var(--gray-300);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill img {
  width: 12px;
  height: 12px;
}

.intro h2,
.text-section h2,
.artist__bio h2,
.events h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: -0.504px;
}

.intro h2 {
  font-size: 32px;
  line-height: 29px;
  letter-spacing: -0.64px;
}

.body-copy {
  display: grid;
  gap: 0;
  font-size: 18px;
  line-height: 21.9px;
  letter-spacing: 0.18px;
}

.body-copy p + p {
  margin-top: 21.9px;
}

.body-copy p,
.events p {
  margin: 0;
}

.button-pair {
  display: inline-flex;
  gap: 4px;
  align-items: stretch;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.button-pair span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--gray-600);
  color: var(--black);
}

.button-pair span:first-child {
  min-width: 137px;
  padding: 0 24px;
  border-radius: 12px;
}

.button-pair span:last-child {
  width: 44px;
  border-radius: 8px;
  font-size: 22px;
}

.button-pair img {
  width: 20px;
  height: 20px;
}

.image-gallery {
  display: grid;
  gap: 10px;
  width: calc(100vw - 20px);
  margin-left: var(--page-pad);
  padding: 0;
}

.image-gallery--lead {
  height: 579px;
  grid-template-columns: 347px minmax(0, 1fr);
  align-items: start;
}

.image-gallery--mosaic {
  height: 579px;
  grid-template-columns: 586px 347px minmax(260px, 1fr);
  align-items: start;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-image);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  margin-top: 16px;
  color: var(--black-soft);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.14px;
}

.image-frame--small {
  height: 350px;
}

.image-frame--wide {
  height: 579px;
  overflow: visible;
}

.image-frame--wide img {
  height: 553px;
  border-radius: var(--radius-image);
}

.image-frame--captioned {
  height: 579px;
  overflow: visible;
}

.image-frame--captioned img {
  height: 553px;
  border-radius: var(--radius-image);
}

.image-frame--portrait {
  height: 395px;
}

.image-frame--landscape {
  height: 258px;
}

.text-section {
  display: flex;
  height: 511px;
  justify-content: center;
  padding: 140px var(--page-pad);
}

.text-section .measure {
  display: grid;
  gap: 40px;
}

.image-gallery--mosaic + .text-section {
  height: 488px;
}

.feature-image {
  padding: 140px var(--page-pad);
}

.feature-image__mask {
  position: relative;
  width: calc(100vw - 24px);
  aspect-ratio: 1416 / 553;
  overflow: hidden;
  border-radius: 80px;
  background: #1a1741;
}

.feature-image__mask img {
  position: absolute;
  top: -0.03%;
  left: -6.73%;
  width: 113.45%;
  height: 190.99%;
  max-width: none;
  object-fit: fill;
}

.artist {
  position: relative;
  height: 825px;
  overflow: hidden;
  padding: 140px var(--page-pad);
  background: #fff;
}

.shader-fill--artist-mesh {
  z-index: 0;
  opacity: 1;
  filter: none;
  transform: none;
  transform-origin: center;
}

.artist .section-title,
.artist__content {
  position: relative;
  z-index: 1;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
  text-transform: uppercase;
}

.section-title > span + span,
.section-title__row {
  margin-top: -8px;
}

.section-title__row {
  display: flex;
  align-items: flex-start;
}

.section-title__row span + span {
  margin-left: -8px;
}

.artist__content {
  display: grid;
  grid-template-columns: 178px minmax(0, 705px);
  gap: 180px;
  align-items: start;
}

.artist__portrait {
  width: 178px;
  margin: 0;
}

.artist__crop {
  display: block;
  width: 178px;
  height: 204px;
  aspect-ratio: 178 / 204;
  border-radius: var(--radius-image);
  background: var(--gray-100);
  object-fit: fill;
}

.artist__portrait figcaption {
  margin-top: 16px;
  color: var(--black-soft);
  font-size: 14px;
  line-height: 1.3;
}

.artist__bio {
  display: grid;
  gap: 40px;
}

.artist__bio h3 {
  margin: -28px 0 0;
  color: var(--gray-400);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 17px;
}

.events-band {
  padding: 0 var(--page-pad);
}

.events {
  display: flex;
  height: 709px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  border-radius: 80px;
  background: var(--gray-100);
  padding: 140px 0;
}

.events .measure {
  display: grid;
  gap: 40px;
}

.events p {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.18px;
}

.event-table {
  width: min(705px, calc(100vw - 60px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.event-table__labels,
.event-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(190px, 1fr);
  gap: 10px;
  align-items: center;
}

.event-table__labels {
  color: var(--black-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.13px;
  text-transform: uppercase;
}

.event-table__labels span:last-child,
.event-row span {
  text-align: right;
}

.event-row {
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.12);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.18px;
}

.event-table__labels {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.12);
}

.event-row + .event-row {
  margin-top: 0;
}

.event-row strong {
  font-weight: 500;
}

.event-more {
  display: block;
  width: 32px;
  height: 32px;
  margin: -4px auto 0;
}

.event-more img {
  width: 32px;
  height: 32px;
}

.more-exhibitions {
  height: 1084px;
  padding: 140px var(--page-pad);
}

.exhibition-list {
  display: grid;
  grid-template-columns: 230px minmax(320px, 1fr) 225px 230px;
  gap: 10px;
  align-items: start;
}

.exhibit-card {
  display: grid;
  gap: 12px;
  text-transform: uppercase;
}

.exhibit-card img {
  width: 100%;
  border-radius: var(--radius-image);
  object-fit: cover;
}

.exhibit-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-image);
}

.exhibit-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
}

.exhibit-image--compact {
  height: 230px;
}

.exhibit-image--cropped img {
  top: -11.73%;
  left: -51.08%;
  width: 202.17%;
  height: 111.73%;
  object-fit: fill;
}

.exhibit-card--compact img {
  height: 230px;
}

.exhibit-card--large img {
  height: 463px;
}

.exhibit-card--tall img {
  height: 302px;
}

.exhibit-card p,
.exhibit-card h3,
.exhibit-card span {
  margin: 0;
}

.exhibit-card p {
  font-family: var(--font-mono);
  font-size: 13px;
  height: 9px;
  line-height: 9px;
}

.exhibit-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.64px;
}

.exhibit-card span {
  font-family: var(--font-tech);
  font-size: 14px;
  height: 11px;
  line-height: 11px;
}

.site-footer {
  display: flex;
  height: 625px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.site-footer .page-curve {
  flex: 0 0 auto;
}

.footer-columns {
  display: grid;
  width: min(944px, calc(100vw - 40px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns div {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-columns h2 {
  margin: 0 0 8px;
  color: var(--gray-400);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.footer-columns a {
  font-size: 18px;
  line-height: 1.3;
}

.footer-wordmark {
  flex: 0 0 401px;
  width: calc(100vw - 20px);
  height: 401px;
  max-width: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .nav {
    height: auto;
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .nav a {
    height: 52px;
    flex: 1 1 calc(33.333% - 4px);
    font-size: 14px;
  }

  .nav__logo img {
    height: 66px;
    inset: -7px -8px;
    width: calc(100% + 16px);
  }

  .hero__headline span,
  .section-title span {
    font-size: 58px;
    border-radius: 14px;
  }

  .hero__headline {
    transform: none;
  }

  .hero__headline em {
    font-size: 26px;
  }

  .intro h2 {
    font-size: 26px;
  }

  .image-gallery--lead,
  .image-gallery--mosaic,
  .artist__content,
  .exhibition-list {
    grid-template-columns: 1fr;
  }

  .image-frame--small,
  .image-frame--wide img,
  .image-frame--captioned img,
  .image-frame--portrait,
  .image-frame--landscape,
  .feature-image__mask {
    height: 360px;
  }

  .artist__content {
    gap: 40px;
  }

  .feature-image {
    height: auto;
    padding: 96px var(--page-pad);
  }

  .feature-image__mask img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-title--artist span:first-child,
  .section-title--artist span:last-child,
  .section-title--artist .section-title__row span:first-child,
  .section-title--artist .section-title__row span:last-child,
  .more-exhibitions .section-title span:first-child,
  .more-exhibitions .section-title span:last-child {
    width: auto;
  }

  .exhibit-image--cropped img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .event-table__labels,
  .event-row {
    grid-template-columns: 1fr;
  }

  .event-table__labels span:last-child,
  .event-row span {
    text-align: left;
  }

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

  .site-footer {
    height: auto;
    min-height: 625px;
    padding-bottom: 80px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 680px;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .nav a {
    width: 100%;
  }

  .hero__headline span,
  .section-title span {
    font-size: 42px;
  }

  .hero__headline em {
    font-size: 20px;
  }

  .headline-row {
    flex-wrap: wrap;
    gap: 0;
  }

  .intro,
  .artist,
  .more-exhibitions,
  .text-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .body-copy,
  .events p,
  .event-row,
  .footer-columns a {
    font-size: 16px;
  }

  .image-frame--small,
  .image-frame--wide img,
  .image-frame--captioned img,
  .image-frame--portrait,
  .image-frame--landscape,
  .feature-image__mask {
    height: 290px;
  }

  .artist__crop {
    width: 140px;
    height: 160px;
  }

  .feature-image {
    padding: 72px var(--page-pad);
  }

  .events {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 92px;
    border-radius: 36px;
  }

  .exhibit-card h3 {
    font-size: 26px;
  }

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