@charset "UTF-8";
@font-face {
  font-family: "Caslon";
  src: url("../fonts/CaslonIonic-Regular-Web.woff");
  font-style: normal;
}
@font-face {
  font-family: "Caslon";
  src: url("../fonts/CaslonIonic-RegularItalic-Web.woff");
  font-style: italic;
}
@font-face {
  font-family: "Canterbury";
  src: url("../fonts/Canterbury-Regular.woff");
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  text-decoration: none;
  color: black;
}

html {
  font-size: 0.525vw;
  --titles: 3.4rem;
  --main: 3.4rem;
  --mid: 2.2rem;
  --small: 1.6rem;
  --font: "Caslon", serif;
}
@media (max-width: 670px) {
  html {
    font-size: 6px;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 5px;
  }
}

body {
  appearance: none;
  font-size: 1.6rem;
  font-family: var(--font);
  letter-spacing: 0.05rem;
  line-height: 1.25;
  font-variant-numeric: oldstyle-nums;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
img.loaded {
  opacity: 1;
}

.footnotes {
  margin-top: 2em;
  margin-left: 35%;
}
.footnotes:before {
  content: "Notes:";
}
.footnotes hr {
  display: none;
}

.menu-close {
  display: none;
}

header {
  position: fixed;
  z-index: 100;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  padding: 1em;
  background: white;
  box-shadow: 0px 10px 12px 0px white;
}
@media (max-width: 414px) {
  header {
    padding-top: 1.5em;
  }
}
header nav {
  flex: 3;
  display: block;
  text-align: center;
  font-size: var(--main);
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 414px) {
  header nav {
    display: none;
    text-align: left !important;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 200;
    flex: none;
  }
  header nav:before {
    content: "Menu";
    display: block;
    font-size: var(--main);
  }
  header nav.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.7em 0.5em;
  }
  header nav.show .menu-close {
    position: absolute;
    top: 0.7em;
    right: 0.55em;
    z-index: 250;
    display: block;
  }
  header nav.show .menu-close:hover {
    opacity: 0.5;
    cursor: pointer;
  }
  header nav a {
    font-size: var(--main);
    display: inline-block;
    text-align: left;
  }
}
header span {
  flex: 1;
  text-align: right;
  font-size: var(--main);
}
header nav {
  text-align: center;
  font-size: var(--main);
  -webkit-font-smoothing: antialiased;
}
header nav a:hover {
  border-bottom: 1px solid;
}
@media (max-width: 414px) {
  header nav a:hover {
    border: none;
  }
}
header nav a:hover:after {
  border-bottom: 1px solid white;
}
header nav a:after {
  content: ", ";
}
header h1 {
  flex: 1;
  text-transform: uppercase;
}

p + p {
  text-indent: 4em;
}

em {
  font-style: italic;
}

main {
  margin: 4em 1em 1em;
  display: flex;
  flex-direction: row;
  padding-bottom: 1em;
}

dl dt {
  margin-bottom: 1em;
  max-width: 75%;
}
dl dd {
  margin-left: 25%;
  margin-bottom: 1em;
}

