<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@font-face {
  font-family: "NHG";
  src: url("../type/NHaasGroteskDSPro-65Md.woff");
  font-style: normal;
}
* {
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: transparent;
}

::selection {
  color: white;
  background: transparent;
}

html {
  font-size: 0.7vw;
  --large: 4.6rem;
  --main: 2.4rem;
}
@media (max-width: 720px) {
  html {
    font-size: 6px;
    --large: 4rem;
    --main: 2.9rem;
  }
}

body {
  font-family: "NHG", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05rem;
  padding: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: oldstyle-nums;
  font-variant-ligatures: none;
}
@media (max-width: 720px) {
  body {
    line-height: 1.05;
  }
}

.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
}

h1, h2, p, a {
  font-size: var(--large);
  font-weight: normal;
  color: white;
}

header, footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.52em;
  z-index: 2;
  font-size: var(--large);
  color: white;
}
@media (max-width: 720px) {
  header, footer {
    padding: 0.8em;
  }
}

img, .img, .bg-img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
img.loaded, img.ready, .img.loaded, .img.ready, .bg-img.loaded, .bg-img.ready {
  opacity: 1;
}

footer {
  bottom: 0;
  top: unset;
}

[data-template=work] {
  background-color: black;
}
[data-template=work] .bg-img {
  opacity: 1;
}

.about {
  max-width: 45%;
  position: absolute;
}
@media (max-width: 720px) {
  .about {
    top: 6em;
    left: 1.5em;
    max-width: 100%;
  }
}
.about p + p {
  margin-top: 1em;
}

.details {
  position: absolute;
  left: calc(50% + 1em);
  max-width: 50%;
}
.details p + h1 {
  margin-top: 1em;
}
.details a {
  transition: opacity 0.35s ease-in-out;
}
.details a:hover {
  opacity: 0.5;
}

.images {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
}
.images figure {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
}
.images figure div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 720px) {
  .images figure div {
    margin: 1em;
  }
}
.images figure div.img {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 720px) {
  .images figure div.img {
    margin: 0 !important;
  }
}
.images figure div.portrait {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 720px) {
  .images figure div.portrait {
    background-size: cover;
  }
}
.images figure:hover {
  cursor: pointer;
}
.images figure.animate .img {
  transition: filter 1s ease-in;
}
.images figure:not(:first-of-type) {
  display: none;
}

.figure-no {
  position: fixed;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--large);
  color: white;
  font-variant-numeric: tabular-nums;
  pointer-events: auto;
  z-index: 2;
}
.figure-no .num {
  width: 1em;
}
@media (max-width: 720px) {
  .figure-no {
    bottom: 0.8em;
  }
}

em {
  font-style: normal;
}
em:before {
  content: "‘";
}
em:after {
  content: "’";
}

.text {
  position: absolute;
  top: 1.5em;
  left: 25%;
  max-width: 45%;
  z-index: 5;
}
@media (max-width: 720px) {
  .text {
    top: 7em;
    left: 2em;
    max-width: calc(100% - 4em);
  }
}
.text p + p {
  margin-top: 1em;
}
.text p + h1 {
  margin-top: 1em;
}
.text a {
  transition: opacity 0.35s ease-in-out;
}
.text a:hover {
  opacity: 0.5;
}

nav a {
  display: block;
  transition: opacity 0.35s ease-in-out;
}
nav a:hover {
  opacity: 0.5;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: none;
}
.overlay .statement {
  max-width: 40%;
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  z-index: 1;
}
@media (max-width: 720px) {
  .overlay .statement {
    max-width: 100%;
    top: 2em;
    left: 2em;
  }
}
.overlay .video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay .video-bg video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 720px) {
  .overlay .video-bg video {
    position: relative;
    width: 100%;
    min-width: 200vh;
    height: auto;
  }
}
.overlay footer {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.52em;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: var(--large);
}
@media (max-width: 720px) {
  .overlay footer {
    padding: 0.8em;
  }
}

.logo {
  position: fixed;
  top: 1.5em;
  right: 1.5em;
  z-index: 101;
  width: 4em;
}
@media (max-width: 720px) {
  .logo {
    width: 3.25em;
    top: 2.2em;
    right: 2em;
  }
}

a:hover {
  opacity: 0.75 !important;
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>