@charset "UTF-8";


@font-face {
  font-family: "Bruna";

  src:
    url("font/Aether-AMono.ttf")
    format("truetype");

  font-feature-settings: "swsh" 1;

  font-weight: 400;
  font-style: normal;

  font-display: swap;
}


:root {
  --footer-height: 48px;

  --footer-padding-x: 20px;

  --footer-color: #9a5724;

  --site-font: "Bruna", sans-serif;

  --stage-height:
    calc(100vh - var(--footer-height));

  --gallery-gap: 10px;

  --gallery-bottom-space: 0px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;

  background: #fff;
}


body {
  overflow-x: hidden;
  overflow-y: auto;

  font-family: var(--site-font);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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


.scene {
  position: relative;

  height: 100vh;
}


.stage {
  position: sticky;

  top: 0;

  width: 100%;
  height: var(--stage-height);

  overflow: hidden;

  background: transparent;
}


.carousel,
.slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  margin: 0;
}


.carousel {
  z-index: 1;
}


.slide {
  opacity: 0;

  transition:
    opacity 2000ms ease;
}

.slide.is-active {
  opacity: 1;
}


.slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  user-select: none;

  -webkit-user-drag: none;
}


.brand {
  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

  will-change: transform;
}


.brand img {
  position: absolute;

  display: block;

  width: 81%;

  max-width: 1225px;

  height: auto;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);
}


.transition-panel {
  position: fixed;

  left: 0;
  right: 0;

  bottom: var(--footer-height);

  width: 100%;

  height: 0;

  z-index: 3;

  background: #fff;

  pointer-events: auto;

  will-change: height;

  display: grid;

  grid-template-columns:
    2fr
    1fr;

  grid-template-rows:
    auto
    auto;

  column-gap: 0;

  row-gap: 200px;

  align-content: start;

  padding:
    0
    var(--footer-padding-x);

  overflow: hidden;
}


.panel-copy {
  position: relative;

  margin: 0;

  text-align: left;

  align-self: start;

  padding-top: var(--footer-padding-x);

  font-family: var(--site-font);

  color: #144F57;

  line-height: 1.3;
}


.panel-copy-main {
  grid-column: 1;

  grid-row: 1;

  width: 100%;

  padding-right: 40px;

  font-size: 28px;
}


.panel-copy-small {
  grid-column: 2;

  grid-row: 1;

  width: 100%;

  font-size: 17px;
}


.panel-gallery {
  grid-column: 1 / -1;

  grid-row: 2;

  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: var(--gallery-gap);

  align-self: start;

  padding-bottom: var(--gallery-bottom-space);
}


.panel-gallery img {
  display: block;

  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;
}


.scroll-phrase {
  position: fixed;

  inset: 0;

  z-index: 4;

  width: 100%;
  height: 100%;

  pointer-events: none;

  will-change: transform;
}

.scroll-copy,
.scroll-tagline {
  pointer-events: auto;

  user-select: text;
  -webkit-user-select: text;

  cursor: text;
}


.scroll-copy {
  position: absolute;

  top: 6%;

  left: 20%;

  width: 60%;

  margin: 0;

  text-align: center;

  font-family: var(--site-font);

  font-size: 17px;

  letter-spacing: -0.15px;

  line-height: 1.3;

  color: #fff;
}


.scroll-tagline {
  position: absolute;

  left: 20%;

  bottom:
    calc(
      var(--footer-height) + 9%
    );

  width: 60%;

  margin: 0;

  text-align: center;

  font-family: var(--site-font);

  font-size: 17px;

  line-height: 1;

  color: #fff;

  white-space: nowrap;

  transform:
    translateY(
      var(--tagline-y, 0px)
    );

  will-change: transform;
}


.footer {
  position: fixed;

  z-index: 10;

  left: 0;
  right: 0;
  bottom: 0;

  height: var(--footer-height);

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  padding:
    0
    var(--footer-padding-x);

  background: #fff;

  color: var(--footer-color);

  font-family: var(--site-font);

  font-size: 17px;

  line-height: 1;

  white-space: nowrap;
}


.footer-item {
  display: block;

  position: relative;

  letter-spacing: 0;

  transition:
    letter-spacing 300ms ease,
    left 300ms ease;
}


.footer-item span {
  display: inline-block;

  position: relative;

  top: 0;

  transition:
    top var(--letter-duration, 300ms)
    cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay:
    var(--letter-delay, 0ms);
}


