@font-face {
  font-family: "Public Sans";
  src: url("/media/font-public-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --green: rgb(0 255 66 / 100%);
  --charcoal: #45464a;
  --paper: #fafafa;
  --footer: #a6adb0;
  --gutter: 2vw;
  --small-text: clamp(12px, 0.93vw, 14px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: #000;
  font-family: "Public Sans", Arial, sans-serif;
  font-size: var(--small-text);
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
}

main,
button,
input,
textarea,
select {
  font-family: "Public Sans", Arial, sans-serif;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 16px;
  padding: 9px 12px;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  top: 10px;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: calc(20px + 0.6vw);
  padding: 0.3vw var(--gutter);
  background: var(--green);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #000;
  pointer-events: none;
}

.site-title {
  justify-self: start;
}

.site-navigation {
  position: static;
  display: flex;
  gap: 1.7vw;
  margin-left: 9vw;
}

.site-navigation a {
  display: flex;
  align-items: center;
  padding: 0.1em 0;
}

.site-header a:hover,
.site-header a:focus-visible,
.site-navigation a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.7vw;
  margin-left: auto;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.social-links svg {
  display: block;
  width: 17px;
  height: 17px;
  overflow: visible;
}

.menu-button,
.mobile-menu {
  display: none;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: calc(8.125vw + 23px);
  padding: 50px var(--gutter) 0;
  background: var(--footer);
}

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

/* Homepage */

.home-page {
  background: var(--charcoal);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 45.9375vw;
  padding-top: 52px;
  background: #b8bec0 url("/media/hero-background.jpg") center / cover no-repeat;
}

.hero-player {
  width: 40vw;
  aspect-ratio: 16 / 9;
  background: #000;
}

.hero-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-gallery {
  display: grid;
  gap: 0.65vw;
  padding: 2vw;
  background: var(--charcoal);
}

.home-row {
  display: grid;
  gap: 0.65vw;
}

.home-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-row-1 {
  grid-template-columns: 1fr 1.02fr 1.02fr;
  height: 21.17vw;
}

.home-row-2 {
  grid-template-columns: 1fr 1.025fr 1fr;
  height: 20.86vw;
}

.home-row-3 {
  grid-template-columns: 0.53fr 1fr 1fr;
  height: 24.92vw;
}

.home-row-4 {
  grid-template-columns: 1.09fr 1fr 1.09fr;
  height: 21.64vw;
}

.home-row-5 {
  grid-template-columns: 0.95fr 1fr;
  height: 32.66vw;
}

.home-credits {
  display: flex;
  justify-content: flex-end;
  height: 104px;
  padding: 5px var(--gutter) 0;
  background: var(--charcoal);
}

.home-credits > div {
  width: 23.4vw;
}

.home-credits p {
  margin: 0 0 3px;
}

/* Works */

.works-page {
  min-height: calc(100vh - 17.64vh);
  padding: 156px var(--gutter) 128px;
  background: var(--charcoal);
  color: #fff;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 29px 73px;
}

.work-card {
  display: flex;
  flex-direction: column;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 180ms ease;
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: brightness(0.76);
}

.work-card h2 {
  margin: 2px 0 6px;
  font-size: 11.9px;
  font-weight: 400;
  line-height: 0.9;
}

/* About */

.about-page {
  position: relative;
  min-height: 625px;
}

.about-portrait {
  position: absolute;
  top: 145px;
  left: 20.47vw;
  width: 22.66vw;
  height: auto;
}

.about-copy {
  width: 43.5vw;
  margin-left: 50.4vw;
  padding-top: 220px;
  font-size: 11.9px;
  line-height: 1.1;
}

.about-copy p {
  margin: 0 0 17px;
}

/* Project pages */

.project-page {
  min-height: 100vh;
  background: var(--paper);
}

.project-intro h1 {
  margin: 0 0 18px;
  font-size: 13.6px;
  font-weight: 400;
  line-height: 1.1;
}

.project-details,
.project-note,
.project-credit,
.project-nav {
  font-size: 11.9px;
  line-height: 1.1;
}

.project-details p,
.project-note p {
  margin: 0 0 16.9px;
}

.project-credit p {
  margin: 0;
}

.project-details .space,
.project-note .space {
  height: 31px;
}

.project-credit {
  line-height: 1.15;
}

.project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
}

.project-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: clamp(10px, 1.2vw, 18px);
}

