:root {
  --margin: 3vw;
  --gutter: 1vw;
  --unit: calc((100vw - var(--margin) * 2 - var(--gutter) * 3) / 4);
}

@font-face {
  font-family: "Larish";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/larish_neue_semibold.otf) format("opentype");
}
* {
  box-sizing: border-box;
}

html {
  font-size: 1.1vw;
  width: 100vw;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Larish";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

h1, h2, h3, h4 {
  font-weight: normal;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: inherit;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

a {
  color: inherit;
}

h1 {
  font-size: 3.1rem;
  text-transform: none;
  margin-top: -0.15em;
  letter-spacing: -0.02em;
  transition: font-size 0.3s;
  cursor: pointer;
}

header, footer {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 999;
  text-transform: uppercase;
}
header a, footer a {
  text-decoration: none;
}
header a:hover, footer a:hover {
  text-decoration: underline;
}
header.invert, footer.invert {
  color: white;
  -webkit-font-smoothing: subpixel-antialiased;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 3.5rem;
}
header div {
  width: 33%;
}
header div:nth-of-type(2) {
  text-align: right;
}

footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 3.5rem;
  align-items: flex-end;
  pointer-events: none;
}
footer a {
  pointer-events: auto;
}

main, #slider, .project, figure, .project img {
  width: 100%;
  height: 100%;
}

.slider {
  width: 100%;
}

.project img {
  object-fit: cover;
}
.project figure {
  display: flex;
  justify-content: center;
}
.project figcaption {
  position: absolute;
  margin: auto;
  bottom: 4.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.project figcaption p:nth-of-type(1) {
  margin-left: -3em;
}
.project figcaption p:nth-of-type(2) {
  padding-left: 5em;
  text-align: left;
}

#left, #right, #watch {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  font-size: 3.1rem;
}

.project[data-jq-clipthru=invert] figcaption {
  color: white;
}

.invert .cursor {
  color: white;
}

.archive-active header.invert, .archive-active footer.invert, .panset-active header.invert, .panset-active footer.invert {
  color: black;
}

#overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
}

.video-active #overlay {
  opacity: 1;
  pointer-events: auto;
  cursor: url("../img/close.svg"), auto;
}

#video {
  width: 64rem;
  height: 36rem;
}

#watch {
  line-height: 1;
  letter-spacing: -0.02em;
}
#watch span:nth-of-type(1) {
  margin-left: -0.5em;
  display: block;
}
#watch span:nth-of-type(1) {
  margin-right: 0.5em;
}

.invert button {
  color: white !important;
}

#imprint-container {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 6.75rem 3.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  line-height: 1.1;
}
#imprint-container > div {
  width: 48%;
}
#imprint-container p + p {
  margin-top: 0.8em;
}
#imprint-container a {
  text-decoration: none;
}
#imprint-container a:hover {
  text-decoration: underline;
}
#imprint-container a#disclaimer {
  text-decoration: underline;
}

#contact-container {
  position: absolute;
  background-image: url(../img/contact.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 3.5rem 3.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  color: white;
  display: flex;
  align-items: flex-end;
}
#contact-container ul {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  padding-left: 20rem;
  padding-right: 15.4rem;
  width: 100%;
}
#contact-container ul a {
  text-decoration: none;
}
#contact-container ul a:hover {
  text-decoration: underline;
}

.contact-active {
  color: white;
}
.contact-active #contact-container {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.contact-active .contact-link {
  font-size: 3.1rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.contact-active h1 {
  font-size: inherit;
  text-transform: uppercase;
}

#archive-container {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 7.5rem 5.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#archive-container h3 {
  display: inline-block;
  text-transform: uppercase;
}
#archive-container ul li {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
#archive-container ul li:hover .mark {
  background: black;
  color: white;
  box-shadow: 0.1em -0.1em 0 0.2em black;
}
#archive-container ul li:hover .tooltip {
  opacity: 1;
}

.mark {
  pointer-events: none;
}

.credits {
  display: inline-block;
}

.tooltip {
  position: absolute;
  width: 25em;
  height: auto;
  opacity: 0;
  padding-left: 0.9em;
  padding-top: 0.15em;
  z-index: 2;
  transform: translateZ(0);
  pointer-events: none;
}

.archive-link, .panset-link, .contact-link, .imprint-link {
  transition: all 0.3s;
}

#archive-container, #panset-container, #imprint-container {
  overflow: hidden;
}

.archive-active #archive-container {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.archive-active main {
  overflow-y: auto;
}
.archive-active .archive-link {
  font-size: 3.1rem;
  text-transform: none;
  letter-spacing: -0.02em;
}
.archive-active h1 {
  font-size: inherit;
  text-transform: uppercase;
}

.panset-link {
  cursor: pointer;
  white-space: nowrap;
}

