/*!*************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./library/scss/main.scss ***!
  \*************************************************************************************************************************************************************************/
/**
 * Sets a media query for the specified breakpoint
 *
 * Accepts:
 * - $media-query: {String} Breakpoint variable (list found in variables.scss)
 *
 * Usage:
 * .selector {
 *   @include mq($medium-up) {
 *     color: red;
 *   }
 * }
 */
:root {
  --b-font: "neue-haas-grotesk-text", sans-serif;
  --b-font-serif: "plantin", serif;
  --b-black: #1D1D1B;
  --b-white: #FEFEFE;
  --b-off-white: #F1EAE1;
  --b-light-grey: #F4F4F4;
  --b-grey: #D8D8D8;
  --b-beige: #E7D8C8;
  --b-blue: #4E758B;
  --b-orange: #CD5E30;
  --b-pale-yellow: #DFCD9D;
  --b-yellow: #D69626;
  --b-dark-grey: #2E2F33;
  --b-brown: #754328;
  --easing: cubic-bezier(.22, .61, .36, 1);
  --max-width: 170rem;
  --side-padding-mob: 1.6rem;
  --side-padding-dt: 2.4rem;
  --header-height: 6rem;
}

.w-100 {
  width: 100%;
}

body, html {
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-text-rendering: optimizeLegibility;
}

.dt-only {
  display: none;
}
@media only screen and (min-width: 1180px) {
  .dt-only {
    display: block;
  }
}
@media only screen and (min-width: 1180px) {
  .dt-only--flex {
    display: flex;
  }
}

.mob-only {
  display: block;
}
@media only screen and (min-width: 1180px) {
  .mob-only {
    display: none;
  }
}

.unstyled-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--black, #111111);
  cursor: pointer;
}

.unstyled-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--side-padding-mob, 1.8rem);
  padding-left: var(--side-padding-mob, 1.8rem);
}
@media only screen and (min-width: 1180px) {
  .container {
    padding-right: var(--side-padding-dt, 2.4rem);
    padding-left: var(--side-padding-dt, 2.4rem);
  }
}
.container--dt {
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (min-width: 1180px) {
  .container--dt {
    padding-right: var(--side-padding-dt, 2.4rem);
    padding-left: var(--side-padding-dt, 2.4rem);
  }
}
@media only screen and (min-width: 1180px) {
  .container--mob {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1180px) {
  .container--dt-left {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    max-width: 50%;
    margin-right: initial;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1180px) {
  .container--dt-right {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
    max-width: 50%;
    margin-right: auto;
    margin-left: initial;
  }
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--side-padding-mob);
}
@media only screen and (min-width: 1180px) {
  .grid-wrapper {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--side-padding-dt);
  }
}

@media only screen and (min-width: 1180px) {
  .grid-wrapper-half {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--side-padding-dt);
  }
}

.mw-800 {
  max-width: 80rem;
}

.mw-550 {
  max-width: 55rem;
}

.mw-330 {
  max-width: 33rem;
}

video-loop {
  display: block;
}

.empty:empty {
  display: block;
}