.project-nav-next {
  margin-left: auto;
  text-align: right;
}

.project-nav-arrow {
  flex: none;
  display: block;
  width: 11px;
  height: 11px;
  font-size: 0;
}

.project-nav-arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.project-nav-prev .project-nav-arrow::before {
  transform: rotate(-135deg);
}

.project-nav-next .project-nav-arrow::before {
  transform: rotate(45deg);
}

.project-nav a:hover,
.project-nav a:focus-visible {
  text-decoration: underline;
}

.project-nav .empty {
  min-height: 1px;
}

/* Nacre */

.nacre .project-intro {
  min-height: 524px;
  width: 35.5vw;
  margin-left: 54.45vw;
  padding-top: 78px;
}

.nacre .project-intro h1 {
  margin-bottom: 22px;
}

.nacre .project-details .space:first-of-type {
  height: 0;
}

.nacre-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  padding: 0 var(--gutter);
}

.nacre-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.nacre-gallery .nacre-last-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.875fr 1fr;
  gap: 11px;
  height: 30.47vw;
}

.nacre-gallery .nacre-last-row img {
  height: 100%;
}

.nacre-gallery .nacre-last-row img:first-child,
.nacre-gallery .nacre-last-row img:last-child {
  aspect-ratio: auto;
}

.nacre-meta {
  display: flex;
  align-items: flex-start;
  margin: 27px var(--gutter) 0;
}

.nacre-meta img {
  width: 15.31vw;
  height: auto;
}

.nacre-meta .project-credit {
  width: 31.4vw;
  margin-left: auto;
}

.nacre .project-nav {
  margin-top: 50px;
  padding-bottom: 39px;
}

/* angels' mumble */

.angels .project-intro {
  min-height: 267px;
  width: 46.5vw;
  margin-left: 50.5vw;
  padding-top: 66px;
}

.angels .project-intro h1 {
  margin-bottom: 49px;
}

.angels-opening {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0 9px;
}

.angels-opening img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.angels-note {
  min-height: 266px;
  width: 43vw;
  padding: 22px 0 0 6vw;
}

.angels-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 0 9px;
}

.angels-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.angels-column img {
  width: 100%;
  height: auto;
}

.angels-credit {
  width: 31.4vw;
  margin: 0 2vw 0 auto;
  padding-top: 2px;
}

.angels .project-nav {
  margin-top: 54px;
  padding-bottom: 38px;
}

/* SKYE ZONE Burial */

.skye .project-intro {
  min-height: 354px;
  width: 32vw;
  margin-left: 50vw;
  padding-top: 54px;
}

.skye .project-intro h1 {
  margin-bottom: 49px;
}

.skye-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.skye-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.skye-credit {
  width: 31.4vw;
  margin: 26px 2vw 0 auto;
  font-size: 13.6px;
}

.skye .project-nav {
  margin-top: 101px;
  padding-bottom: 39px;
}

/* Haku */

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

.haku-opening {
  padding-top: 28px;
}

.haku-opening img,
.haku-gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.haku .project-intro {
  min-height: 286px;
  width: 35.5vw;
  margin-left: 50.5vw;
  padding-top: 38px;
}

.haku-credit {
  width: 31.4vw;
  margin: 38px 2vw 0 auto;
}

.haku .project-nav {
  margin-top: 91px;
  padding-bottom: 38px;
}

/* Erase Your Name */

.erase-collage {
  position: relative;
  height: 950px;
}

.erase-collage > img {
  position: absolute;
  height: auto;
}

.erase-collage > img:nth-of-type(1) {
  top: 150px;
  left: 6.72vw;
  width: 30vw;
}