#panset-container {
  font-size: 0.75rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 10rem 3.5rem 7.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-start;
}
#panset-container img {
  width: 20rem;
  height: auto;
  margin-right: 11rem;
}
#panset-container div {
  width: 36rem;
  line-height: 1.3;
}
#panset-container div p + p {
  margin-top: 1.3em;
}

.imprint-active #imprint-container {
  opacity: 1;
  pointer-events: auto;
  overflow: auto;
}
.imprint-active .imprint-link {
  font-size: 3.1rem;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1;
}
.imprint-active h1 {
  font-size: inherit;
  text-transform: uppercase;
}

.panset-active #panset-container {
  opacity: 1;
  pointer-events: auto;
  overflow: auto;
}
.panset-active .panset-link {
  font-size: 3.1rem;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1;
}
.panset-active h1 {
  font-size: inherit;
  text-transform: uppercase;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  background-color: transparent;
  color: black;
  border: 0;
  z-index: 2;
  cursor: none;
}

#trigger-video {
  position: absolute;
  top: 0;
  width: 50%;
  left: 25%;
  height: 100%;
  background-color: transparent;
  color: black;
  border: 0;
  z-index: 2;
  cursor: none;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.cursor {
  opacity: 0;
  pointer-events: none;
  transition: color 0.2s;
}

#trigger-video:hover ~ #watch {
  opacity: 1;
}

#prev:hover ~ #left {
  opacity: 1;
}

#next:hover ~ #right {
  opacity: 1;
}

@media screen and (min-aspect-ratio: 2000/1000) {
  html {
    font-size: 1vw;
  }
}
@media screen and (min-aspect-ratio: 800/1000) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.75rem 3.5rem;
  }

  #archive-container {
    font-size: 0.61rem;
  }
  #archive-container ul {
    height: 100%;
    columns: 6;
    column-fill: auto;
    column-gap: 3.5em;
  }
  #archive-container ul li {
    break-inside: avoid;
    cursor: pointer;
    position: relative;
  }

  .slick-arrow, #trigger-video {
    opacity: 0;
  }
}
@media screen and (max-aspect-ratio: 800/1000) {
  html {
    font-size: 2.17vw;
  }

  header, footer {
    padding: 1.5rem 1.5rem;
  }

  h1 {
    font-size: 2.6rem;
    white-space: nowrap;
  }

  #left, #right, #watch {
    display: none;
  }

  .slick-track article:nth-of-type(2) img {
    height: 110%;
  }

  #panset-container {
    font-size: 1rem;
    flex-direction: column;
    padding: 7.5rem 5.95rem;
  }
  #panset-container img {
    margin-bottom: 2rem;
    margin-top: 0.75rem;
    width: 18rem;
  }
  #panset-container > div {
    width: 100%;
  }

  #imprint-container {
    padding: 7.5rem 5.95rem;
  }

  #imprint-container > div {
    width: 100%;
  }

  .slick-arrow {
    font-size: 2.6rem;
    font-family: inherit;
    padding: 1.3rem;
    opacity: 1;
  }

  .slick-next {
    text-align: right;
  }

  .slick-prev {
    text-align: left;
  }

  #trigger-video {
    font-family: inherit;
    padding: 1.3rem;
    opacity: 1;
    font-size: 2.6rem;
    text-indent: 2em;
    margin-left: -0.5em;
    line-height: 0.95;
  }

  .archive-active {
    position: static;
  }
  .archive-active #overlay {
    z-index: 1;
  }
  .archive-active.video-active #overlay {
    z-index: 1000;
  }
  .archive-active main {
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-overflow-scrolling: touch;
  }
  .archive-active #archive-container {
    z-index: 33;
    -webkit-overflow-scrolling: touch;
    position: fixed;
  }
  .archive-active button {
    pointer-events: none;
  }
  .archive-active .archive-link {
    font-size: 2.6rem;
  }

  .panset-active .panset-link {
    font-size: 2.6rem;
  }

  .imprint-active .imprint-link {
    font-size: 2.6rem;
  }

  .contact-active .contact-link {
    font-size: 2.6rem;
  }

  #left, #right, #watch {
    font-size: 2.6rem;
  }

  #archive-container:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 4.75rem;
    width: 100%;
    background-color: white;
    z-index: 2;
  }
  #archive-container:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    height: 4.75rem;
    width: 100%;
    background-color: white;
    z-index: 2;
  }
  #archive-container h3:after {
    content: "\a";
    white-space: pre;
  }
  #archive-container .mark h3:last-of-type {
    display: inline;
  }
  #archive-container .credits:after {
    content: "\a";
    white-space: pre;
  }

  #contact-container {
    padding: 1.5rem;
  }
  #contact-container ul {
    padding-left: unset;
    flex-direction: column;
    padding-bottom: 7rem;
    padding-right: unset;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #contact-container ul li {
    padding-bottom: 0.75em;
  }
}

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