@font-face {
  font-family: "plain";
  src: url("/fonts/Plain/Plain-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "plain";
  src: url("/fonts/Plain/Plain-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "items";
  src: url("/fonts/Items Text/ItemsText-Regular.woff2") format("woff2"),
       url("/fonts/Items Text/ItemsText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "items";
  src: url("/fonts/Items Text/ItemsText-RegularItalic.woff2") format("woff2"),
       url("/fonts/Items Text/ItemsText-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "items";
  src: url("/fonts/Items Text/ItemsText-Bold.woff2") format("woff2"),
       url("/fonts/Items Text/ItemsText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "items";
  src: url("/fonts/Items Text/ItemsText-BoldItalic.woff2") format("woff2"),
       url("/fonts/Items Text/ItemsText-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "control-compressed";
  src: url("/fonts/NY Phil Custom/ControlCompressed-NYPhil.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --black: #000;
  --white: #fff;
  --magenta: #ea009e;
  --blue: #02c0ff;
  --green: #1de5cb;
  --gray-1: #f7f7f7;
  --gray-2: #f2f2f2;
  --gray-3: #e7e7e7;
  --gray-6: #565656;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--gray-2);
  color: var(--black);
  font: 400 16px/1.5 "plain", sans-serif;
}

a {
  color: inherit;
}

#container {
  min-height: 100vh;
}

.page-hero {
  background: var(--black);
  color: var(--white);
  border-bottom: 4px solid var(--magenta);
}

.page-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 18px 24px;
  align-items: start;
  position: relative;
}

.page-hero__lockup {
  display: block;
  margin-top: 0;
}

.page-hero__lockup img {
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
}

.page-hero__menu-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.page-hero__menu-toggle {
  width: 44px;
  height: 40px;
  border: 1px solid #3a3a3a;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.page-hero__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.page-hero__menu-toggle:hover,
.page-hero__menu-toggle:focus-visible {
  border-color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.page-hero__menu {
  margin-top: 8px;
  width: min(360px, calc(100vw - 40px));
  background: #111;
  border: 1px solid #3a3a3a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-left: auto;
}

.page-hero__menu a {
  display: block;
  color: #eaeaea;
  text-decoration: none;
  padding: 10px 12px;
  border-top: 1px solid #2a2a2a;
  font: 500 12px/1.35 "plain", sans-serif;
  letter-spacing: 0.03em;
}

.page-hero__menu a:first-child {
  border-top: 0;
}

.page-hero__menu a:hover,
.page-hero__menu a:focus-visible {
  color: var(--blue);
  background: #1a1a1a;
  outline: none;
}

.page-hero__intro {
  margin-top: -6px;
}

.page-hero__intro .kicker {
  margin: 0 0 8px;
  color: #d7d7d7;
  font: 500 12px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.page-hero__intro h1 {
  margin: 0 0 10px;
  font: 400 92px/0.92 "control-compressed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--magenta);
  padding-right: 64px;
}

.page-hero__intro h1 a {
  color: inherit;
  text-decoration: none;
}

.page-hero__intro p {
  margin: 0;
  max-width: 70ch;
}

.page-hero__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-hero__actions a {
  border: 1px solid #3a3a3a;
  color: var(--white);
  padding: 8px 10px;
  text-decoration: none;
  font: 500 12px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-hero__actions a:hover,
.page-hero__actions a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.page-hero__archiveit {
  grid-column: 1 / -1;
}

.page-hero__archiveit p {
  margin: 0;
  color: #d7d7d7;
}

.page-hero__archiveit a {
  color: var(--green);
}

#content .content-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 20px 42px;
}

.exhibit-filters {
  margin: 0 0 14px;
}

.exhibit-filters__label {
  margin: 0 0 6px;
  color: var(--gray-6);
  font: 500 11px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.exhibit-filters__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip {
  appearance: none;
  border: 1px solid var(--gray-3);
  background: var(--white);
  color: var(--black);
  padding: 6px 10px;
  font: 500 11px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.filter-chip.is-active {
  border-color: var(--magenta);
  background: #fff3fb;
  color: var(--magenta);
}

.filter-chip.tag-tone-magenta {
  border-color: #efb8dd;
  background: #fff3fb;
}

.filter-chip.tag-tone-blue {
  border-color: #b4e9fb;
  background: #f2fbff;
}

.filter-chip.tag-tone-green {
  border-color: #a8eadf;
  background: #effcf9;
}

.exhibit-header {
  margin: 0 0 12px;
}

.exhibit-header h2 {
  margin: 0 0 4px;
  font: 400 62px/0.95 "control-compressed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.exhibit-header p {
  margin: 0;
  color: var(--gray-6);
}

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

.exhibit-link a {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-3);
  text-decoration: none;
  padding: 12px;
  height: 100%;
}

.exhibit-link a:hover,
.exhibit-link a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.exhibit-link.is-hidden {
  display: none;
}

.exhibit-link a:hover .thumb img,
.exhibit-link a:focus-visible .thumb img {
  transform: scale(1.02);
}

.thumb {
  margin: 0 0 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--gray-1);
  overflow: hidden;
}

.thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.thumb--fixed {
  aspect-ratio: 566 / 314;
}

.thumb--fixed img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exhibit-link h3 {
  margin: 0 0 6px;
  font: 400 32px/1.02 "items", sans-serif;
  color: var(--black);
}

.exhibit-link p {
  margin: 0;
  color: var(--black);
}

.exhibit-link p + p {
  margin-top: 8px;
}

.exhibit-link .meta {
  color: #7a1459;
  font: 500 11px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid #efb8dd;
  background: #fff3fb;
}

.card-tags {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: none;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tags li {
  font: 500 10px/1 "plain", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--gray-3);
  background: var(--gray-1);
  padding: 5px 7px;
}

.card-tags li.tag-tone-magenta {
  border-color: #efb8dd;
  background: #fff3fb;
  color: #7a1459;
}

.card-tags li.tag-tone-blue {
  border-color: #b4e9fb;
  background: #f2fbff;
  color: #005a78;
}

.card-tags li.tag-tone-green {
  border-color: #a8eadf;
  background: #effcf9;
  color: #0b5f56;
}

hr {
  border: 0;
  border-top: 1px solid var(--gray-3);
  margin: 22px 0;
}

.site-footer {
  background: var(--black);
  color: #e8e8e8;
  border-top: 1px solid #2e2e2e;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 20px 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 20px;
  align-items: start;
}

.footer-brand {
  font: 500 14px/1.1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-disclaimer {
  margin: 0;
  max-width: 62ch;
  color: #c6c6c6;
}

.footer-contact-title {
  font: 500 12px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 0 0 10px;
}

.footer-contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact-item {
  min-width: 160px;
}

.footer-contact-label {
  font: 500 10px/1 "plain", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9f9f9f;
  margin-bottom: 6px;
}

.footer-contact-value {
  color: #dfdfdf;
  font-size: 14px;
  line-height: 1.4;
}

.footer-contact-value a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-value a:hover,
.footer-contact-value a:focus-visible {
  color: inherit;
  text-decoration: none;
}

.footer-address div {
  white-space: nowrap;
}

.footer-logos {
  justify-self: end;
}

.footer-funder-logo {
  width: 180px;
  height: auto;
  display: block;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: #c0c0c0;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--green);
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__lockup img {
    width: 360px;
  }

  .page-hero__intro h1 {
    font-size: 64px;
    padding-right: 56px;
  }

  .exhibit-header h2 {
    font-size: 44px;
  }

  .exhibit-links {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-logos {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .page-hero__inner,
  #content .content-wrap,
  .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-hero__inner {
    gap: 14px;
    padding-top: 12px;
  }

  .page-hero__lockup {
    padding-right: 56px;
  }

  .page-hero__lockup img {
    width: 240px;
    max-width: calc(100vw - 92px);
  }

  .page-hero__intro h1 {
    font-size: 46px;
  }

  .page-hero__menu-wrap {
    top: 12px;
    right: 12px;
  }

  .page-hero__menu {
    width: min(320px, calc(100vw - 24px));
  }

  .exhibit-header h2 {
    font-size: 34px;
  }

  .exhibit-link h3 {
    font-size: 24px;
  }

  .footer-contact-item {
    min-width: 0;
    width: 100%;
  }

}

@media (max-width: 420px) {
  .page-hero__lockup img {
    width: 210px;
    max-width: calc(100vw - 84px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thumb img {
    transition: none;
  }
}