.sr-only,
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.bg-white {
  background-color: var(--white, #ffffff);
}

.bg-blue {
  background-color: var(--blue, #4E758B);
}

.bg-orange {
  background-color: var(--orange, #CD5E30);
}

.bg-brown {
  background-color: var(--brown, #754328);
}

.bg-pale-yellow {
  background-color: var(--pale-yellow, #DFCD9D);
}

.bg-yellow {
  background-color: var(--yellow, #D69626);
}

.bg-dark-grey {
  background-color: var(--dark-grey, #2E2F33);
}

.bg-beige {
  background-color: var(--beige, #E7D8C8);
}

.square-asset {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.square-asset img,
.square-asset video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clr-white {
  color: var(--white, #ffffff);
}

.clr-blue {
  color: var(--blue, #4E758B);
}

.clr-black {
  color: var(--black, #111111);
}

.clr-brown {
  color: var(--brown, #754328);
}

.clr-orange {
  color: var(--orange, #CD5E30);
}

.clr-pale-yellow {
  color: var(--pale-yellow, #DFCD9D);
}

.clr-yellow {
  color: var(--yellow, #D69626);
}

.clr-dark-grey {
  color: var(--dark-grey, #2E2F33);
}

.clr-beige {
  color: var(--beige, #E7D8C8);
}

.hor-line {
  width: 100%;
  height: 1px;
  background-color: var(--black);
}
.hor-line--dt {
  display: none;
}
@media only screen and (min-width: 1180px) {
  .hor-line--dt {
    display: block;
  }
}

.btn {
  font-size: 1.125rem;
  line-height: 1.375rem;
  letter-spacing: 0.125rem;
  text-align: center;
  text-transform: uppercase;
  padding: 0.4rem 6rem;
  border: 1px solid var(--b-black);
  background-color: transparent;
  color: var(--b-black);
  border-radius: 1.5rem;
  position: relative;
  transition: color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--b-black);
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}
.btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    color: var(--b-white);
  }
  .btn:hover:before {
    width: 100%;
  }
}

.unstyled-link {
  text-decoration: none;
  color: inherit;
}

.unstyled-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
}

.modules:not(.first-hero)::before {
  content: unset;
  display: block;
}

.b-font-sans {
  font-family: var(--b-font);
}

.b-font-serif {
  font-family: var(--b-font-serif);
}

.reveal {
  opacity: 0;
  transition: opacity 1.2s var(--easing);
}
.reveal.visible {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--easing), transform 1.2s var(--easing);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-grow {
  transition: clip-path 1.2s var(--easing);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.reveal-grow.visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.anim-trigger .reveal-child {
  opacity: 0;
  transition: opacity 1.2s var(--easing);
}
@media only screen and (min-width: 1180px) {
  .anim-trigger .reveal-child:nth-of-type(1), .anim-trigger .reveal-child:nth-child(1) {
    transition-delay: 0.095s;
  }
  .anim-trigger .reveal-child:nth-of-type(2), .anim-trigger .reveal-child:nth-child(2) {
    transition-delay: 0.19s;
  }
  .anim-trigger .reveal-child:nth-of-type(3), .anim-trigger .reveal-child:nth-child(3) {
    transition-delay: 0.285s;
  }
  .anim-trigger .reveal-child:nth-of-type(4), .anim-trigger .reveal-child:nth-child(4) {
    transition-delay: 0.38s;
  }
  .anim-trigger .reveal-child:nth-of-type(5), .anim-trigger .reveal-child:nth-child(5) {
    transition-delay: 0.475s;
  }
  .anim-trigger .reveal-child:nth-of-type(6), .anim-trigger .reveal-child:nth-child(6) {
    transition-delay: 0.57s;
  }
  .anim-trigger .reveal-child:nth-of-type(7), .anim-trigger .reveal-child:nth-child(7) {
    transition-delay: 0.665s;
  }
  .anim-trigger .reveal-child:nth-of-type(8), .anim-trigger .reveal-child:nth-child(8) {
    transition-delay: 0.76s;
  }
  .anim-trigger .reveal-child:nth-of-type(9), .anim-trigger .reveal-child:nth-child(9) {
    transition-delay: 0.855s;
  }
  .anim-trigger .reveal-child:nth-of-type(10), .anim-trigger .reveal-child:nth-child(10) {
    transition-delay: 0.95s;
  }
  .anim-trigger .reveal-child:nth-of-type(11), .anim-trigger .reveal-child:nth-child(11) {
    transition-delay: 1.045s;
  }
  .anim-trigger .reveal-child:nth-of-type(12), .anim-trigger .reveal-child:nth-child(12) {
    transition-delay: 1.14s;
  }
  .anim-trigger .reveal-child:nth-of-type(13), .anim-trigger .reveal-child:nth-child(13) {
    transition-delay: 1.235s;
  }
  .anim-trigger .reveal-child:nth-of-type(14), .anim-trigger .reveal-child:nth-child(14) {
    transition-delay: 1.33s;
  }
  .anim-trigger .reveal-child:nth-of-type(15), .anim-trigger .reveal-child:nth-child(15) {
    transition-delay: 1.425s;
  }
  .anim-trigger .reveal-child:nth-of-type(16), .anim-trigger .reveal-child:nth-child(16) {
    transition-delay: 1.52s;
  }
  .anim-trigger .reveal-child:nth-of-type(17), .anim-trigger .reveal-child:nth-child(17) {
    transition-delay: 1.615s;
  }
  .anim-trigger .reveal-child:nth-of-type(18), .anim-trigger .reveal-child:nth-child(18) {
    transition-delay: 1.71s;
  }
  .anim-trigger .reveal-child:nth-of-type(19), .anim-trigger .reveal-child:nth-child(19) {
    transition-delay: 1.805s;
  }
  .anim-trigger .reveal-child:nth-of-type(20), .anim-trigger .reveal-child:nth-child(20) {
    transition-delay: 1.9s;
  }
  .anim-trigger .reveal-child:nth-of-type(21), .anim-trigger .reveal-child:nth-child(21) {
    transition-delay: 1.995s;
  }
  .anim-trigger .reveal-child:nth-of-type(22), .anim-trigger .reveal-child:nth-child(22) {
    transition-delay: 2.09s;
  }
  .anim-trigger .reveal-child:nth-of-type(23), .anim-trigger .reveal-child:nth-child(23) {
    transition-delay: 2.185s;
  }
  .anim-trigger .reveal-child:nth-of-type(24), .anim-trigger .reveal-child:nth-child(24) {
    transition-delay: 2.28s;
  }
  .anim-trigger .reveal-child:nth-of-type(25), .anim-trigger .reveal-child:nth-child(25) {
    transition-delay: 2.375s;
  }
  .anim-trigger .reveal-child:nth-of-type(26), .anim-trigger .reveal-child:nth-child(26) {
    transition-delay: 2.47s;
  }
  .anim-trigger .reveal-child:nth-of-type(27), .anim-trigger .reveal-child:nth-child(27) {
    transition-delay: 2.565s;
  }
  .anim-trigger .reveal-child:nth-of-type(28), .anim-trigger .reveal-child:nth-child(28) {
    transition-delay: 2.66s;
  }
  .anim-trigger .reveal-child:nth-of-type(29), .anim-trigger .reveal-child:nth-child(29) {
    transition-delay: 2.755s;
  }
  .anim-trigger .reveal-child:nth-of-type(30), .anim-trigger .reveal-child:nth-child(30) {
    transition-delay: 2.85s;
  }
  .anim-trigger .reveal-child:nth-of-type(31), .anim-trigger .reveal-child:nth-child(31) {
    transition-delay: 2.945s;
  }
  .anim-trigger .reveal-child:nth-of-type(32), .anim-trigger .reveal-child:nth-child(32) {
    transition-delay: 3.04s;
  }
  .anim-trigger .reveal-child:nth-of-type(33), .anim-trigger .reveal-child:nth-child(33) {
    transition-delay: 3.135s;
  }
  .anim-trigger .reveal-child:nth-of-type(34), .anim-trigger .reveal-child:nth-child(34) {
    transition-delay: 3.23s;
  }
  .anim-trigger .reveal-child:nth-of-type(35), .anim-trigger .reveal-child:nth-child(35) {
    transition-delay: 3.325s;
  }
  .anim-trigger .reveal-child:nth-of-type(36), .anim-trigger .reveal-child:nth-child(36) {
    transition-delay: 3.42s;
  }
  .anim-trigger .reveal-child:nth-of-type(37), .anim-trigger .reveal-child:nth-child(37) {
    transition-delay: 3.515s;
  }
  .anim-trigger .reveal-child:nth-of-type(38), .anim-trigger .reveal-child:nth-child(38) {
    transition-delay: 3.61s;
  }
  .anim-trigger .reveal-child:nth-of-type(39), .anim-trigger .reveal-child:nth-child(39) {
    transition-delay: 3.705s;
  }
  .anim-trigger .reveal-child:nth-of-type(40), .anim-trigger .reveal-child:nth-child(40) {
    transition-delay: 3.8s;
  }
  .anim-trigger .reveal-child:nth-of-type(41), .anim-trigger .reveal-child:nth-child(41) {
    transition-delay: 3.895s;
  }
  .anim-trigger .reveal-child:nth-of-type(42), .anim-trigger .reveal-child:nth-child(42) {
    transition-delay: 3.99s;
  }
  .anim-trigger .reveal-child:nth-of-type(43), .anim-trigger .reveal-child:nth-child(43) {
    transition-delay: 4.085s;
  }
  .anim-trigger .reveal-child:nth-of-type(44), .anim-trigger .reveal-child:nth-child(44) {
    transition-delay: 4.18s;
  }
  .anim-trigger .reveal-child:nth-of-type(45), .anim-trigger .reveal-child:nth-child(45) {
    transition-delay: 4.275s;
  }
}
.anim-trigger .fade-up-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--easing), transform 1.2s var(--easing);
}
@media only screen and (min-width: 1180px) {
  .anim-trigger .fade-up-child:nth-of-type(1), .anim-trigger .fade-up-child:nth-child(1) {
    transition-delay: 0.095s;
  }
  .anim-trigger .fade-up-child:nth-of-type(2), .anim-trigger .fade-up-child:nth-child(2) {
    transition-delay: 0.19s;
  }
  .anim-trigger .fade-up-child:nth-of-type(3), .anim-trigger .fade-up-child:nth-child(3) {
    transition-delay: 0.285s;
  }
  .anim-trigger .fade-up-child:nth-of-type(4), .anim-trigger .fade-up-child:nth-child(4) {
    transition-delay: 0.38s;
  }
  .anim-trigger .fade-up-child:nth-of-type(5), .anim-trigger .fade-up-child:nth-child(5) {
    transition-delay: 0.475s;
  }
  .anim-trigger .fade-up-child:nth-of-type(6), .anim-trigger .fade-up-child:nth-child(6) {
    transition-delay: 0.57s;
  }
  .anim-trigger .fade-up-child:nth-of-type(7), .anim-trigger .fade-up-child:nth-child(7) {
    transition-delay: 0.665s;
  }
  .anim-trigger .fade-up-child:nth-of-type(8), .anim-trigger .fade-up-child:nth-child(8) {
    transition-delay: 0.76s;
  }
  .anim-trigger .fade-up-child:nth-of-type(9), .anim-trigger .fade-up-child:nth-child(9) {
    transition-delay: 0.855s;
  }
  .anim-trigger .fade-up-child:nth-of-type(10), .anim-trigger .fade-up-child:nth-child(10) {
    transition-delay: 0.95s;
  }
  .anim-trigger .fade-up-child:nth-of-type(11), .anim-trigger .fade-up-child:nth-child(11) {
    transition-delay: 1.045s;
  }
  .anim-trigger .fade-up-child:nth-of-type(12), .anim-trigger .fade-up-child:nth-child(12) {
    transition-delay: 1.14s;
  }
  .anim-trigger .fade-up-child:nth-of-type(13), .anim-trigger .fade-up-child:nth-child(13) {
    transition-delay: 1.235s;
  }
  .anim-trigger .fade-up-child:nth-of-type(14), .anim-trigger .fade-up-child:nth-child(14) {
    transition-delay: 1.33s;
  }
  .anim-trigger .fade-up-child:nth-of-type(15), .anim-trigger .fade-up-child:nth-child(15) {
    transition-delay: 1.425s;
  }
  .anim-trigger .fade-up-child:nth-of-type(16), .anim-trigger .fade-up-child:nth-child(16) {
    transition-delay: 1.52s;
  }
  .anim-trigger .fade-up-child:nth-of-type(17), .anim-trigger .fade-up-child:nth-child(17) {
    transition-delay: 1.615s;
  }
  .anim-trigger .fade-up-child:nth-of-type(18), .anim-trigger .fade-up-child:nth-child(18) {
    transition-delay: 1.71s;
  }
  .anim-trigger .fade-up-child:nth-of-type(19), .anim-trigger .fade-up-child:nth-child(19) {
    transition-delay: 1.805s;
  }
  .anim-trigger .fade-up-child:nth-of-type(20), .anim-trigger .fade-up-child:nth-child(20) {
    transition-delay: 1.9s;
  }
  .anim-trigger .fade-up-child:nth-of-type(21), .anim-trigger .fade-up-child:nth-child(21) {
    transition-delay: 1.995s;
  }
  .anim-trigger .fade-up-child:nth-of-type(22), .anim-trigger .fade-up-child:nth-child(22) {
    transition-delay: 2.09s;
  }
  .anim-trigger .fade-up-child:nth-of-type(23), .anim-trigger .fade-up-child:nth-child(23) {
    transition-delay: 2.185s;
  }
  .anim-trigger .fade-up-child:nth-of-type(24), .anim-trigger .fade-up-child:nth-child(24) {
    transition-delay: 2.28s;
  }
  .anim-trigger .fade-up-child:nth-of-type(25), .anim-trigger .fade-up-child:nth-child(25) {
    transition-delay: 2.375s;
  }
  .anim-trigger .fade-up-child:nth-of-type(26), .anim-trigger .fade-up-child:nth-child(26) {
    transition-delay: 2.47s;
  }
  .anim-trigger .fade-up-child:nth-of-type(27), .anim-trigger .fade-up-child:nth-child(27) {
    transition-delay: 2.565s;
  }
  .anim-trigger .fade-up-child:nth-of-type(28), .anim-trigger .fade-up-child:nth-child(28) {
    transition-delay: 2.66s;
  }
  .anim-trigger .fade-up-child:nth-of-type(29), .anim-trigger .fade-up-child:nth-child(29) {
    transition-delay: 2.755s;
  }
  .anim-trigger .fade-up-child:nth-of-type(30), .anim-trigger .fade-up-child:nth-child(30) {
    transition-delay: 2.85s;
  }
  .anim-trigger .fade-up-child:nth-of-type(31), .anim-trigger .fade-up-child:nth-child(31) {
    transition-delay: 2.945s;
  }
  .anim-trigger .fade-up-child:nth-of-type(32), .anim-trigger .fade-up-child:nth-child(32) {
    transition-delay: 3.04s;
  }
  .anim-trigger .fade-up-child:nth-of-type(33), .anim-trigger .fade-up-child:nth-child(33) {
    transition-delay: 3.135s;
  }
  .anim-trigger .fade-up-child:nth-of-type(34), .anim-trigger .fade-up-child:nth-child(34) {
    transition-delay: 3.23s;
  }
  .anim-trigger .fade-up-child:nth-of-type(35), .anim-trigger .fade-up-child:nth-child(35) {
    transition-delay: 3.325s;
  }
  .anim-trigger .fade-up-child:nth-of-type(36), .anim-trigger .fade-up-child:nth-child(36) {
    transition-delay: 3.42s;
  }
  .anim-trigger .fade-up-child:nth-of-type(37), .anim-trigger .fade-up-child:nth-child(37) {
    transition-delay: 3.515s;
  }
  .anim-trigger .fade-up-child:nth-of-type(38), .anim-trigger .fade-up-child:nth-child(38) {
    transition-delay: 3.61s;
  }
  .anim-trigger .fade-up-child:nth-of-type(39), .anim-trigger .fade-up-child:nth-child(39) {
    transition-delay: 3.705s;
  }
  .anim-trigger .fade-up-child:nth-of-type(40), .anim-trigger .fade-up-child:nth-child(40) {
    transition-delay: 3.8s;
  }
  .anim-trigger .fade-up-child:nth-of-type(41), .anim-trigger .fade-up-child:nth-child(41) {
    transition-delay: 3.895s;
  }
  .anim-trigger .fade-up-child:nth-of-type(42), .anim-trigger .fade-up-child:nth-child(42) {
    transition-delay: 3.99s;
  }
  .anim-trigger .fade-up-child:nth-of-type(43), .anim-trigger .fade-up-child:nth-child(43) {
    transition-delay: 4.085s;
  }
  .anim-trigger .fade-up-child:nth-of-type(44), .anim-trigger .fade-up-child:nth-child(44) {
    transition-delay: 4.18s;
  }
  .anim-trigger .fade-up-child:nth-of-type(45), .anim-trigger .fade-up-child:nth-child(45) {
    transition-delay: 4.275s;
  }
}
.anim-trigger .reveal-delayed {
  opacity: 0;
  transition: opacity 1.2s var(--easing);
  transition-delay: 0.2s;
}
.anim-trigger .reveal-no-delay {
  opacity: 0;
  transition: opacity 1.2s var(--easing);
}
.anim-trigger.visible .reveal-no-delay,
.anim-trigger.visible .reveal-delayed,
.anim-trigger.visible .reveal-child,
.anim-trigger.visible .fade-up-child {
  opacity: 1;
  transform: translateY(0);
}

.grow {
  transform: scale(0);
  transition: transform 1s ease-in-out;
  transition-timing-function: var(--easing);
  transform-origin: left;
}
@media only screen and (min-width: 1180px) {
  .grow {
    transform-origin: top;
    transition: transform 1.2s ease-in-out;
    transition-timing-function: var(--easing);
  }
}
.grow.visible {
  transform: scale(1);
}

.grow-trigger .grow-child {
  transform: scale(0);
  transition: transform 1s ease-in-out;
  transition-timing-function: var(--easing);
  transform-origin: left;
}
.grow-trigger .grow-child:nth-child(1) {
  transition-delay: 0.1s;
}
.grow-trigger .grow-child:nth-child(2) {
  transition-delay: 0.2s;
}
.grow-trigger .grow-child:nth-child(3) {
  transition-delay: 0.3s;
}
.grow-trigger .grow-child:nth-child(4) {
  transition-delay: 0.4s;
}
.grow-trigger .grow-child:nth-child(5) {
  transition-delay: 0.5s;
}
.grow-trigger .grow-child:nth-child(6) {
  transition-delay: 0.6s;
}
.grow-trigger .grow-child:nth-child(7) {
  transition-delay: 0.7s;
}
.grow-trigger .grow-child:nth-child(8) {
  transition-delay: 0.8s;
}
.grow-trigger .grow-child:nth-child(9) {
  transition-delay: 0.9s;
}
.grow-trigger .grow-child:nth-child(10) {
  transition-delay: 1s;
}
.grow-trigger .grow-child:nth-child(11) {
  transition-delay: 1.1s;
}
.grow-trigger .grow-child:nth-child(12) {
  transition-delay: 1.2s;
}
.grow-trigger .grow-child:nth-child(13) {
  transition-delay: 1.3s;
}
.grow-trigger .grow-child:nth-child(14) {
  transition-delay: 1.4s;
}
.grow-trigger .grow-child:nth-child(15) {
  transition-delay: 1.5s;
}
.grow-trigger .grow-child:nth-child(16) {
  transition-delay: 1.6s;
}
.grow-trigger .grow-child:nth-child(17) {
  transition-delay: 1.7s;
}
.grow-trigger .grow-child:nth-child(18) {
  transition-delay: 1.8s;
}
.grow-trigger .grow-child:nth-child(19) {
  transition-delay: 1.9s;
}
.grow-trigger .grow-child:nth-child(20) {
  transition-delay: 2s;
}
.grow-trigger .grow-child:nth-child(21) {
  transition-delay: 2.1s;
}
.grow-trigger .grow-child:nth-child(22) {
  transition-delay: 2.2s;
}
.grow-trigger .grow-child:nth-child(23) {
  transition-delay: 2.3s;
}
.grow-trigger .grow-child:nth-child(24) {
  transition-delay: 2.4s;
}
.grow-trigger .grow-child:nth-child(25) {
  transition-delay: 2.5s;
}
.grow-trigger .grow-child:nth-child(26) {
  transition-delay: 2.6s;
}
.grow-trigger .grow-child:nth-child(27) {
  transition-delay: 2.7s;
}
.grow-trigger .grow-child:nth-child(28) {
  transition-delay: 2.8s;
}
.grow-trigger .grow-child:nth-child(29) {
  transition-delay: 2.9s;
}
.grow-trigger .grow-child:nth-child(30) {
  transition-delay: 3s;
}
.grow-trigger .grow-child:nth-child(31) {
  transition-delay: 3.1s;
}
.grow-trigger .grow-child:nth-child(32) {
  transition-delay: 3.2s;
}
.grow-trigger .grow-child:nth-child(33) {
  transition-delay: 3.3s;
}
.grow-trigger .grow-child:nth-child(34) {
  transition-delay: 3.4s;
}
.grow-trigger .grow-child:nth-child(35) {
  transition-delay: 3.5s;
}
.grow-trigger .grow-child:nth-child(36) {
  transition-delay: 3.6s;
}
.grow-trigger .grow-child:nth-child(37) {
  transition-delay: 3.7s;
}
.grow-trigger .grow-child:nth-child(38) {
  transition-delay: 3.8s;
}
.grow-trigger .grow-child:nth-child(39) {
  transition-delay: 3.9s;
}
.grow-trigger .grow-child:nth-child(40) {
  transition-delay: 4s;
}
.grow-trigger.visible .grow-child {
  transform: scale(1);
}

.header {
  position: relative;
  z-index: 1000;
}

.b-header {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  transition: opacity 0.75s ease 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
}
.is-intro-active .b-header {
  opacity: 0;
}
.b-header__logo {
  width: 3.3125rem;
  height: 2.75rem;
}
.b-header__cart svg {
  height: 1.5rem;
  width: 1.5rem;
}
@media only screen and (min-width: 1180px) {
  .b-header__cart svg {
    height: 1.7rem;
    width: 1.7rem;
  }
}
.b-header__cart svg path {
  fill: var(--black);
}

.b-footer {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2.3rem;
  padding-bottom: 2rem;
  background-color: #CA4722;
}
@media only screen and (min-width: 1180px) {
  .b-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.25rem;
  }
}
.b-footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}
@media only screen and (min-width: 1180px) {
  .b-footer__wrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: 14rem 1fr 8fr;
    align-items: start;
  }
}
.b-footer__logo {
  width: 14rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.b-footer__nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.25rem;
  gap: 2rem;
}
@media only screen and (min-width: 1180px) {
  .b-footer__nav-wrapper {
    grid-column: 3;
    align-items: flex-start;
  }
}
.b-footer__nav-wrapper a {
  text-decoration: none;
}
.b-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
@media only screen and (min-width: 1180px) {
  .b-footer__nav {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }
}
.b-footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.8rem;
  align-items: flex-end;
  text-align: right;
}
@media only screen and (min-width: 1180px) {
  .b-footer__bottom {
    flex-direction: row;
    gap: 2rem;
  }
}

body .b-cart {
  padding-bottom: 5rem;
  min-height: 90vh;
  min-height: 90svh;
}
@media only screen and (min-width: 1180px) {
  body .b-cart {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
body .b-cart__actions {
  width: 100%;
}
@media only screen and (min-width: 1180px) {
  body .b-cart__actions {
    display: flex;
    justify-content: flex-end;
  }
}
body .b-cart .btn {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 25rem;
  margin-left: auto;
}
body .b-cart .qty button {
  color: var(--black);
}

body .b-shop {
  padding-top: 8rem;
  min-height: 85vh;
  min-height: 85svh;
}
body .b-shop .product__description {
  font-family: var(--b-font);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (min-width: 1180px) {
  body .b-shop .product__description {
    font-size: 1.25rem;
    line-height: normal;
  }
}
body .b-shop .product .qty button {
  color: var(--black);
}
body .b-shop .product-drawers {
  font-family: var(--b-font);
}
body .b-shop .product-drawers__title {
  font-family: var(--b-font);
}
body .b-shop .product-drawers__content {
  font-family: var(--b-font);
}
body .b-shop .btn {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  font-family: var(--b-font);
  background-color: transparent;
  color: var(--black);
}
body .b-shop .btn span {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  body .b-shop .btn:hover {
    color: var(--white);
  }
}

body .b-checkout {
  color: var(--black);
}
body .b-checkout:before {
  background-color: #F1EAE1;
  z-index: 0;
}
@media only screen and (min-width: 1180px) {
  body .b-checkout {
    padding-top: 9rem;
  }
}
body .b-checkout .checkout__fieldset * {
  font-family: var(--b-font);
}
body .b-checkout .checkout__summary {
  color: var(--black);
  font-family: var(--b-font);
}
body .b-checkout .checkout__summary * {
  font-family: var(--b-font);
}
body .b-checkout .confirmation__totals {
  background-color: transparent;
}
body .b-checkout .stripe-payment-elements-submit-button {
  width: 100%;
  margin-top: 1rem;
}
body .b-checkout select {
  color: var(--black);
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide {
  display: block;
  position: relative;
  visibility: hidden;
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide.is-initialized, .splide .splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play, .splide .splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.splide__arrows {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  padding-left: 1rem;
  padding-right: 1rem;
}
.splide__arrow {
  opacity: 1;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.35s ease-in-out;
  border-radius: 50%;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .splide__arrow:hover {
    background-color: var(--black);
  }
  .splide__arrow:hover svg path {
    fill: var(--white);
  }
}
.splide__arrow svg {
  height: 1.9rem;
  width: 1.9rem;
  overflow: hidden;
}
.splide__arrow svg path {
  transition: fill 0.25s ease-in-out;
}
.splide__arrow[disabled] {
  background-color: var(--white);
  cursor: not-allowed;
}
.splide__arrow[disabled] svg path {
  fill: var(--black);
}
.splide__arrow--square svg, .splide__arrow--round svg {
  height: 100%;
  width: 100%;
}
.splide__arrow--square svg path, .splide__arrow--square svg rect, .splide__arrow--square svg circle, .splide__arrow--round svg path, .splide__arrow--round svg rect, .splide__arrow--round svg circle {
  transition: fill 0.2s ease-in-out;
}
.splide__arrow--square[disabled] svg path, .splide__arrow--round[disabled] svg path {
  fill: var(--white);
}
.splide__arrow--round {
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .splide__arrow--round:hover svg path {
    fill: var(--orange);
  }
  .splide__arrow--round:hover svg circle {
    fill: var(--light-grey);
  }
}
.splide__arrow--square[disabled] {
  pointer-events: none;
}
.splide__arrow--square[disabled] svg path {
  fill: var(--black);
}
.splide__arrow--square[disabled] svg rect {
  fill: var(--white);
}
@media (hover: hover) and (pointer: fine) {
  .splide__arrow--square:hover svg path {
    fill: var(--orange);
  }
}
.splide__pagination {
  display: flex;
  padding: 0 2rem;
  gap: 3rem;
}
@media only screen and (min-width: 1180px) {
  .splide__pagination {
    padding: 0 6rem;
  }
}
.splide__pagination li {
  flex-grow: 1;
}
.splide__pagination__page {
  width: 100%;
  height: 2rem;
  background-color: transparent;
  border: 0;
  border-radius: 2px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.splide__pagination__page:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--grey);
  transition: width 0.2s ease-in-out, background-color 0.2s ease-in-out;
  border-radius: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .splide__pagination__page:hover:after {
    background-color: var(--black);
  }
}
.splide__pagination__page.is-active:after {
  background-color: var(--orange);
}
.splide__progress {
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  border-radius: 3px;
}
.splide__progress--dark {
  background: rgba(0, 0, 0, 0.1);
}
.splide__progress-bar {
  background: var(--white);
  height: 4px;
  transition: width 400ms ease;
  width: 0;
  border-radius: 3px;
}
.splide__progress-bar--dark {
  background: var(--orange);
}

.fullscreen-media {
  position: relative;
}
.fullscreen-media__bg {
  max-height: 100vh;
  background-color: var(--b-black);
}
.fullscreen-media__bg img,
.fullscreen-media__bg video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.b-fullscreen-media {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--b-off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--b-font);
  width: 100%;
  overflow: hidden;
}
.b-fullscreen-media .splide {
  width: 100%;
  transition: opacity 0.75s ease;
}
.is-intro-active .b-fullscreen-media .splide {
  opacity: 0;
}
.b-fullscreen-media__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  padding-top: 3rem;
  width: 100%;
}
.b-fullscreen-media__heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2.625rem;
  letter-spacing: 0.125rem;
}
@media only screen and (min-width: 1180px) {
  .b-fullscreen-media__heading {
    font-size: 9.375rem;
    line-height: 9.0625rem;
    letter-spacing: 0.5rem;
  }
}
.b-fullscreen-media__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1rem;
  text-align: left;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 43rem;
  transition: opacity 0.75s ease 0.25s, transform 0.75s ease 0.25s;
}
.is-intro-active .b-fullscreen-media__text {
  opacity: 0;
  transform: translateY(20px);
}
@media only screen and (min-width: 1180px) {
  .b-fullscreen-media__text {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}
.b-fullscreen-media__bg {
  max-height: unset;
  height: 90vh;
}
@media only screen and (min-width: 1180px) {
  .b-fullscreen-media__bg {
    height: 100vh;
  }
}

.big-text {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
@media only screen and (min-width: 1180px) {
  .big-text {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}
.big-text__wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 87rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (min-width: 1180px) {
  .big-text__wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.big-text__text {
  color: var(--b-black);
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 400;
  font-family: var(--b-font);
}
@media only screen and (min-width: 1180px) {
  .big-text__text {
    font-size: 2.5rem;
    line-height: 2.625rem;
    letter-spacing: 0.125rem;
  }
}

.media-list {
  background-color: var(--b-light-grey);
}
@media only screen and (min-width: 1180px) {
  .media-list__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
  }
}
@media only screen and (min-width: 1180px) {
  .media-list__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
    grid-column: span 1;
  }
  .media-list__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.media-list__content {
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
}
@media only screen and (min-width: 1180px) {
  .media-list__content {
    padding-right: 1rem;
  }
}
.media-list__title {
  color: var(--b-black);
  font-size: 0.875rem;
  line-height: 1rem;
  letter-spacing: 0.0625rem;
  font-weight: 400;
  font-family: var(--b-font-serif);
  text-align: center;
  margin-bottom: 2.25rem;
}
@media only screen and (min-width: 1180px) {
  .media-list__title {
    font-size: 2.375rem;
    line-height: 2.5rem;
  }
}
.media-list__list {
  width: 100%;
}
.media-list__item {
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0625rem;
  letter-spacing: 0.0625rem;
  font-family: var(--b-font-serif);
  padding: 0.75rem 1rem 0.54rem;
  border-bottom: 1px solid var(--b-grey);
  display: flex;
  flex-direction: column;
  gap: 0.63rem;
}
.media-list__item:first-child {
  border-top: 1px solid var(--b-grey);
}
.media-list__item-inner--line1 {
  font-size: 1.125rem;
}

.b-media-text {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media only screen and (min-width: 1180px) {
  .b-media-text {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width: 1180px) {
  .b-media-text__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.b-media-text__media {
  width: 100%;
}
.b-media-text__media img, .b-media-text__media video {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1180px) {
  .b-media-text__media {
    order: 2;
  }
}
@media only screen and (min-width: 1180px) {
  .reverse .b-media-text__media {
    order: 1;
  }
}
.b-media-text__content {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
}
@media only screen and (min-width: 1180px) {
  .b-media-text__content {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1180px) {
  .reverse .b-media-text__content {
    order: 2;
  }
}
@media only screen and (min-width: 1180px) {
  .b-media-text__content-inner {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.b-media-text__title, .b-media-text__text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (min-width: 1180px) {
  .b-media-text__title, .b-media-text__text {
    font-size: 1.25rem;
    line-height: normal;
  }
}
.b-media-text__title {
  margin-bottom: 1.75rem;
}
.b-media-text__text p {
  margin-bottom: 1rem;
}
.b-media-text__text p:last-child {
  margin-bottom: 0;
}
.b-media-text__button-wrapper {
  margin-top: 3rem;
}
@media only screen and (min-width: 1180px) {
  .b-media-text__button-wrapper {
    margin-top: 4rem;
  }
}
.b-media-text__button-wrapper .btn {
  width: 100%;
}

.media-ticker {
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 1180px) {
  .media-ticker {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
}
.media-ticker__asset {
  height: 65vw;
  width: auto;
}
@media only screen and (min-width: 1180px) {
  .media-ticker__asset {
    height: 30vw;
  }
}
.media-ticker__asset img, .media-ticker__asset video {
  position: relative;
  height: 65vw;
  width: auto;
}
@media only screen and (min-width: 1180px) {
  .media-ticker__asset img, .media-ticker__asset video {
    height: 30vw;
  }
}

.intro-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgb(170, 140, 62);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.75s ease;
  overflow: hidden;
}
.intro-wrapper.is-ended {
  transform: translateY(-100%);
}
.intro-wrapper__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1.5s ease, transform 0.75s ease;
}
.is-active .intro-wrapper__content {
  opacity: 1;
}
.is-ended .intro-wrapper__content {
  transform: translateY(20%);
}
.intro-wrapper svg {
  width: 80%;
  height: 50%;
}
@media only screen and (min-width: 1180px) {
  .intro-wrapper svg {
    width: 50%;
    height: 80%;
  }
}

.tk-neue-haas-grotesk-text {
  font-family: "neue-haas-grotesk-text", sans-serif;
}

.tk-plantin {
  font-family: "plantin", sans-serif;
}

body {
  font-family: var(--b-font);
}

.modules {
  padding-top: 0;
}

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