.erase-collage > img:nth-of-type(2) {
  top: 460px;
  left: 10.08vw;
  width: 27.42vw;
}

.erase-collage > img:nth-of-type(3) {
  top: 262px;
  left: 38.36vw;
  width: 29.38vw;
}

.erase-collage > img:nth-of-type(4) {
  top: 561px;
  left: 46.41vw;
  width: 23.36vw;
}

.erase-collage > img:nth-of-type(5) {
  top: 194px;
  left: 70.63vw;
  width: 23.36vw;
}

.erase .project-intro {
  position: absolute;
  top: 599px;
  left: 74.61vw;
  width: 19.3vw;
}

.erase .project-intro h1 {
  margin-bottom: 48px;
}

.erase .project-details .space {
  height: 0;
}

.erase-credit {
  width: 31.4vw;
  margin: 23px 2vw 0 auto;
}

.erase .project-nav {
  margin-top: 136px;
  padding-bottom: 38px;
}

/* Progressive enhancement: content is always visible without JavaScript. */

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 700px) {
  :root {
    --gutter: 6vw;
    --small-text: 13px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 45px;
    padding: 0 var(--gutter);
    font-size: 0.8rem;
  }

  .site-navigation,
  .social-links {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 50px;
    height: 37px;
    margin-right: -3px;
    padding: 11px 3px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 24px;
    height: 1px;
    margin-left: auto;
    background: #000;
    transition: transform 180ms ease;
  }

  .menu-button span:nth-child(2) {
    display: none;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 19;
    inset: 45px 0 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 42px var(--gutter);
    background: var(--green);
    font-size: 24px;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-footer {
    min-height: 10vh;
    padding: 12px var(--gutter) 0;
    font-size: 14px;
  }

  .hero {
    height: 87.31vw;
    padding-top: 46px;
  }

  .hero-player {
    width: 88vw;
  }

  .home-gallery {
    display: grid;
    gap: 8px;
    padding: var(--gutter);
    padding-bottom: calc(var(--gutter) + 2px);
  }

  .home-row {
    display: contents;
  }

  .home-row img {
    width: 100%;
    height: auto;
  }

  .home-credits {
    display: block;
    height: 61px;
    padding: 0 var(--gutter);
  }

  .home-credits > div {
    width: auto;
  }

  .works-page {
    min-height: 0;
    padding: 84px var(--gutter) 39px;
  }

  .works-grid {
    display: block;
  }

  .work-card {
    margin-bottom: 30px;
  }

  .work-card:last-child {
    margin-bottom: 0;
  }

  .work-card img {
    aspect-ratio: 16 / 9;
  }

  .work-card h2 {
    margin: 2px 0 6.5px;
    font-size: 13px;
    line-height: 0.9;
  }

  .about-page {
    min-height: calc(100vh - 10vh);
    padding-top: 73px;
  }

  .about-portrait {
    position: static;
    width: 40.77vw;
    margin: 0 auto;
  }

  .about-copy {
    width: calc(100% - 46px);
    margin: 11px auto 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.1;
  }

  .about-copy p {
    margin-bottom: 16px;
  }

  .about-copy p:last-child {
    margin-bottom: 0;
  }

  .project-page {
    min-height: calc(100vh - 10vh);
  }

  .project-intro h1 {
    margin-bottom: 17px;
    font-size: 14px;
  }

  .project-details,
  .project-note,
  .project-credit {
    font-size: 13px;
    line-height: 1.1;
  }

  .project-details p,
  .project-note p {
    margin-bottom: 16px;
  }

  .project-details .space,
  .project-note .space {
    height: 30px;
  }

  .project-nav {
    padding: 0 var(--gutter);
  }

  .nacre .project-intro {
    min-height: 715px;
    width: 255px;
    margin-left: var(--gutter);
    padding-top: 158px;
  }

  .nacre-gallery {
    display: block;
    padding: 0 var(--gutter);
  }

  .nacre-gallery > img,
  .nacre-gallery .nacre-last-row img {
    width: 100%;
    height: auto;
    margin-bottom: 11px;
    aspect-ratio: auto;
  }

  .nacre-gallery .nacre-last-row {
    display: block;
    height: auto;
  }

  .nacre-gallery .nacre-last-row img:last-child {
    margin-bottom: 0;
  }

  .nacre .project-intro h1 {
    margin-bottom: 20px;
  }

  .nacre-meta {
    display: block;
    margin: 78px var(--gutter) 0;
  }

  .nacre-meta img {
    width: 100%;
  }

  .nacre-meta .project-credit {
    width: auto;
    margin: 64px 0 0;
  }

  .nacre .project-nav {
    margin-top: 58px;
    padding-bottom: 12px;
  }

  .angels .project-intro {
    min-height: 260px;
    width: auto;
    margin: 0 var(--gutter);
    padding-top: 46px;
  }

  .angels .project-intro h1 {
    margin-bottom: 47px;
  }

  .angels-opening {
    gap: 2px;
    padding: 0 3px;
  }

  .angels-opening img {
    height: 32.82vw;
  }

  .angels-note {
    min-height: 249px;
    width: auto;
    padding: 0 var(--gutter);
  }

  .angels-gallery {
    gap: 2px;
    padding: 0 3px;
  }

  .angels-column {
    gap: 2px;
  }

  .angels-credit {
    width: auto;
    margin: 0 var(--gutter);
    padding-top: 1px;
  }

  .angels .project-nav {
    margin-top: 58px;
    padding-bottom: 11px;
  }

  .skye .project-intro {
    min-height: 319px;
    width: auto;
    margin: 0 var(--gutter);
    padding-top: 45px;
  }

  .skye .project-intro h1 {
    margin-bottom: 48px;
  }

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

  .skye-gallery img {
    height: 33.55vw;
  }

  .skye-credit {
    width: auto;
    margin: 0 var(--gutter);
    padding-top: 1px;
    font-size: 13.6px;
  }

  .skye .project-nav {
    margin-top: 57px;
    padding-bottom: 70px;
  }

  .haku-opening {
    padding-top: 45px;
  }

  .haku .project-intro {
    min-height: 353px;
    width: auto;
    margin: 0 var(--gutter);
    padding-top: 141px;
  }

  .haku .project-intro h1 {
    margin-bottom: 16px;
  }

  .haku-credit {
    width: auto;
    margin: 0 var(--gutter);
    padding-top: 1px;
  }

  .haku .project-nav {
    margin-top: 57px;
    padding-bottom: 12px;
  }

  .erase-collage {
    height: auto;
    padding: 101px 0 0;
  }

  .erase-collage > img {
    position: static;
    height: 199px;
    margin-bottom: 11px;
    object-fit: cover;
  }

  .erase-collage > img:nth-of-type(1) {
    width: 304px !important;
    margin-left: 43px;
  }

  .erase-collage > img:nth-of-type(2) {
    width: 306px !important;
    margin-left: 42px;
  }

  .erase-collage > img:nth-of-type(3) {
    width: 298px !important;
    margin-left: 23px;
  }

  .erase-collage > img:nth-of-type(4),
  .erase-collage > img:nth-of-type(5) {
    width: 298px !important;
    margin-left: 46px;
  }

  .erase .project-intro {
    position: static;
    width: calc(100% - 12vw);
    margin: 0 var(--gutter);
    padding-top: 0;
  }

  .erase .project-intro h1 {
    margin-bottom: 47px;
  }

  .erase-credit {
    width: auto;
    margin: 11px var(--gutter) 0;
  }

  .erase .project-details p:last-child {
    margin-bottom: 0;
  }

  .erase .project-nav {
    margin-top: 112px;
    padding-bottom: 12px;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  :root {
    --gutter: 2vw;
    --small-text: 11.2px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 52px;
    padding: 0 6vw;
    font-size: 0.8rem;
  }

  .site-navigation,
  .social-links {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 50px;
    height: 40px;
    margin-right: -3px;
    padding: 12px 3px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 34px;
    height: 1px;
    margin-left: auto;
    background: #000;
  }

  .menu-button span:nth-child(2) {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    z-index: 19;
    inset: 52px 0 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 42px 6vw;
    background: var(--green);
    font-size: 24px;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .site-footer {
    min-height: 10vh;
    padding: 15px 6vw 0;
    font-size: 14px;
  }

  .hero {
    height: 405px;
    padding-top: 68px;
  }

  .home-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px;
  }

  .home-row {
    display: contents;
  }

  .home-row img {
    flex: none;
    object-fit: cover;
  }

  .home-image-1 {
    width: 48.8% !important;
    height: 245px !important;
  }

  .home-image-2 {
    width: calc(51.2% - 8px) !important;
    height: 245px !important;
  }

  .home-image-3,
  .home-image-4 {
    width: calc(50% - 4px) !important;
    height: 243px !important;
  }

  .home-image-5 {
    width: 50.1% !important;
    height: 240px !important;
  }

  .home-image-6 {
    width: calc(49.9% - 8px) !important;
    height: 240px !important;
  }

  .home-image-7 {
    width: 34.4% !important;
    height: 317px !important;
  }

  .home-image-8 {
    width: calc(65.6% - 8px) !important;
    height: 317px !important;
  }

  .home-image-9,
  .home-image-10 {
    width: calc(50% - 4px) !important;
    height: 243px !important;
  }

  .home-image-11 {
    width: 47.3% !important;
    height: 254px !important;
  }

  .home-image-12 {
    width: calc(52.7% - 8px) !important;
    height: 254px !important;
  }

  .home-image-13 {
    width: 48.1% !important;
    height: 250px !important;
  }

  .home-image-14 {
    width: calc(51.9% - 8px) !important;
    height: 250px !important;
  }

  .home-credits {
    height: 95px;
    padding: 6px 15px 0;
  }

  .home-credits > div {
    width: 48%;
  }

  .works-page {
    min-height: 1076px;
    padding: 129px 2vw 0;
  }

  .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 29px 73px;
  }

  .about-portrait {
    top: 162px;
    left: 18.23vw;
    width: 26.95vw;
  }

  .about-copy {
    width: 43.23vw;
    margin-left: 50.65vw;
    padding-top: 194px;
    font-size: 11.2px;
    line-height: 1.1;
  }

  .about-copy p {
    margin-bottom: 16px;
  }

  .about-page {
    min-height: 922px;
  }

  .project-page {
    min-height: calc(100vh - 10vh);
  }

  .project-intro h1 {
    font-size: 12.8px;
  }

  .project-details,
  .project-note,
  .project-credit,
  .project-nav {
    font-size: 11.2px;
    line-height: 1.1;
  }

  .project-details p,
  .project-note p {
    margin-bottom: 16px;
  }

  .project-details .space,
  .project-note .space {
    height: 28px;
  }

  .project-nav {
    padding-right: 2vw;
    padding-left: 2vw;
  }

  .nacre .project-intro {
    min-height: 515px;
    width: 35.2vw;
    margin-left: 54.82vw;
    padding-top: 89px;
  }

  .nacre .project-intro h1 {
    margin-bottom: 13px;
  }

  .nacre-gallery {
    display: block;
    padding: 0 2vw;
  }

  .nacre-gallery > img,
  .nacre-gallery .nacre-last-row img {
    width: 100%;
    height: auto;
    margin-bottom: 11px;
    aspect-ratio: auto;
  }

  .nacre-gallery .nacre-last-row {
    display: block;
    height: auto;
  }

  .nacre-gallery .nacre-last-row img:last-child {
    margin-bottom: 0;
  }

  .nacre-meta {
    margin: 16px 2vw 0;
  }

  .nacre-meta img {
    width: 14.84vw;
  }

  .nacre-meta .project-credit {
    width: 31vw;
  }

  .nacre .project-nav {
    margin-top: 36px;
    padding-bottom: 23px;
  }

  .angels .project-intro {
    min-height: 281px;
    width: 47.3vw;
    margin-left: 50.8vw;
    padding-top: 80px;
  }

  .angels .project-intro h1 {
    margin-bottom: 46px;
  }

  .angels-opening {
    gap: 6px;
    padding: 0 6px;
  }

  .angels-note {
    min-height: 219px;
    width: 49.32vw;
    padding: 0 0 0 6.12vw;
  }

  .angels-gallery {
    gap: 5px;
    padding: 0 5px;
  }

  .angels-column {
    gap: 5px;
  }

  .angels-credit {
    width: 31vw;
    padding-top: 2px;
  }

  .angels .project-nav {
    margin-top: 28px;
    padding-bottom: 23px;
  }

  .skye .project-intro {
    min-height: 341px;
    width: 32vw;
    margin-left: 50vw;
    padding-top: 68px;
  }

  .skye .project-intro h1 {
    margin-bottom: 46px;
  }

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

  .skye-gallery img {
    height: 33.55vw;
  }

  .skye-credit {
    width: 31vw;
    margin-top: 8px;
    font-size: 11.2px;
  }

  .skye .project-nav {
    margin-top: 74px;
    padding-bottom: 23px;
  }

  .haku-opening {
    padding-top: 52px;
  }

  .haku .project-intro {
    min-height: 265px;
    width: 35.2vw;
    margin-left: 50.8vw;
    padding-top: 28px;
  }

  .haku .project-intro h1 {
    margin-bottom: 16px;
  }

  .haku-credit {
    width: 31vw;
    margin-top: 28px;
  }

  .haku .project-nav {
    margin-top: 54px;
    padding-bottom: 23px;
  }

  .erase-collage {
    height: 756px;
  }

  .erase-collage > img:nth-of-type(1) {
    top: 157px;
    left: 6.12vw;
    width: 30.99vw;
  }

  .erase-collage > img:nth-of-type(2) {
    top: 396px;
    left: 10.16vw;
    width: 26.95vw;
  }

  .erase-collage > img:nth-of-type(3) {
    top: 227px;
    left: 38.54vw;
    width: 34.51vw;
  }

  .erase-collage > img:nth-of-type(4) {
    top: 442px;
    left: 46.61vw;
    width: 22.92vw;
  }

  .erase-collage > img:nth-of-type(5) {
    top: 190px;
    left: 70.96vw;
    width: 22.92vw;
  }

  .erase .project-intro {
    top: 469px;
    left: 75.13vw;
    width: 18.88vw;
  }

  .erase .project-intro h1 {
    margin-bottom: 46px;
  }

  .erase-credit {
    width: 31vw;
    margin-top: 24px;
  }

  .erase .project-nav {
    margin-top: 90px;
    padding-bottom: 24px;
  }
}

@media (min-width: 1400px) {
  .hero {
    height: 45.76vw;
    padding-top: 55px;
  }

  .home-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 28px;
    padding-bottom: 29px;
  }

  .home-row {
    display: contents;
  }

  .home-row img {
    flex: none;
    object-fit: cover;
  }

  .home-image-1 {
    width: 32.49% !important;
    height: 21.18vw !important;
  }

  .home-image-2 {
    width: 33.14% !important;
    height: 21.18vw !important;
  }

  .home-image-3 {
    width: calc(34.37% - 16px) !important;
    height: 21.18vw !important;
  }

  .home-image-4 {
    width: 27.57% !important;
    height: 17.64vw !important;
  }

  .home-image-5 {
    width: 28.29% !important;
    height: 17.64vw !important;
  }

  .home-image-6 {
    width: 27.57% !important;
    height: 17.64vw !important;
  }

  .home-image-7 {
    width: calc(16.57% - 24px) !important;
    height: 17.64vw !important;
  }

  .home-image-8,
  .home-image-9,
  .home-image-10 {
    width: calc(33.333% - 5.34px) !important;
    height: 21.11vw !important;
  }

  .home-image-11 {
    width: 23.3% !important;
    height: 16.25vw !important;
  }

  .home-image-12 {
    width: 25.4% !important;
    height: 16.25vw !important;
  }

  .home-image-13 {
    width: 24% !important;
    height: 16.25vw !important;
  }

  .home-image-14 {
    width: calc(27.3% - 24px) !important;
    height: 16.25vw !important;
  }

  .home-credits {
    height: 114px;
    padding-top: 6px;
  }

  .works-page {
    min-height: 929px;
    padding-top: 173px;
  }

  .about-page {
    min-height: 760px;
  }

  .about-portrait {
    top: 158px;
    left: 20.83vw;
    width: 22.01vw;
  }

  .about-copy {
    width: 43.61vw;
    margin-left: 50.35vw;
    padding-top: 239px;
  }

  .nacre .project-intro {
    min-height: 564px;
    width: 35.56vw;
    margin-left: 54.45vw;
    padding-top: 84px;
  }

  .nacre .project-intro h1 {
    margin-bottom: 25px;
  }

  .nacre-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    padding: 0 2vw;
  }

  .nacre-gallery > img,
  .nacre-gallery .nacre-last-row img {
    flex: none;
    height: auto;
    aspect-ratio: auto;
  }

  .nacre-gallery > img:nth-of-type(1),
  .nacre-gallery > img:nth-of-type(2) {
    width: calc(50% - 5.5px);
  }

  .nacre-gallery > img:nth-of-type(3),
  .nacre-gallery > img:nth-of-type(4) {
    width: 38.86%;
  }

  .nacre-gallery .nacre-last-row {
    display: contents;
  }

  .nacre-gallery .nacre-last-row img:nth-child(1) {
    width: calc(22.28% - 22px);
  }

  .nacre-gallery .nacre-last-row img:nth-child(2) {
    width: 64.69%;
  }

  .nacre-gallery .nacre-last-row img:nth-child(3) {
    width: calc(35.31% - 11px);
  }

  .nacre-meta {
    margin-top: 30px;
  }

  .nacre .project-nav {
    margin-top: 56px;
    padding-bottom: 43px;
  }

  .skye .project-intro {
    min-height: 358px;
    padding-top: 64px;
  }

  .skye-gallery img {
    height: 22.29vw;
  }

  .skye-credit {
    margin-top: 30px;
  }

  .skye .project-nav {
    margin-top: 104px;
  }

  .skye {
    min-height: 912px;
  }

  .angels .project-intro {
    min-height: 271px;
  }

  .angels-opening {
    gap: 10px;
    padding: 0 11px;
  }

  .angels-note {
    min-height: 291px;
  }

  .angels-gallery {
    gap: 10px;
    padding: 0 10px;
  }

  .angels-column {
    gap: 10px;
  }

  .haku-opening {
    padding-top: 29px;
  }

  .haku .project-intro {
    min-height: 292px;
  }

  .haku .project-nav {
    margin-top: 110px;
  }

  .erase-collage {
    height: 1027px;
  }

  .erase-collage > img:nth-of-type(1) {
    top: 164px;
    left: 7.22vw;
    width: 29.1vw;
  }

  .erase-collage > img:nth-of-type(2) {
    top: 499px;
    left: 10.07vw;
    width: 27.43vw;
  }

  .erase-collage > img:nth-of-type(3) {
    top: 287px;
    left: 38.26vw;
    width: 28.54vw;
  }

  .erase-collage > img:nth-of-type(4) {
    top: 612px;
    left: 46.32vw;
    width: 23.4vw;
  }

  .erase-collage > img:nth-of-type(5) {
    top: 209px;
    left: 70.56vw;
    width: 23.4vw;
  }

  .erase .project-intro {
    top: 653px;
    left: 74.58vw;
    width: 19.38vw;
  }

  .erase .project-intro h1 {
    margin-bottom: 49px;
  }

  .erase-credit {
    width: 31.46vw;
    margin-top: 33px;
  }

  .erase .project-nav {
    margin-top: 155px;
    padding-bottom: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