.footer-email:hover span:nth-child(1)  { top: -2px; --letter-duration: 260ms; --letter-delay: 20ms; }
.footer-email:hover span:nth-child(2)  { top:  1px; --letter-duration: 340ms; --letter-delay:  0ms; }
.footer-email:hover span:nth-child(3)  { top: -3px; --letter-duration: 310ms; --letter-delay: 35ms; }
.footer-email:hover span:nth-child(4)  { top:  2px; --letter-duration: 380ms; --letter-delay: 15ms; }
.footer-email:hover span:nth-child(5)  { top: -1px; --letter-duration: 290ms; --letter-delay: 50ms; }
.footer-email:hover span:nth-child(6)  { top:  3px; --letter-duration: 360ms; --letter-delay: 10ms; }
.footer-email:hover span:nth-child(7)  { top: -2px; --letter-duration: 320ms; --letter-delay: 45ms; }
.footer-email:hover span:nth-child(8)  { top:  1px; --letter-duration: 270ms; --letter-delay: 25ms; }
.footer-email:hover span:nth-child(9)  { top: -3px; --letter-duration: 350ms; --letter-delay:  5ms; }
.footer-email:hover span:nth-child(10) { top:  2px; --letter-duration: 300ms; --letter-delay: 40ms; }
.footer-email:hover span:nth-child(11) { top: -1px; --letter-duration: 370ms; --letter-delay: 20ms; }
.footer-email:hover span:nth-child(12) { top:  2px; --letter-duration: 280ms; --letter-delay: 55ms; }
.footer-email:hover span:nth-child(13) { top: -2px; --letter-duration: 330ms; --letter-delay: 30ms; }
.footer-email:hover span:nth-child(14) { top:  1px; --letter-duration: 390ms; --letter-delay: 10ms; }
.footer-email:hover span:nth-child(15) { top: -3px; --letter-duration: 310ms; --letter-delay: 45ms; }
.footer-email:hover span:nth-child(16) { top:  2px; --letter-duration: 350ms; --letter-delay: 15ms; }
.footer-email:hover span:nth-child(17) { top: -1px; --letter-duration: 290ms; --letter-delay: 35ms; }
.footer-email:hover span:nth-child(18) { top:  3px; --letter-duration: 370ms; --letter-delay:  5ms; }
.footer-email:hover span:nth-child(19) { top: -2px; --letter-duration: 320ms; --letter-delay: 50ms; }
.footer-email:hover span:nth-child(20) { top:  1px; --letter-duration: 280ms; --letter-delay: 20ms; }
.footer-email:hover span:nth-child(21) { top: -2px; --letter-duration: 340ms; --letter-delay: 40ms; }
.footer-email:hover span:nth-child(22) { top:  2px; --letter-duration: 300ms; --letter-delay: 10ms; }
.footer-email:hover span:nth-child(23) { top: -1px; --letter-duration: 360ms; --letter-delay: 30ms; }


.footer-phone:hover span:nth-child(1)  { top:  2px; --letter-duration: 320ms; --letter-delay: 15ms; }
.footer-phone:hover span:nth-child(2)  { top: -2px; --letter-duration: 280ms; --letter-delay: 45ms; }
.footer-phone:hover span:nth-child(3)  { top:  3px; --letter-duration: 360ms; --letter-delay:  5ms; }
.footer-phone:hover span:nth-child(4)  { top: -1px; --letter-duration: 300ms; --letter-delay: 35ms; }
.footer-phone:hover span:nth-child(5)  { top:  2px; --letter-duration: 340ms; --letter-delay: 10ms; }
.footer-phone:hover span:nth-child(6)  { top: -3px; --letter-duration: 290ms; --letter-delay: 50ms; }
.footer-phone:hover span:nth-child(7)  { top:  1px; --letter-duration: 370ms; --letter-delay: 20ms; }
.footer-phone:hover span:nth-child(8)  { top: -2px; --letter-duration: 310ms; --letter-delay: 40ms; }
.footer-phone:hover span:nth-child(9)  { top:  3px; --letter-duration: 350ms; --letter-delay:  0ms; }
.footer-phone:hover span:nth-child(10) { top: -1px; --letter-duration: 270ms; --letter-delay: 30ms; }
.footer-phone:hover span:nth-child(11) { top:  2px; --letter-duration: 390ms; --letter-delay: 15ms; }


