@charset "UTF-8";
@font-face {
  font-family: "Martina Plantijn Regular";
  src: url("../fonts/test-martina-plantijn-light.woff2");
}
html {
  margin: 0;
}
html ::-webkit-scrollbar {
  width: 4px;
}
html ::-webkit-scrollbar-track {
  background-color: white;
}
html ::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 2px;
}

.page {
  margin: 0;
}

.grid2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.largepad {
  padding: 2rem;
}

.border-l {
  border-left: 1px solid silver;
}

::-moz-selection {
  background-color: whitesmoke;
  color: black;
}

::selection {
  background-color: whitesmoke;
  color: black;
}

.button {
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  color: black;
  border-radius: 1rem;
  padding: 8px 4rem 12px;
  transition: 0.2s ease;
}

body {
  font-family: "Martina Plantijn Regular", sans-serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 200;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
}

p {
  max-width: 765px;
  margin: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}

button {
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  padding: 1rem 1rem;
  background-color: black;
  font-size: 1.2rem;
  border: none;
  color: whitesmoke;
  border-radius: 1rem;
  justify-self: flex-end;
}
button:hover {
  cursor: pointer;
}

video {
  max-width: 100%;
  max-height: 90vh;
}

.span-all {
  grid-column: 1/-1;
}

#page {
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
#page.is-exiting {
  transform: translateX(-100%);
}
#page.is-entering {
  transform: translateX(100%);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.loader.is-active {
  pointer-events: all;
  transform: translateX(0);
}
.loader.is-leaving {
  transform: translateX(-100%);
}
.loader.no-transition {
  transition: none;
}
.loader.no-transition .loader-text {
  transition: none;
}
.loader.is-active .loader-text {
  transform: translateX(0);
}
.loader.is-leaving .loader-text {
  transform: translateX(10%);
}
.loader .loader-text {
  margin: 0;
  font-size: clamp(2rem, 8vw, 5rem);
  background: linear-gradient(90deg, whitesmoke, #65a98f, whitesmoke, #65a98f, whitesmoke);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rs-gradient-shift 3s linear infinite;
  transform: translateX(-10%);
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes rs-gradient-shift {
  to {
    background-position: 300% center;
  }
}
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9000;
  padding: 1rem;
  display: grid;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .site-header {
    right: 0;
    left: unset;
    padding: 1rem 0.4rem;
  }
}
.site-header .site-title {
  font-family: "Martina Plantijn Regular";
  z-index: 0;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 0.2rem 2rem;
  border-radius: 1rem;
}
@media (max-width: 599px) {
  .site-header .site-title {
    padding: 0.2rem 0.5rem;
  }
}
.site-header .site-title {
  grid-column: span 3;
}
.site-header p {
  max-width: unset;
}
.site-header .button {
  flex: 5;
  font-size: 1rem;
  padding: 1rem 0;
  align-self: flex-end;
  color: inherit;
}
.site-header .main-navigation {
  padding: 0;
}
@media (max-width: 599px) {
  .site-header .main-navigation {
    display: none;
    border-bottom: none;
  }
}
.site-header .main-navigation.inview {
  display: block;
}
.site-header .main-navigation ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  position: relative;
}
@media (max-width: 599px) {
  .site-header .main-navigation ul {
    flex-flow: column;
  }
}
.site-header .main-navigation ul li {
  box-sizing: border-box;
  padding: 1rem 0;
  list-style: none;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  flex: 1;
  z-index: 8;
  text-transform: lowercase;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.site-header .main-navigation ul:hover > ul {
  left: 0;
  right: 0;
}
.site-header .main-navigation ul ul {
  position: absolute;
  box-shadow: none;
  margin: 2px 0;
  display: block;
  width: 100%;
}
@media (max-width: 599px) {
  .site-header .main-navigation ul ul {
    display: none;
  }
}
.site-header .main-navigation ul ul a {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}
.site-header .main-navigation ul ul li {
  font-size: 1rem;
  padding: 1rem;
  list-style: none;
  z-index: 1;
  text-align: left;
  position: relative;
  width: 100%;
}
.site-header .main-navigation ul ul li a {
  color: white;
  transition: 0.1s ease;
}
.site-header .main-navigation ul ul li a:hover {
  transform: scale(1.01) translateX(5px);
}
.site-header .main-navigation ul ul li:hover > ul {
  display: none;
  left: 0;
  right: 0;
}

.hero-grid {
  display: grid;
  top: 0;
  background-color: whitesmoke;
  min-height: 100vh;
}
@media (max-width: 599px) {
  .hero-grid {
    height: -moz-fit-content;
    height: fit-content;
    min-height: unset;
  }
}
.hero-grid video {
  max-width: calc(100vw - 2rem);
  display: block;
  padding: 0;
  position: sticky;
  top: 1rem;
  border-radius: 1rem;
  margin: 0;
}

.category-links {
  z-index: 9000;
  display: flex;
  position: sticky;
  font-size: 1rem;
  top: 1rem;
  right: 1rem;
  gap: 0.5rem;
  justify-content: flex-end;
  grid-column: 1/-1;
}
@media (max-width: 599px) {
  .category-links {
    position: sticky;
    bottom: 1rem;
    top: unset;
    right: 1rem;
  }
}
.category-links .category-link {
  border: 1px solid silver;
  color: black;
  background-color: white;
  padding: 0.2rem 0.5rem;
}
.category-links .category-link:hover {
  background-color: whitesmoke;
}
.category-links .category-link.active {
  background-color: #65a98f;
  color: white;
}
.category-links .category-link.is-hidden {
  display: none;
}
.category-links .clear {
  width: 2rem;
  height: 2rem;
  border-radius: 200%;
  display: grid;
  font-size: 1.2rem;
  background-color: silver;
  place-content: center;
}

.menu {
  background-color: white;
  position: fixed;
  z-index: 8000;
  left: -50vw;
  top: 0;
  bottom: 0;
  width: 50vw;
  display: flex;
  flex-flow: column;
  transition: 0.2s linear;
  z-index: 2;
}
@media (max-width: 599px) {
  .menu {
    width: 100vw;
    left: -100vw;
  }
}
.menu.active {
  left: 0;
}
.menu li {
  list-style: none;
  box-sizing: border-box;
  padding: 1rem 4rem;
  font-size: 1.4rem;
  border-bottom: 1px solid transparent;
}
@media (max-width: 599px) {
  .menu li {
    padding: 1rem;
  }
}
.menu li a {
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
  gap: 1rem;
}
.menu li a img {
  width: 40px;
  align-self: center;
  justify-self: flex-end;
  transition: 0.2s ease;
  opacity: 0;
}
.menu li:hover a img {
  opacity: 1;
  transform: translateX(20px);
}
.menu li::after {
  content: "";
  height: 20px;
  background-color: navy;
  width: 100px;
}
.menu .internal-nav {
  align-self: flex-start;
  padding: 1rem;
  margin: 1rem 0 5rem;
  position: relative;
  z-index: 12;
}
@media (max-width: 599px) {
  .menu .internal-nav {
    margin: 2rem 0 0;
    transform: scale(0.8);
    transform-origin: left;
  }
}
.menu .internal-nav .button {
  position: relative;
  overflow: hidden;
  height: 40px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-items: center;
}
.menu .internal-nav .button span {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0.2rem;
  transition: 0.2s ease;
}
.menu .internal-nav .button span:first-of-type {
  top: 0px;
}
.menu .internal-nav .button span:last-of-type {
  top: 50px;
}
.menu .internal-nav .button.open span:first-of-type {
  top: -50px;
}
.menu .internal-nav .button.open span:last-of-type {
  top: 0;
}
.menu .information {
  font-size: 1rem;
  position: absolute;
  width: 50vw;
  height: 100vh;
  left: -50vw;
  background-color: #f0f0f0;
  transition: 0.4s ease;
  z-index: 1;
}
@media (max-width: 599px) {
  .menu .information {
    width: 100vw;
    left: -100vw;
    top: 0;
  }
}
.menu .information .l,
.menu .information .r {
  padding: 8rem 4rem 0;
  display: flex;
  flex-flow: column;
}
@media (max-width: 599px) {
  .menu .information .l,
  .menu .information .r {
    padding: 8rem 1rem;
  }
}
.menu .information .l {
  background-color: #f0f0f0;
}
.menu .information.active {
  left: 0;
  bottom: 0;
  opacity: 1;
}

.site-main {
  min-height: 95vh;
  padding: 0;
  margin: 0;
  z-index: 1;
  left: 0;
  right: 0;
}
.site-main.home {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
}
@media (max-width: 599px) {
  .site-main.home {
    grid-template-columns: 1fr;
  }
}
.site-main.home .work-list {
  display: flex;
  flex-direction: column;
}
.site-main.home .work-list .button {
  position: sticky;
  right: 1rem;
  bottom: 2rem;
  align-self: flex-end;
  background-color: white;
  border: 1px solid #65a98f;
  border-radius: 0;
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.site-main .work-list {
  position: relative;
  background-color: white;
  padding: 1rem;
  z-index: 800;
  display: grid;
  gap: 1rem;
}
.site-main .work-list .work-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 599px) {
  .site-main .work-list .work-results {
    grid-template-columns: 1fr;
  }
}
.site-main .work-list .work-results.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}
.site-main .work-list:hover {
  z-index: 8001;
}
.site-main .work-list .button {
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 1200px) {
  .site-main .work-list .button {
    grid-column: 3/5;
  }
}
.site-main .work-list .work-holder {
  gap: 2rem;
  position: relative;
  transition: 0.4s ease;
}
@media (max-width: 599px) {
  .site-main .work-list .work-holder {
    gap: 1rem;
  }
}
.site-main .work-list .work-holder.web {
  align-items: center;
  justify-content: center;
}
.site-main .work-list .work-holder .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  grid-column: 1/-1;
  margin-top: 1rem;
  transition: 0.4s ease;
  transform: translateY(-1rem);
}
.site-main .work-list .work-holder .categories .category {
  border: 1px solid black;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
}
.site-main .work-list .work-holder figure {
  pointer-events: none;
  display: grid;
  place-content: center;
  margin: 0;
  z-index: -1000;
}
.site-main .work-list .work-holder figure img {
  width: auto;
  height: auto;
  max-width: 80vw;
  max-height: 40vh;
  height: auto;
  place-self: center;
  transition: 0.2s ease;
}
.site-main .work-list .work-holder h1 {
  font-size: 1.4rem;
}
.site-main .work-list .work-holder p {
  font-size: 2rem;
}
.site-main .work-list .work-holder a:hover {
  background-color: #bdbdbd;
}
.site-main .work-list .work-holder header {
  padding: 1rem;
  margin: 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  left: 0;
  right: 0;
  transition: 0.4s ease;
}
@media (max-width: 599px) {
  .site-main .work-list .work-holder header {
    gap: 1rem;
  }
}
@media (max-width: 599px) {
  .site-main .work-list .work-holder header * {
    font-size: 1rem !important;
    display: inline;
  }
}
.site-main .work-list .work-holder header h2 {
  font-size: 1.4rem;
  margin: 0;
  grid-column: 2;
}
.site-main .work-list .work-holder header .year {
  font-size: 1.2rem;
}
.site-main .work-list .work-holder header .desc {
  opacity: 0;
  font-size: 1.2rem;
  grid-column: 1/-1;
  transition: 0.3s ease;
}
.site-main .work-list .work-holder:hover img {
  transform: translateY(-20px);
}
.site-main .work-list .work-holder:hover header {
  transform: translateY(-20px);
}
.site-main .work-list .work-holder:hover header .desc {
  opacity: 1;
}
.site-main .work-list .work-holder:hover .categories {
  transform: translateY(1rem);
}
.site-main .work-list .work-holder.blur {
  opacity: 0.6;
  filter: blur(0.2rem);
  z-index: -1;
}
.site-main .work-list .work-holder.light-blur {
  opacity: 0.8;
  border-bottom: none;
  filter: blur(1px);
  z-index: -1;
}
.site-main .about {
  height: 100%;
  top: 0;
  background: #65a98f;
  padding: 2rem;
  grid-row: 1/-1;
}
@media (max-width: 599px) {
  .site-main .about {
    padding: 1rem;
    height: -moz-fit-content;
    height: fit-content;
    min-height: unset;
    background: #65a98f;
  }
}
.site-main .about p {
  color: white;
  font-size: clamp(1rem, 4vw, 2rem);
  max-width: 40ch;
  margin: 0;
  padding: 0;
}
.site-main .inner {
  display: grid;
  grid-template-columns: 1fr;
  flex-direction: column;
  position: sticky;
  top: 2rem;
  height: calc(100vh - 4rem);
}
@media (max-width: 599px) {
  .site-main .inner {
    top: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.site-main .inner .button {
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 0;
  background-color: #65a98f;
  border: 1px solid white;
  color: white;
  margin-top: 3rem;
  display: block;
  place-self: end;
}
.site-main .r section {
  background-color: white;
  box-sizing: border-box;
  min-height: 100vh;
  position: sticky;
  top: 0;
  padding: 2rem 3rem;
}
.site-main .r section:nth-of-type(odd) {
  background-color: whitesmoke;
}
.site-main .r section .image {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  z-index: 50;
  display: flex;
  text-align: center;
}
.site-main .r section .image img {
  mix-blend-mode: multiply;
  align-self: center;
  justify-self: center;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-main.fade {
  opacity: 0.4;
  transform: translateX(50vw);
  right: 0;
  position: absolute;
}
.site-main.slide-out {
  opacity: 0;
}

.work-header {
  grid-column: 1/-1;
  font-size: 1rem;
  padding: 1rem;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  z-index: 8000;
}

.entry-header {
  color: black;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 0.2rem 2rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1rem;
  position: sticky;
  margin-bottom: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 8000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 599px) {
  .entry-header {
    font-size: 1rem;
    align-items: flex-start;
  }
}
.entry-header h1,
.entry-header p {
  font-size: 1.2rem;
}
@media (max-width: 599px) {
  .entry-header h1,
  .entry-header p {
    font-size: 1rem;
  }
}
.entry-header h1 {
  margin: 0;
}
.entry-header p {
  margin: 0;
}
.entry-header p + p {
  text-indent: 0;
}

.entry-content {
  margin: auto;
  min-height: 85vh;
  flex: 4;
}

.images {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.images:focus {
  outline: none;
}
.images .image {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-content: center;
  justify-content: center;
}
.images .image img {
  height: auto;
  align-self: center;
  justify-self: center;
}
.images .image .caption {
  margin-top: 1rem;
}
.images button {
  background-color: transparent;
  border: none;
  position: absolute;
  bottom: 0;
}
.images button svg {
  display: none;
}
.images button.previous {
  right: 80px;
}
.images button.previous:after {
  content: "<——";
}
.images button.next {
  right: 0;
}
.images button.next:after {
  content: "——>";
}

.single-image,
.post-thumbnail {
  position: sticky;
  padding: 0.5rem;
  align-self: center;
  justify-self: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 599px) {
  .single-image,
  .post-thumbnail {
    position: relative;
    padding: 0;
    top: 0;
    width: 100%;
    height: auto;
  }
}

.wp-block-image,
.wp-block-video {
  display: flex;
  padding: 0.5rem;
  margin: 0;
}
@media (max-width: 599px) {
  .wp-block-image,
  .wp-block-video {
    padding: 0;
  }
}
.wp-block-image img,
.wp-block-image video,
.wp-block-video img,
.wp-block-video video {
  width: auto;
  max-height: 90vh;
}
@media (max-width: 599px) {
  .wp-block-image img,
  .wp-block-image video,
  .wp-block-video img,
  .wp-block-video video {
    margin: 8rem 0 0;
  }
}
.wp-block-image.light-bg,
.wp-block-video.light-bg {
  background-color: #f0f0f0;
}
.wp-block-image.full-bleed img,
.wp-block-image.full-bleed video,
.wp-block-video.full-bleed img,
.wp-block-video.full-bleed video {
  max-width: 100%;
  margin: 0;
}
.wp-block-image.right-align img,
.wp-block-image.right-align video,
.wp-block-video.right-align img,
.wp-block-video.right-align video {
  margin-right: 0;
}
.wp-block-image.left-align img,
.wp-block-image.left-align video,
.wp-block-video.left-align img,
.wp-block-video.left-align video {
  margin-left: 0;
}

.big-video video {
  width: 100%;
  height: auto;
}

.big-text {
  min-height: 60vh;
  display: flex;
  flex-flow: column;
}
.big-text p {
  max-width: 765px;
}
@media (max-width: 599px) {
  .big-text p {
    margin: 0;
  }
}

.post-navigation {
  align-self: flex-end;
  justify-self: flex-end;
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  border-top: 1px solid silver;
  position: fixed;
  bottom: -5rem;
  left: 0;
  right: 0;
  z-index: 8000;
  transition: 0.4s ease;
}
.post-navigation.show {
  bottom: 0;
  transition: 0.4s ease;
}

.wp-block-columns {
  margin: 0;
  min-height: 100vh;
  position: sticky;
  top: 0;
  width: 100vw;
  background-color: white;
  color: black;
  padding: 2rem;
}
@media (max-width: 599px) {
  .wp-block-columns {
    position: relative;
    min-height: unset;
    padding: 1rem;
  }
}
.wp-block-columns p {
  z-index: 10000;
}
.wp-block-columns.pad-l {
  padding: 0 4rem;
}
.wp-block-columns.half-height {
  min-height: 50vh;
}

.wp-block-column {
  margin-left: 0;
  padding: 2rem 0;
  align-content: center;
  justify-content: center;
}
.wp-block-column img {
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .wp-block-column {
    padding: 0;
  }
}

.wp-block-media-text {
  padding: 0.4rem;
}

.wp-block-separator {
  background-color: black;
  border: none;
  margin: 0 0.5rem;
}

figure figcaption {
  font-size: 1rem;
  color: #666666;
}

.has-black-background-color figure figcaption {
  color: white;
}

.site-footer {
  padding: 4rem 1rem;
  display: grid;
  row-gap: 1rem;
  font-size: 1.2rem;
  grid-template-columns: 1fr 1fr;
  color: black;
}
.site-footer .footer-title {
  font-size: 1.4rem;
  grid-column: 1/-1;
}
@media (min-width: 1200px) {
  .site-footer .footer-title {
    grid-column: 1;
  }
}
.site-footer p + p {
  text-indent: unset;
}
.site-footer ul {
  align-self: flex-end;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer h2 {
  font-size: 1.2rem;
}
.site-footer .footer {
  margin-right: 2rem;
  display: inline-block;
}
@media (min-width: 1200px) {
  .site-footer {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.single-work-archive {
  transition: 0.1s ease;
}
.single-work-archive figure {
  max-width: 100px;
  margin: 1rem 0 0;
}
.single-work-archive h1,
.single-work-archive p {
  font-size: 1.2rem;
}

.margin-t {
  margin-top: 4rem;
}

.wp-block-cover {
  width: 100vw;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.type-page .entry-header {
  display: none;
}
.type-page .entry-content {
  padding: 10rem 0 0;
}
.type-page .wp-block-columns {
  padding: 2rem;
  min-height: unset;
  position: relative;
}
.type-page p + p {
  text-indent: 0;
  margin-top: 1rem;
}

.image-flex {
  background-color: whitesmoke;
  padding: 6dvh 10dvh;
  gap: 1rem;
  justify-content: center;
}
.image-flex img {
  max-width: 20dvw;
  height: auto;
}
.image-flex .year {
  position: sticky;
  top: 6dvh;
  width: 100% !important;
  max-width: unset;
  margin-bottom: -1rem;
}
.image-flex .year-holder {
  border-top: 1px solid black;
}
.image-flex .year-flex {
  position: relative;
  width: 100%;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.aligncenter {
  text-align: center;
  justify-content: center;
  align-items: center;
  align-self: center;
  justify-self: center;
}/*# sourceMappingURL=style.css.map */