.exhibition-date {
  display: block;
  max-width: 80%;
}
.exhibition-year {
  display: block;
  margin-bottom: 1em;
}
.exhibition-artist {
  font-size: var(--main);
  max-width: 100%;
  display: block;
}
.exhibition-title {
  font-style: italic;
  font-size: var(--main);
  display: block;
}
.exhibition-title:before {
  content: "‘";
}
.exhibition-title:after {
  content: "’";
}
.exhibition-archive {
  width: calc(100% * 1 / 4);
  min-height: 320px;
  position: relative;
  padding-right: 1em;
}
@media (max-width: 414px) {
  .exhibition-archive {
    width: 100%;
    margin: 2em 0;
  }
}
.exhibition-archive figure {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  width: 70%;
}
@media (max-width: 414px) {
  .exhibition-archive figure {
    display: block;
    width: 80%;
    transform: none;
    margin: 0 auto;
    position: static;
    top: 0;
    left: 0;
  }
}
.exhibition-archive figure.portrait {
  width: 60%;
}
.exhibition-archive:hover figure {
  display: block;
}
.exhibition-archive a {
  display: block;
}
.exhibition-archive:last-of-type {
  margin-left: 12.5px;
}
.exhibition-archive-wrap {
  display: flex;
  flex-direction: row;
  justify-content: left;
  flex-wrap: wrap;
  padding-bottom: 15em;
}
.exhibition-archive-wrap:after {
  content: "";
  flex: auto;
}
.exhibition-text {
  max-width: 65%;
  margin: 0 auto;
  font-size: var(--main);
}
@media (max-width: 414px) {
  .exhibition-text {
    max-width: 100%;
  }
}
.exhibition-text p a {
  font-style: italic;
  border-bottom: 1px solid;
}
.exhibition-text figure {
  max-width: 85%;
  margin: 2em auto;
}
@media (max-width: 414px) {
  .exhibition-text figure {
    max-width: 95%;
  }
}
.exhibition-text figure:hover {
  cursor: pointer;
}
.exhibition-text figure figcaption {
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  padding-top: 1rem;
  font-size: var(--mid);
}
.exhibition-text figure img {
  width: 100%;
}
.exhibition-details {
  font-size: var(--main);
  max-width: 85%;
  margin: 2em auto;
  position: relative;
}
@media (max-width: 414px) {
  .exhibition-details {
    max-width: 100%;
    margin: 3em auto;
  }
}
.exhibition-details span {
  text-indent: 0;
  -webkit-font-smoothing: antialiased;
}
.exhibition-details span.year {
  text-indent: 1.5em;
}
.exhibition-details .img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.exhibition-details .next:hover .img, .exhibition-details .now:hover .img {
  display: block;
}
@media (max-width: 670px) {
  .exhibition-details .next {
    display: none;
  }
}
.exhibition-details .next .img {
  display: none;
}
.exhibition-details .hide .img {
  display: none;
}
.exhibition-images {
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: white;
  position: fixed;
  display: none;
  padding: 1em;
  z-index: 100;
}
.exhibition-images.open {
  display: flex;
}
.exhibition-images figure {
  max-width: 70vw;
  width: 100%;
  height: 95vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 414px) {
  .exhibition-images figure {
    max-width: 90vw;
  }
}
.exhibition-images figure:not(:first-of-type) {
  display: none;
}
.exhibition-images figure.portrait {
  position: relative;
}
.exhibition-images figure.portrait img {
  height: auto;
  max-height: 82.5vh;
}
.exhibition-images figure:hover {
  cursor: pointer;
}
.exhibition-images figure figcaption {
  font-size: var(--mid);
  line-height: 1.2;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  text-align: center;
  transform: translate(-50%);
  width: 100%;
  max-width: 380px;
}
.exhibition-images h1 {
  font-size: 2.8rem;
  text-align: center;
  display: block;
  padding: 0.5em 0;
}
.exhibition-images-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.exhibition-images-close {
  position: absolute;
  top: 1.25rem;
  right: 1em;
  width: 6rem;
  height: 6rem;
  z-index: 200;
}
.exhibition-images-close:hover {
  cursor: pointer;
  filter: blur(2px);
}

[data-template=home] {
  height: calc(100vh - 5em);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-template=home] .exhibition-details {
  position: absolute;
  left: 1.5rem;
  top: 2em;
  padding: 0;
  width: calc(100% - 1em);
  max-width: 25%;
}
@media (max-width: 414px) {
  [data-template=home] .exhibition-details {
    margin: 1em auto;
    max-width: 100%;
  }
}
[data-template=home] .exhibition-artist, [data-template=home] .exhibition-title, [data-template=home] .exhibition-date {
  text-align: left;
}
@media (max-width: 414px) {
  [data-template=home] .exhibition-artist, [data-template=home] .exhibition-title, [data-template=home] .exhibition-date {
    text-align: center;
  }
}
[data-template=home] .exhibition-date {
  max-width: 100%;
}
[data-template=home] .sc {
  display: block;
}
[data-template=home] figure {
  max-width: 72rem;
}
[data-template=home] figure.landscape {
  max-width: 92rem;
}
@media (max-width: 414px) {
  [data-template=home] figure:not(.landscape) {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 0;
  }
}
[data-template=home] figure img {
  max-height: 90vh;
  height: auto;
}