.footer-instagram:hover span:nth-child(1)  { top: -2px; --letter-duration: 300ms; --letter-delay: 30ms; }
.footer-instagram:hover span:nth-child(2)  { top:  1px; --letter-duration: 360ms; --letter-delay:  5ms; }
.footer-instagram:hover span:nth-child(3)  { top: -3px; --letter-duration: 280ms; --letter-delay: 45ms; }
.footer-instagram:hover span:nth-child(4)  { top:  2px; --letter-duration: 340ms; --letter-delay: 15ms; }
.footer-instagram:hover span:nth-child(5)  { top: -1px; --letter-duration: 390ms; --letter-delay: 35ms; }
.footer-instagram:hover span:nth-child(6)  { top:  3px; --letter-duration: 310ms; --letter-delay:  0ms; }
.footer-instagram:hover span:nth-child(7)  { top: -2px; --letter-duration: 350ms; --letter-delay: 50ms; }
.footer-instagram:hover span:nth-child(8)  { top:  1px; --letter-duration: 290ms; --letter-delay: 20ms; }
.footer-instagram:hover span:nth-child(9)  { top: -3px; --letter-duration: 370ms; --letter-delay: 40ms; }
.footer-instagram:hover span:nth-child(10) { top:  2px; --letter-duration: 320ms; --letter-delay: 10ms; }
.footer-instagram:hover span:nth-child(11) { top: -1px; --letter-duration: 280ms; --letter-delay: 30ms; }
.footer-instagram:hover span:nth-child(12) { top:  2px; --letter-duration: 360ms; --letter-delay:  5ms; }
.footer-instagram:hover span:nth-child(13) { top: -2px; --letter-duration: 300ms; --letter-delay: 45ms; }
.footer-instagram:hover span:nth-child(14) { top:  3px; --letter-duration: 340ms; --letter-delay: 15ms; }
.footer-instagram:hover span:nth-child(15) { top: -1px; --letter-duration: 390ms; --letter-delay: 35ms; }
.footer-instagram:hover span:nth-child(16) { top:  2px; --letter-duration: 310ms; --letter-delay: 10ms; }


.footer-email {
  justify-self: start;
  left: 0;
}


.footer-email:hover {
  letter-spacing: 0.6px;
  left: -6.6px;
}


.footer-phone {
  justify-self: center;
  left: 0;
}


.footer-phone:hover {
  letter-spacing: 0.6px;
}


.footer-instagram {
  justify-self: end;
  left: 0;
}


.footer-instagram:hover {
  letter-spacing: 0.6px;
  left: 4.5px;
}


@media (max-width: 900px) {

  :root {
    --footer-height: 46px;

    --footer-padding-x: 14px;

    --stage-height:
      calc(100vh - var(--footer-height));

    --gallery-gap: 6px;

    --gallery-bottom-space: 0px;
  }


  .footer {
    font-size: 14px;
  }


  .scroll-copy {
    top: 14%;

    left: 10%;

    width: 80%;

    font-size: 17px;
  }


  .scroll-tagline {
    left: 10%;

    width: 80%;

    bottom: 8%;

    font-size: 17px;
  }


  .brand img {
    width: 90%;
  }


  .transition-panel {

    grid-template-columns: 1fr;

   grid-template-rows:
      auto
      auto
      auto;

    row-gap: 30px;

    align-content: start;

    padding:
      0
      var(--footer-padding-x);

  }


  .panel-copy-main {

    grid-column: 1;

    grid-row: 1;

    width: 100%;

    padding-right: 0;

    font-size: 20px;
  }


  .panel-copy-small {

    grid-column: 1;

    grid-row: 2;

    width: 100%;

    font-size: 14px;
  }


  .panel-gallery {

    grid-column: 1;

    grid-row: 3;

    width: 100%;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: var(--gallery-gap);

    padding-bottom: 0;

    margin-top: 40px;
  }

}

@media (max-width: 600px) {

  :root {
    --footer-height: 72px;
  }


  .panel-copy-main {
    font-size: 20px;
    line-height: 1.3;
  }

  .panel-copy-small {
    font-size: 14px;
    line-height: 1.25;
  }

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


  .footer {
    height: var(--footer-height);

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 2px;

    padding:
      5px
      var(--footer-padding-x);

    font-size: 14px;
  }


  .footer-item {
    width: 100%;

    position: relative;

    left: 0 !important;

    text-align: center;
  }


  .footer-email:hover,
  .footer-phone:hover,
  .footer-instagram:hover {
    left: 0;
  }

}


@supports (height: 100dvh) {

  :root {
    --stage-height:
      calc(100dvh - var(--footer-height));
  }

}


@media (prefers-reduced-motion: reduce) {

  .brand,
  .scroll-phrase {
    transition: none !important;
  }

}
