@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  background: #000;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 28px;
}

body > main {
  width: 95%;
  flex: 1 0 auto;
  margin: 0 auto;
  padding: 5px;
}

a {
  color: #fff;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  display: none;
}

.gallery-section {
  padding: 5px;
}

.gallery-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: calc(100vh - 20px);
  min-height: 420px;
  overflow: hidden;
  place-items: center;
  background: #000;
}

.gallery-current {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateX(0);
  will-change: transform;
}

.gallery-current[hidden] {
  display: none;
}

.gallery-current.is-sliding {
  transition: transform 350ms ease-in-out;
}

.gallery-control {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  color: #fff;
}

.gallery-control svg {
  width: 20px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2;
}

.gallery-prev {
  top: calc(50% - 28px);
  left: 3px;
}

.gallery-next {
  top: calc(50% - 28px);
  right: 3px;
}

.gallery-playback {
  top: calc(50% - 19px);
  left: calc(50% - 19px);
  width: 38px;
  height: 38px;
}

.gallery-playback svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.gallery-playback[data-playing="true"] .gallery-icon-play,
.gallery-playback[data-playing="false"] .gallery-icon-pause {
  display: none;
}

.gallery-fullscreen {
  right: 3px;
  bottom: 3px;
  width: 38px;
  height: 38px;
}

.gallery-fullscreen svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.gallery-count {
  display: none;
}

.gallery-status {
  position: absolute;
  inset: 0;
  display: grid;
  margin: 0;
  place-items: center;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-current.is-sliding {
    transition: none;
  }
}

.gallery-stage:fullscreen,
.gallery-stage.is-fullscreen,
.gallery-stage-expanded {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 0;
}

.content-section {
  width: 100%;
  margin: 0;
  padding: 5px;
}

.biographies {
  margin-top: 87px;
  padding-top: 54px;
  border-top: 1px solid #fff;
}

.biographies > .eyebrow {
  display: none;
}

.biography {
  margin-right: -5px;
  margin-left: -5px;
  padding: 5px;
  overflow: auto;
}

.biography + .biography {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #fff;
}

.biography figure {
  float: right;
  width: 296px;
  margin: 4px 0 12px 15px;
}

.biography:not(:first-of-type) figure {
  width: 307px;
}

.biography figure img {
  width: 100%;
  height: auto;
}

.biography p {
  margin: 0;
  text-align: justify;
}

.biography p + p {
  margin-top: 14px;
}

.biography p:first-child span:first-child,
.biography strong {
  color: #f00;
  font-weight: 700;
}

.biography-sl p:last-child,
.biography-sl p:last-child span,
.biography-sl p:last-child strong {
  color: #fff;
  font-weight: 400;
}

.archive-section,
.photo-credits,
.contact-section {
  margin-top: 0;
  padding-top: 26px;
  border-top: 1px solid #fff;
}

#press {
  padding-top: 28px;
}

.section-heading {
  margin: 0 0 40px;
}

#solo-exhibitions .section-heading,
#group-exhibitions .section-heading {
  margin-bottom: 45px;
}

#museums .section-heading {
  margin-bottom: 10px;
}

.section-heading span {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.archive-section table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
}

.archive-section td {
  padding: 3px;
  vertical-align: top;
}

.archive-section td:first-child {
  width: 1%;
  padding-right: 0;
  padding-left: 0;
  color: #fff;
  white-space: nowrap;
}

.archive-section td:nth-child(2) {
  padding-left: 4px;
}

.address-image {
  display: block;
  width: 90px;
  height: auto;
}

.archive-section td p {
  margin: 0;
}

.archive-note {
  margin-top: 5px;
  padding: 5px;
}

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

.columns ul {
  margin: 0;
  padding-left: 38px;
}

.columns li {
  margin: 0;
  padding: 0;
  break-inside: avoid;
}

#press .columns {
  min-height: 1186px;
}

#museums .columns {
  min-height: 346px;
}

.photo-credits {
  margin-top: 26px;
  padding-top: 5px;
  font-size: 14px;
  text-transform: none;
}

.photo-credits p {
  margin: 0;
}

.contact-section {
  display: block;
  padding-bottom: 45px;
}

.contact-form {
  display: block;
}

.contact-form label {
  display: block;
  margin: 0 0 12px;
}

.contact-form label span {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-form input,
.contact-form select {
  width: 50%;
  min-height: 27px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  color: #111;
}

.contact-form textarea {
  width: 100%;
  min-height: 95px;
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: #fff;
  color: #111;
  resize: vertical;
}

.form-privacy,
.form-note {
  margin: 15px 0;
}

.submit-button {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #222;
  padding: 17px 31px;
  cursor: pointer;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #e6e6e6;
}

.site-footer {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  margin-top: auto;
  padding: 24px 3%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 18px;
}

.footer-identity,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.technical-credit {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-page {
  width: 95%;
  max-width: none;
  margin: 0 auto;
  padding: 55px 5px 80px;
}

.legal-header {
  margin-bottom: 45px;
  padding: 0 0 22px;
  border-bottom: 1px solid #fff;
}

.legal-header .overline {
  display: none;
}

.legal-header h1 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.legal-content {
  max-width: none;
  margin: 0;
}

.legal-content h2 {
  margin: 35px 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
}

@media (max-width: 767px) {
  body > main,
  .legal-page {
    width: 100%;
    padding-inline: 10px;
  }

  .gallery-section {
    padding-inline: 0;
  }

  .gallery-stage {
    height: calc(100svh - 20px);
    min-height: 360px;
  }

  .gallery-prev {
    left: 0;
  }

  .gallery-next {
    right: 0;
  }

  .biographies {
    margin-top: 55px;
    padding-top: 35px;
  }

  .biography figure,
  .biography:not(:first-of-type) figure {
    float: none;
    width: min(100%, 307px);
    margin: 0 auto 20px;
  }

  .biography p {
    text-align: left;
  }

  .columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #press .columns,
  #museums .columns {
    min-height: 0;
  }

  .contact-form input,
  .contact-form select {
    width: 100%;
  }

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

  .technical-credit {
    grid-column: 1;
  }
}

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