:root {
  --step--5: clamp(0.4rem, calc(0.21rem + 0.97vw), 0.98rem);
  --step--4: clamp(0.48rem, calc(0.23rem + 1.24vw), 1.23rem);
  --step--3: clamp(0.58rem, calc(0.26rem + 1.6vw), 1.54rem);
  --step--2: clamp(0.69rem, calc(0.29rem + 2.04vw), 1.92rem);
  --step--1: clamp(0.83rem, calc(0.31rem + 2.61vw), 2.4rem);
  --step-0: clamp(1rem, calc(0.33rem + 3.33vw), 3rem);
  --step-1: clamp(1.2rem, calc(0.35rem + 4.25vw), 3.75rem);
  --step-2: clamp(1.44rem, calc(0.36rem + 5.41vw), 4.69rem);
  --step-3: clamp(1.73rem, calc(0.35rem + 6.89vw), 5.86rem);
  --step-4: clamp(2.07rem, calc(0.32rem + 8.75vw), 7.32rem);
  --step-5: clamp(2.49rem, calc(0.27rem + 11.11vw), 9.15rem);
  --step-6: clamp(2.99rem, calc(0.17rem + 14.1vw), 11.44rem);
  --step-7: clamp(3.58rem, calc(0.01rem + 17.87vw), 14.31rem);
  --step-8: clamp(4.3rem, calc(-0.23rem + 22.64vw), 17.88rem);
  --step-9: clamp(5.16rem, calc(-0.57rem + 28.65vw), 22.35rem);

  --app-height: 100vh;
  --project-width: 18rem;
  --project-gap: calc(var(--project-width) * 0.25);
  --projects-header: clamp(2rem, calc(0.33rem + 3.33vw), 3rem);

  --project-page-section-gap: 6rem;
}

@font-face {
  font-family: Briar;
  src: url(assets/fonts/9b675782daa8aa07.woff) format("woff");
}

html,
body {
  overscroll-behavior: none;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  color: #3b3b3b;
  margin: 0;
  min-height: 100%;
  background: #eeeeee;
}

ul,
p {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem 0;
  height: min-content;
  font-size: 1rem;
  text-transform: uppercase;
}

nav .name {
  font-family: Briar;
  font-size: 1rem;
  line-height: 1;
}

nav .links {
  display: none;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem 1rem;
  height: min-content;
  font-size: 1rem;
  text-transform: uppercase;
}

.links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.text-block {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.text-block p,
.text-block li {
  font-size: var(--step-0);
  font-weight: 300;
  margin: 0;
}

.text-block .eyebrow {
  font-style: italic;
}

.text-block h3 {
  font-size: var(--step-1);
  margin: 0 0 1rem 0;
}

.text-block ul {
  list-style-type: disc;
  padding: 0;
  margin-left: 2rem;
}

.image-block {
  display: flex;
  flex: 1;
  position: relative;
}

.image-block img {
  width: 100%;
  height: auto;
}

.project-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: var(--project-page-section-gap);
}

.project-title h1 {
  /* font-family: Briar; */
  font-size: var(--step-3);
  font-weight: 600;
  margin: 1rem 0;
}

.project-title h2 {
  font-size: var(--step-0);
  font-weight: 400;
  margin: 0;
}

.project-title p {
  font-size: var(--step--1);
  font-weight: 400;
  margin: 0;
}

.project-page-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 0 3rem;
}

/*** media queries ***/
@media screen and (min-width: 540px) {
  nav .links {
    display: flex;
  }

  nav .name {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --project-page-section-gap: 10rem;
  }

  nav {
    padding: 2.5rem 2.5rem 0;
  }

  .links {
    gap: 1.75rem;
  }

  .text-block p,
  .text-block li {
    font-size: var(--step--4);
  }

  .text-block h3 {
    font-size: var(--step--2);
  }

  .image-block {
    width: 50%;
  }

  .image-block img {
    width: 75%;
  }

  .project-title h1 {
    font-size: var(--step-2);
  }

  .project-title h2 {
    font-size: var(--step--3);
  }

  .project-title p {
    font-size: var(--step--4);
  }
}

@media screen and (min-width: 920px) {
  :root {
    --project-width: clamp(14.8rem, calc(-0.23rem + 22.64vw), 18rem);
  }
}

@media screen and (min-width: 1280px) {
  nav {
    padding: 3rem 6rem 0;
  }
}

/*** canvas/webgl elements ***/

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  height: var(--app-height);
  width: 100vw;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease-in;
  pointer-events: none;
}

.planes-loaded #canvas {
  opacity: 1;
}