[data-template=exhibitions] {
  flex: none;
  flex-direction: column;
  max-width: 100%;
  position: relative;
  height: 100vh;
  overflow-y: auto;
  padding-top: 8em;
  margin-top: 0;
  margin-bottom: 0;
}
[data-template=exhibitions] .exhibition-details {
  position: relative;
  align-self: initial;
  top: 1rem;
  margin: 0;
  margin-bottom: 1em;
  width: auto;
  max-width: 100%;
}
@media (max-width: 414px) {
  [data-template=exhibitions] .exhibition-details {
    margin-top: 1em;
  }
}
[data-template=exhibitions] .exhibition-details .exhibition-artist {
  max-width: 100%;
}
[data-template=exhibitions] .exhibition-details span {
  display: block;
}
[data-template=exhibitions] .exhibition-details a {
  position: relative;
  z-index: 2;
}

[data-template=exhibitions] .exhibition-details:hover figure {
  display: block;
}

h2 {
  font-size: var(--main);
  text-align: center;
}
h2:first-of-type {
  margin-top: 2em;
}

sup {
  font-size: 1.6rem;
  line-height: 1;
}
sup:before {
  content: "(";
}
sup:after {
  content: ")";
}

.exhibition-date,
.exhibition-text p + p {
  text-indent: 2em;
}

.logos {
  max-width: 48rem;
}

.page-text {
  max-width: 65%;
  margin: 0 auto;
  font-size: var(--main);
  line-height: 1.2;
  padding-bottom: 4em;
}
@media (max-width: 414px) {
  .page-text {
    max-width: 100%;
  }
}
.page-text .logos {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}
.page-text .logos figure {
  max-width: 22rem;
  margin-top: 0;
}
.page-text .logos figure:last-of-type {
  max-width: 8.5rem;
  margin-left: 0.5em;
}
.page-text .logos figure img {
  max-height: 100%;
}
.page-text figure {
  margin-top: 1em;
}
@media (max-width: 414px) {
  .page-text figure {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 2em;
  }
}
.page-text div:not(:first-of-type) {
  margin-top: 1em;
}
.page-text div p + p {
  text-indent: 0;
}
.page-text div.gallery-details {
  column-count: 2;
  margin-top: 1em;
}
@media (max-width: 414px) {
  .page-text div.gallery-details {
    margin-top: 0.5em;
    margin-bottom: 2em;
  }
}
.page-text div.gallery-details ul {
  list-style: none;
}
@media (max-width: 414px) {
  .page-text div.gallery-details p {
    font-size: 2.3rem;
  }
}
.page-text div.gallery-details p + p {
  text-indent: 0;
}
.page-text div.gallery-details p a:hover {
  font-style: italic;
  border-bottom: 0 !important;
}

span.center {
  display: block;
  text-align: center;
}

.spaced {
  margin: 4em 0 !important;
}

hr {
  border: none;
  outline: none;
  background: white;
  height: 1em;
}

p a:hover {
  border-bottom: 1px solid;
}

[data-template=info], [data-template=proposals] {
  margin-top: 8em;
}
[data-template=info] figure, [data-template=proposals] figure {
  margin-bottom: 1em;
}

blockquote {
  margin: 1em 2em 1em 6em;
}

footer {
  position: fixed;
  bottom: 1em;
  left: 1em;
  right: 1em;
  width: calc(100vw - 2em);
  display: flex;
  flex-direction: row;
  z-index: 100;
}
footer .ack {
  position: absolute;
  right: 0.5em;
  bottom: 0.5em;
}
footer .ack a {
  font-size: var(--main);
}

address, .details {
  font-style: normal;
  line-height: 1.2;
  flex: 1;
}

address {
  display: flex;
  align-items: flex-end;
}

.details div {
  max-width: 160px;
  margin-left: auto;
}

.figure-no {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  font-size: var(--mid);
  line-height: 1.2;
}

.ante-trigger {
  position: fixed;
  left: 1.5rem;
  bottom: 1.35em;
  font-size: 5rem;
  font-family: "Canterbury";
  text-align: left;
  line-height: 0.8;
  margin-bottom: 0.25em;
}
.ante-trigger:hover {
  cursor: pointer;
  opacity: 0.25;
}
.ante-chamber {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 200;
  display: none;
}
.ante-chamber.open {
  display: block;
}
.ante-close {
  position: absolute;
  top: 1.25rem;
  right: 1em;
  width: 6rem;
  height: 6rem;
  z-index: 200;
}
.ante-close:hover {
  cursor: pointer;
  filter: blur(2px);
}