#background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/*** floating objects ***/

#planes {
  overflow: hidden;
  opacity: 0;
  position: relative;
  height: var(--app-height);
}

.planes-loaded #planes {
  opacity: 1;
}

.plane-wrapper {
  position: absolute;
}

.plane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
}

.text-plane {
  opacity: 0;
}

body.is-fullscreen .plane {
  cursor: auto;
}

.plane img {
  height: 100%;
  width: auto;
  display: none;
}

/*** content ***/

#home-header {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#header-content {
  color: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1280px;
}

#header-content h1 {
  font-family: Briar;
  font-size: var(--step-7);
  line-height: 110%;
  margin: 0;
  padding: 1rem;
}

#header-content p {
  font-size: var(--step-1);
  line-height: 140%;
  padding: 0 1rem;
  text-transform: uppercase;
}

.home-main {
  background: inherit;
  margin-top: 100vh;
  z-index: 20;
}

.projects-wrapper {
  position: relative;
  background: inherit;
  z-index: 20;
  max-width: 32rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: var(--project-gap);
}

.projects-title {
  font-family: Briar;
  font-size: var(--projects-header);
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: var(--project-gap) 0;
}

.home-project {
  position: relative;
  width: var(--project-width);
}

.home-project:nth-child(even) {
  left: 30px;
}

.home-project:nth-child(odd) {
  right: 30px;
  align-self: flex-end;
}

.home-project img {
  width: var(--project-width);
  height: auto;
  filter: drop-shadow(0px 1px 8px rgba(25, 25, 39, 0.05));
  transition: all 0.3s ease-in-out;
}

.home-project .project-info {
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0;
}

.home-project .project-info h3 {
  margin: 0;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

.home-project .project-info p {
  margin: 0.3rem 0 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
}

.home-project:hover img {
  filter: drop-shadow(0px 1px 8px rgba(25, 25, 39, 0.2));
}

#vail:hover img,
#lootbox:hover img,
#sample-projects:hover img,
#mirage:hover img {
  filter: drop-shadow(0px 1px 8px rgba(25, 25, 39, 0.6));
}

.home-project:hover .project-info {
  opacity: 1;
}

.about_wrapper {
  padding: var(--project-gap) 1rem;
}

.about-title {
  font-family: Briar;
  font-size: var(--projects-header);
  text-align: center;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 40rem;
  margin: auto;
}

.about img {
  margin: 0 0 1rem 0;
  height: calc(var(--project-width) * 1.5);
  width: auto;
}

.about p {
  margin: 0.75rem 0 0;
}

/*** media queries ***/

@media screen and (min-width: 920px) {
  :root {
    --project-width: clamp(14.8rem, calc(-0.23rem + 22.64vw), 18rem);
  }

  .projects-wrapper {
    width: 100%;
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr repeat(12, calc(var(--project-width) * 0.25)) 1fr;
    grid-template-rows: repeat(4, 1fr);
    margin: 0 auto;
    gap: var(--project-gap) 0;
  }

  .projects-title {
    font-size: var(--step-2);
  }

  .home-project:nth-child(even) {
    left: 0;
  }

  .home-project:nth-child(odd) {
    right: 0;
    align-self: flex-end;
  }

  #vail {
    grid-column: 3 / span 4;
    grid-row: 1 / span 2;
  }

  #lootbox {
    grid-column: 9 / span 4;
    grid-row: 2 / span 2;
  }

  #sample-projects {
    grid-column: 4 / span 4;
    grid-row: 3 / span 2;
  }

  #f3 {
    grid-column: 10 / span 4;
    grid-row: 4 / span 2;
  }

  #mirage {
    grid-column: 2 / span 4;
    grid-row: 5 / span 2;
  }

  #spacespromo {
    grid-column: 8 / span 4;
    grid-row: 6 / span 2;
  }

  #brewgood {
    grid-column: 3 / span 4;
    grid-row: 7 / span 2;
  }

  #e-immigrate {
    grid-column: 9 / span 4;
    grid-row: 8 / span 2;
  }

  section .project-info {
    opacity: 0;
  }

  .about_wrapper {
    padding: var(--project-gap) 3rem;
  }

  .about {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1040px;
    gap: 2rem;
  }

  .about img {
    order: 2;
  }

  .about .content {
    order: 1;
  }
}

@media screen and (min-width: 1280px) {
  #header-content p {
    margin-bottom: 2rem;
  }
}

/*** handling errors ***/

.no-curtains .plane-title {
  z-index: 1;
}

.no-curtains .plane {
  display: flex;
  overflow: hidden;
}

.no-curtains .plane img {
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}


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