.menu-trigger {
  display: none;
}
@media (max-width: 414px) {
  .menu-trigger {
    display: block;
    position: fixed;
    top: 0.75em;
    right: 0.5em;
    height: 1em;
    width: 2em;
    background-color: #eee;
    border-radius: 0.5em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .menu-trigger:hover {
    background-color: #ccc;
  }
}

@media (max-width: 414px) {
  .shop {
    display: none;
  }
}

.cta-button {
  display: inline-block;
  padding: 0 0.65em 0.15em 0.65em;
  border: 1px solid;
  border-radius: 2em;
  margin-top: 1em;
  position: fixed;
  bottom: 0.6em;
  left: 0.5em;
}
.cta-button:hover {
  cursor: pointer;
  opacity: 0.25;
}

.artist-bio {
  margin-top: 4em;
  margin-left: 35%;
  line-height: 1.2;
  font-size: var(--mid);
}
@media (max-width: 414px) {
  .artist-bio {
    margin-left: 10%;
    padding-right: 1em;
  }
}
.artist-bio p + p {
  text-indent: 0 !important;
  margin-top: 1em;
}

.exhibition-details .artist-bio {
  margin: 0;
}

.artist-bio p + p {
  text-indent: 4em;
  /* margin-top: 1em; */
}

.view-toggle {
  display: block;
  margin-bottom: 1.2em;
  margin-left: 2em;
}

.view-toggle span:hover {
  border-bottom: 1px solid;
  cursor: pointer;
}

[data-template=exhibition] .exhibition-title, [data-template=exhibition] .exhibition-artist, [data-template=exhibition] .exhibition-date {
  font-size: var(--titles);
  text-align: center;
  max-width: none;
}
@media (max-width: 414px) {
  [data-template=exhibition] .exhibition-title, [data-template=exhibition] .exhibition-artist, [data-template=exhibition] .exhibition-date {
    font-size: var(--main);
  }
}
[data-template=exhibition] .exhibition-date {
  margin-top: 0.5em;
}
[data-template=exhibition] .exhibition-date:before {
  content: "(";
}
[data-template=exhibition] .exhibition-date:after {
  content: ")";
}

.num {
  display: block;
  text-align: center;
  margin: 0.5em 0;
}

.year-block {
  width: 100%;
  margin-bottom: 1em;
  text-align: center;
  display: block;
  font-size: var(--main);
}

[data-template=exhibitions] h1 {
  text-align: center;
  margin-right: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (max-width: 414px) {
  [data-template=exhibitions] .exhibition-details {
    max-width: 100%;
  }
}
[data-template=exhibitions] .exhibition-details br {
  display: none;
}
[data-template=exhibitions] .exhibition-archive {
  flex-direction: column;
}
@media (max-width: 414px) {
  [data-template=exhibitions] .exhibition-archive {
    min-height: 0 !important;
  }
}
[data-template=exhibitions] .exhibition-title, [data-template=exhibitions] .exhibition-artist, [data-template=exhibitions] .exhibition-date {
  text-align: left;
}
[data-template=exhibitions] .exhibition-year {
  display: none !important;
}

#subscribe {
  display: inline-block;
}
#subscribe input {
  outline: 0;
  border: none;
  font-family: var(--font);
  font-size: var(--main);
  width: 18rem;
  overflow: visible;
}
@media (max-width: 414px) {
  #subscribe input {
    font-size: var(--main);
    width: 100%;
  }
}
#subscribe input:-webkit-autofill, #subscribe input:focus:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px white inset;
}
#subscribe input:focus {
  width: auto;
}
#subscribe input::placeholder {
  color: black;
}
#subscribe input[type=submit] {
  display: none;
}
#subscribe #success-msg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5em 1em;
  background: white;
  border-radius: 1em;
  box-shadow: 10px 10px 13px 0px rgba(0, 0, 0, 0.25);
}

/*# sourceMappingURL=style.css.map */
