/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
/* COLORS */
:root {
  --black: #151515;
  --gold: #a0915a;
  --gray: #a0a0a0;
  --red: #ed1c24;
  --white: #ffffff;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: clip;
}

body {
  background-color: var(--black);
  background-image: url("../img/backgrounds/wave-sm.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: var(--white);
  cursor: url("../img/cursors/skull.png"), auto;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  overflow-x: clip;
  padding: 0 0 40vw;
  max-width: 100vw;
}
body * {
  box-sizing: border-box;
  word-break: break-word;
  word-wrap: break-word;
}
body *:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}

/* SPLIDE CORE */
@keyframes splide-loading {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: 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 {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0 !important;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s infinite linear;
  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 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__play {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: visible;
  position: relative;
  z-index: 0;
}

/* We are not sure where this will live just yet, so just in case all
   component class names should be prefixed with 'wdk' to avoid
   potential style conflicts. */
/* MOLECULE: Icon Button */
.wdk-btn-icon {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  border: none;
  color: var(--white);
  display: inline-flex;
  flex-flow: column;
  flex-shrink: 0;
  height: 60px;
  justify-content: center;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  transition: background 500ms ease;
  width: 60px;
}
.wdk-btn-icon img {
  display: block;
  height: auto;
  pointer-events: none;
  width: 28px;
}
.wdk-btn-icon:link, .wdk-btn-icon:visited {
  background: var(--red);
}
.wdk-btn-icon:hover, .wdk-btn-icon:focus, .wdk-btn-icon:active {
  background: var(--gold);
}
.wdk-btn-icon[disabled] {
  background: var(--black) !important;
  color: var(--gray) !important;
}

/* MOLECULE: Reset Button */
.wdk-btn-reset {
  background: transparent;
  border: none;
  color: var(--white);
  font: 900 20px/1 "Hanken Grotesk", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  transition: color 500ms ease;
}
.wdk-btn-reset:link, .wdk-btn-reset:visited {
  color: var(--white);
}
.wdk-btn-reset:hover, .wdk-btn-reset:focus, .wdk-btn-reset:active {
  color: var(--gold);
}

/* MOLECULE: Text Button */
.wdk-btn-text {
  background: var(--red);
  border-radius: 100px;
  border: none;
  color: var(--white);
  display: block;
  font: 900 20px/1 "Hanken Grotesk", sans-serif;
  margin: 0;
  padding: 20px 24px;
  text-align: center;
  text-transform: uppercase;
  transition: background 500ms ease;
  width: 100%;
}
.wdk-btn-text:link, .wdk-btn-text:visited {
  background: var(--red);
}
.wdk-btn-text:hover, .wdk-btn-text:focus, .wdk-btn-text:active {
  background: var(--gold);
}
.wdk-btn-text[disabled] {
  background: var(--black) !important;
  color: var(--gray) !important;
}

/* MOLECULE: Generating */
.wdk-generating {
  align-items: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 240px 0;
}
.wdk-generating img {
  animation: 3s fadeOscillate infinite;
  width: 60px;
  height: 74px;
  position: relative;
  z-index: 1;
}
.wdk-generating p {
  animation: 32s fadeOscillate infinite;
  font: 900 16px/1.25 "Archivo", sans-serif;
  position: relative;
  z-index: 1;
}
.wdk-generating:after {
  content: "";
  background: rgba(21, 21, 21, 0.5);
  position: absolute;
  inset: 0;
  height: auto;
  width: auto;
  z-index: 0;
}

@keyframes fadeOscillate {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
/* MOLECULE: Actions, Input & Label */
.wdk-actions {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}
.wdk-actions > *:only-child {
  margin-left: auto;
}

.wdk-input {
  align-self: end;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 10px;
  color: var(--black);
  display: block;
  font: 400 16px/1.5 "Hanken Grotesk", sans-serif;
  padding: 20px 24px;
  width: 100%;
}
.wdk-input:invalid ~ .wdk-actions .wdk-btn-icon.next,
.wdk-input:invalid ~ .wdk-actions .wdk-btn-text {
  background: var(--black);
  color: var(--gray);
  pointer-events: none;
}
.wdk-input:invalid ~ .wdk-actions .wdk-btn-icon.next img,
.wdk-input:invalid ~ .wdk-actions .wdk-btn-text img {
  opacity: 0.625;
}

.wdk-label {
  align-self: start;
  background: var(--black);
  border: 2px solid var(--gray);
  border-radius: 10px;
  color: var(--white);
  display: block;
  font: 400 16px/1.5 "Hanken Grotesk", sans-serif;
  font-style: italic;
  padding: 20px 24px;
  width: 100%;
}
.wdk-label span {
  font-style: normal;
}

/* COMPONENT: Header (includes Vanitas ticketing link) */
.wdk-header {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 500;
}
.wdk-header__logo {
  display: block;
  margin: 0 auto 40px;
  padding: 20px 30px 16px;
  transition: background 500ms ease;
  width: 100%;
}
.wdk-header__logo:link, .wdk-header__logo:visited {
  background: var(--red);
}
.wdk-header__logo:hover, .wdk-header__logo:focus, .wdk-header__logo:active {
  background: var(--gold);
}
.wdk-header__logo img {
  margin: 0 auto;
  max-width: 524px;
}
.wdk-header__link {
  display: block;
  height: auto;
  position: fixed;
  width: 160px;
  z-index: 1000;
}
.wdk-header__link svg {
  overflow: visible;
  pointer-events: none;
}
.wdk-header__link svg .outer {
  transition: all 500ms ease;
  transform-origin: bottom right;
}
.wdk-header__link:hover svg .outer, .wdk-header__link:active svg .outer, .wdk-header__link:focus svg .outer {
  transform: translate(-2.5%, -52.5%) rotate(16deg);
}

/* COMPONENT: Masthead */
.wdk-masthead {
  align-items: center;
  animation: fadeGold linear forwards;
  animation-timeline: view();
  background-image: url("../img/backgrounds/wave-lg.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 96px 20px;
  width: 100%;
  margin: 0 auto 60px;
}
.wdk-masthead__logo {
  max-width: 360px;
  margin: 0 0 32px;
  position: relative;
  z-index: 2;
}
.wdk-masthead__photo {
  animation: spinDown linear forwards;
  animation-timeline: view();
  margin: 0 0 144px;
  max-width: 360px;
  position: relative;
  transform-origin: center center;
  z-index: 1;
}
.wdk-masthead__photo figcaption {
  margin-top: 12px;
  font: 400 14px/1.25 "Archivo", sans-serif;
}
.wdk-masthead__content {
  margin: 0;
  padding: 0 20px;
  max-width: 340px;
}
.wdk-masthead__content h2 {
  margin: 0;
  text-align: center;
}
.wdk-masthead__content h2 img {
  display: block;
  margin: 0 auto;
  max-width: 297px;
  height: auto;
}
.wdk-masthead__content p {
  margin: 20px 0 0;
  font: 800 15px/1.6 "Archivo", sans-serif;
  text-align: center;
}

@keyframes spinDown {
  0% {
    rotate: 15deg;
    scale: 0.175;
    translate: 12.5% -64%;
  }
  25% {
    rotate: 15deg;
    scale: 0.175;
    translate: 12.5% -64%;
  }
  50% {
    rotate: 0deg;
    scale: 1;
    translate: 0;
  }
  100% {
    rotate: 0deg;
    scale: 1;
    translate: 0;
  }
}
@keyframes fadeGold {
  0% {
    background-color: var(--black);
  }
  50% {
    background-color: var(--black);
  }
  75% {
    background-color: var(--gold);
  }
  100% {
    background-color: var(--gold);
  }
}
/* COMPONENT: Generate Your Own Eulogy (Splide) */
.wdk-eulogy {
  margin: 60px auto 0;
  max-width: 1920px;
  padding: 0 20px;
}
.wdk-eulogy__wrapper {
  background-image: url("../img/eulogy/ponder.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 4px solid var(--gold);
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.wdk-eulogy__wrapper div:not(.splide__slide)[aria-hidden=true] {
  display: none;
}
.wdk-eulogy__intro h2 {
  margin: 0 0 20px;
  width: 100%;
  text-align: center;
}
.wdk-eulogy__intro h2 img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 313px;
  height: auto;
}
.wdk-eulogy__intro p {
  font: 800 15px/1.5 "Archivo", sans-serif;
  text-align: center;
  text-wrap: balance;
}
.wdk-eulogy .splide__track {
  overflow: hidden;
}
.wdk-eulogy .splide__slide {
  align-items: end;
  display: flex;
  flex-flow: column;
  gap: 24px;
  padding: 8px;
  justify-content: end;
}
.wdk-eulogy__disclaimer {
  align-items: center;
  display: flex;
  flex-flow: column;
  gap: 24px;
  justify-content: center;
}
.wdk-eulogy__results {
  align-items: center;
  display: flex;
  flex-flow: column;
  gap: 24px;
  justify-content: center;
}
.wdk-eulogy__results img {
  max-width: 1024px;
}
.wdk-eulogy__copy {
  background: var(--black);
  border-radius: 10px;
  border: 2px solid #393939;
  font: 400 16px/1.5 "Hanken Grotesk", sans-serif;
  max-height: 352px;
  max-width: 592px;
  overflow-y: auto;
  padding: 20px;
  width: 100%;
}
.wdk-eulogy.initial .wdk-eulogy__intro {
  color: transparent;
  background-image: linear-gradient(135deg, var(--white) 33.3333%, var(--black) 66.6666%);
  background-size: 500% auto;
  background-position: bottom right;
  background-clip: text;
}
.wdk-eulogy.initial .wdk-eulogy__intro h2 {
  opacity: 0;
}
.wdk-eulogy.animate .wdk-eulogy__intro {
  background-position: top left;
  transition: background-position 2500ms ease;
}
.wdk-eulogy.animate .wdk-eulogy__intro h2 {
  opacity: 1;
  transition: opacity 2500ms ease;
}

/* COMPONENTS: What to Do With Your Hands (Splide) */
.wdk-hands {
  margin: 60px auto 0;
  padding: 0 20px;
}
.wdk-hands h2 {
  color: var(--gold);
  font: 900 30px/1.15 "Archivo", sans-serif;
  text-align: center;
  text-wrap: balance;
}
.wdk-hands .splide__track {
  cursor: url("../img/cursors/drag-black.png"), auto;
}
.wdk-hands .splide__slide {
  align-items: center;
  background: var(--white);
  border-radius: 11px;
  color: var(--black);
  display: flex;
  flex-flow: column;
  gap: 20px;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.wdk-hands .splide__slide img {
  width: auto;
  height: auto;
  max-width: 127px;
  max-height: 111px;
  object-fit: contain;
}
.wdk-hands .splide__slide p {
  font: 900 15px/1.333 "Hanken Grotesk", sans-serif;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
.wdk-hands.initial .splide__slide {
  opacity: 0;
  translate: 100% 0%;
}
.wdk-hands.animate .splide__slide {
  opacity: 1;
  transition: all 500ms ease;
  translate: 0% 0%;
}
.wdk-hands.animate .splide__slide:nth-child(2) {
  transition-delay: 50ms;
}
.wdk-hands.animate .splide__slide:nth-child(3) {
  transition-delay: 100ms;
}
.wdk-hands.animate .splide__slide:nth-child(4) {
  transition-delay: 150ms;
}
.wdk-hands.animate .splide__slide:nth-child(5) {
  transition-delay: 200ms;
}
.wdk-hands.animate .splide__slide:nth-child(6) {
  transition-delay: 250ms;
}
.wdk-hands.animate .splide__slide:nth-child(7) {
  transition-delay: 300ms;
}
.wdk-hands.animate .splide__slide:nth-child(8) {
  transition-delay: 350ms;
}
.wdk-hands.animate .splide__slide:nth-child(9) {
  transition-delay: 400ms;
}
.wdk-hands.animate .splide__slide:nth-child(10) {
  transition-delay: 450ms;
}
.wdk-hands.animate .splide__slide:nth-child(11) {
  transition-delay: 500ms;
}
.wdk-hands.animate .splide__slide:nth-child(12) {
  transition-delay: 550ms;
}

/* COMPONENT: Generate Your Own Tombstone (Splide) */
.wdk-tombstone {
  margin: 60px auto 0;
  max-width: 1920px;
  padding: 0 20px;
}
.wdk-tombstone__wrapper {
  background: linear-gradient(0deg, #000 0.96%, rgba(0, 0, 0, 0.2) 18.27%, rgba(0, 0, 0, 0) 100%), url("../img/tombstone/texture.webp") -197.647px -165px/220.502% 146.944% no-repeat;
  border-radius: 20px;
  border: 4px solid var(--gold);
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.wdk-tombstone__wrapper div:not(.splide__slide)[aria-hidden=true] {
  display: none;
}
.wdk-tombstone__intro h2 {
  margin: 0 0 20px;
  text-align: center;
}
.wdk-tombstone__intro h2 img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 313px;
  height: auto;
}
.wdk-tombstone__intro p {
  font: 800 15px/1.5 "Archivo", sans-serif;
  text-align: center;
  text-wrap: balance;
}
.wdk-tombstone .splide__track {
  overflow: hidden;
}
.wdk-tombstone .splide__slide {
  align-items: end;
  display: flex;
  flex-flow: column;
  gap: 24px;
  padding: 8px;
  justify-content: end;
}
.wdk-tombstone__disclaimer {
  align-items: center;
  display: flex;
  flex-flow: column;
  gap: 24px;
  justify-content: center;
}
.wdk-tombstone__legal {
  background: var(--black);
  border-radius: 10px;
  border: 2px solid #393939;
  font: 400 16px/1.5 "Hanken Grotesk", sans-serif;
  max-height: 352px;
  max-width: 592px;
  overflow-y: auto;
  padding: 20px;
  width: 100%;
}
.wdk-tombstone__results {
  align-items: center;
  display: flex;
  flex-flow: column;
  gap: 24px;
  justify-content: center;
}
.wdk-tombstone__results img {
  max-width: 1024px;
}
.wdk-tombstone.initial .wdk-tombstone__intro {
  color: transparent;
  background-image: linear-gradient(135deg, var(--white) 33.3333%, var(--black) 66.6666%);
  background-size: 500% auto;
  background-position: bottom right;
  background-clip: text;
}
.wdk-tombstone.initial .wdk-tombstone__intro img {
  opacity: 0;
}
.wdk-tombstone.animate .wdk-tombstone__intro {
  background-position: top left;
  transition: background-position 2500ms ease;
}
.wdk-tombstone.animate .wdk-tombstone__intro img {
  opacity: 1;
  transition: opacity 2500ms ease;
}

/* COMPONENT: Lookbook for the Afterlife (Splide) */
.wdk-lookbook {
  margin: 100px auto 0;
  max-width: 1920px;
  padding: 0 20px;
}
.wdk-lookbook h2 {
  margin: 0 0 40px;
}
.wdk-lookbook h2 img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 362px;
  height: auto;
}
.wdk-lookbook .splide__slider {
  background-image: url("../img/lookbook/coffin.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 209px auto;
}
.wdk-lookbook .splide__track {
  cursor: url("../img/cursors/drag-white.png"), auto;
}
.wdk-lookbook .splide__slide img {
  display: block;
  margin: 0 auto 16px;
  transition: rotate 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 209px;
}
.wdk-lookbook .splide__slide p {
  font: 900 15px/1.333 "Hanken Grotesk", sans-serif;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
.wdk-lookbook .splide__slide.is-active p {
  opacity: 1;
  transition: opacity 500ms ease;
  transition-delay: 500ms;
}
.wdk-lookbook.dragleft .splide__slide img {
  rotate: -15deg;
}
.wdk-lookbook.dragleft .splide__slide p {
  opacity: 0;
  transition: none;
}
.wdk-lookbook.dragright .splide__slide img {
  rotate: 15deg;
}
.wdk-lookbook.dragright .splide__slide p {
  opacity: 0;
  transition: none;
}
.wdk-lookbook.initial h2 {
  color: transparent;
  background-image: linear-gradient(135deg, var(--white) 33.3333%, var(--black) 66.6666%);
  background-size: 500% auto;
  background-position: bottom right;
  background-clip: text;
}
.wdk-lookbook.initial h2 img {
  opacity: 0;
}
.wdk-lookbook.animate h2 {
  background-position: top left;
  transition: background-position 2500ms ease;
}
.wdk-lookbook.animate h2 img {
  opacity: 1;
  transition: opacity 2500ms ease;
}

/* COMPONENT: Where Will You Spend Eternity? */
.wdk-eternity {
  margin: 72px auto 0;
  max-width: 1920px;
  padding: 0 20px;
}
.wdk-eternity__wrapper {
  background-image: url("../img/eternity/shocked.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 20px;
  border: 4px solid var(--gold);
  overflow: hidden;
  padding: 24px 24px 312px;
  position: relative;
}
.wdk-eternity__content h2 {
  margin: 0 0 16px;
  text-align: center;
}
.wdk-eternity__content h2 img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 313px;
  height: auto;
}
.wdk-eternity__content p {
  font: 800 15px/1.5 "Archivo", sans-serif;
  margin: 0 0 24px;
}
.wdk-eternity__heaven {
  bottom: 0;
  left: 40%;
  position: absolute;
  rotate: -90deg;
  transition: translate 500ms ease, rotate 500ms ease;
  translate: -100% 100%;
  width: 244px;
}
.wdk-eternity__hell {
  bottom: 0;
  left: 60%;
  position: absolute;
  rotate: 90deg;
  transition: translate 500ms ease, rotate 500ms ease;
  translate: 0% 100%;
  width: 245px;
}
.wdk-eternity [aria-hidden=false] {
  rotate: 0deg !important;
  translate: -50% 0 !important;
}
.wdk-eternity.initial .wdk-eternity__content {
  color: transparent;
  background-image: linear-gradient(135deg, var(--white) 33.3333%, var(--black) 66.6666%);
  background-size: 500% auto;
  background-position: bottom right;
  background-clip: text;
}
.wdk-eternity.initial .wdk-eternity__content img {
  opacity: 0;
}
.wdk-eternity.animate .wdk-eternity__content {
  background-position: top left;
  transition: background-position 2500ms ease;
}
.wdk-eternity.animate .wdk-eternity__content img {
  opacity: 1;
  transition: opacity 2500ms ease;
}

/* COMPONENT: Tickets */
.wdk-tickets {
  font: 900 32px/1 "Archivo", sans-serif;
  font-size: min(4.875vw, 32px);
  margin: 32px auto 24px;
  max-width: 1920px;
}
.wdk-tickets a {
  align-items: start;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-decoration: none;
}
.wdk-tickets a:hover span, .wdk-tickets a:focus span, .wdk-tickets a:active span {
  text-decoration: underline;
}
.wdk-tickets span {
  display: block;
  white-space: nowrap;
}
.wdk-tickets span:first-child {
  align-self: end;
  animation: slideRight linear forwards;
  animation-timeline: view();
  color: var(--gold);
  padding-right: 20px;
}
.wdk-tickets span:last-child {
  align-self: start;
  animation: slideLeft linear forwards;
  animation-timeline: view();
  color: var(--white);
  padding-left: 20px;
}

@keyframes slideLeft {
  0% {
    translate: 100% 0%;
  }
  66.6666% {
    translate: 0% 0%;
  }
}
@keyframes slideRight {
  0% {
    translate: -100% 0%;
  }
  66.6666% {
    translate: 0% 0%;
  }
}
/* COMPONENT: Curated UGC Social Feed (Splide) */
.wdk-feed {
  margin-top: 20px;
  padding: 0 20px;
  position: relative;
}
.wdk-feed .splide__track {
  cursor: url("../img/cursors/pause.png"), auto;
}
.wdk-feed__toggle {
  background: transparent;
  border: none;
  display: none;
  position: absolute;
  right: 20px;
  top: 100%;
  translate: 0% -50%;
}
.wdk-feed__toggle img {
  pointer-events: none;
}
.wdk-feed__toggle[aria-pressed=false] .wdk-feed__pause {
  display: block;
}
.wdk-feed__toggle[aria-pressed=false] .wdk-feed__play {
  display: none;
}
.wdk-feed__toggle[aria-pressed=true] .wdk-feed__pause {
  display: none;
}
.wdk-feed__toggle[aria-pressed=true] .wdk-feed__play {
  display: block;
}

/* COMPONENT: Footer (includes social and secondary logo) */
.wdk-footer {
  align-items: center;
  display: flex;
  flex-flow: column;
  gap: 40px;
  justify-content: center;
  margin: 96px 0 0;
  padding: 0 20px;
}
.wdk-footer a {
  display: block;
  transition: scale 500ms ease;
}
.wdk-footer__social {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 24px 64px;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.wdk-footer__social a:hover, .wdk-footer__social a:focus, .wdk-footer__social a:active {
  scale: 1.2;
}
.wdk-footer__logo:hover, .wdk-footer__logo:focus, .wdk-footer__logo:active {
  scale: 1.05;
}
.wdk-footer__logo img {
  max-width: 785px;
}

/* RESPONSIVE */
@media (pointer: none) {
  html,
  body {
    overflow-x: hidden;
    width: 100vw;
  }
  .wdk-feed .splide-track {
    cursor: auto;
  }
  .wdk-feed .wdk-feed__toggle {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .wdk-lookbook .splide__slider {
    width: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .wdk-header__link {
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  body {
    background-image: url("../img/backgrounds/wave-lg.svg");
    padding-bottom: 280px;
  }
  .wdk-btn-text {
    max-width: 320px;
  }
  .wdk-actions {
    justify-content: end;
  }
  .wdk-input,
  .wdk-label {
    font-size: 18px;
    width: 75%;
  }
  .wdk-header__logo {
    margin: 60px auto 80px;
    max-width: 592px;
    padding: 28px 32px 24px;
    width: 50%;
  }
  .wdk-masthead {
    margin: 0 auto 120px;
    padding: 224px 20px 160px;
  }
  .wdk-masthead__logo {
    margin-bottom: 64px;
    max-width: 792px;
  }
  .wdk-masthead__photo {
    margin: 0 20px 64px;
    max-width: 792px;
  }
  .wdk-masthead__content {
    max-width: 592px;
  }
  .wdk-masthead__content h1 img {
    max-width: 396px;
  }
  .wdk-masthead__content p {
    font-size: 20px;
    line-height: 1.5;
  }
  .wdk-eulogy {
    margin: 120px auto 0;
    padding: 0 50px;
  }
  .wdk-eulogy__intro p {
    font-size: 20px;
  }
  .wdk-eulogy__results img {
    width: 50%;
  }
  .wdk-hands {
    margin: 120px auto 0;
    padding: 0 50px;
  }
  .wdk-tombstone {
    margin: 120px auto 0;
    padding: 0 50px;
  }
  .wdk-tombstone__intro p {
    font-size: 20px;
  }
  .wdk-tombstone__results img {
    width: 50%;
  }
  .wdk-lookbook {
    padding: 0 50px;
  }
  .wdk-lookbook .splide__slider {
    background-size: 285px auto;
  }
  .wdk-lookbook .splide__slide img {
    margin-bottom: 24px;
    width: 285px;
  }
  .wdk-eternity {
    margin: 100px auto 0;
    padding: 0 50px;
  }
  .wdk-eternity__content h2 {
    font-size: 42px;
    line-height: 1;
  }
  .wdk-eternity__content h2 strong {
    font-size: clamp(64px, 9vw, 120px);
    letter-spacing: 4.8px;
  }
  .wdk-eternity__content p {
    font-size: 20px;
  }
  .wdk-eternity .wdk-btn-text {
    margin: 0;
  }
  .wdk-tickets {
    font-size: 72px;
    font-size: min(4.875vw, 72px);
    line-height: 1;
    margin-top: 128px;
  }
  .wdk-tickets span:first-child {
    padding-right: 50px;
  }
  .wdk-tickets span:last-child {
    padding-left: 50px;
  }
  .wdk-feed {
    padding: 0 50px;
  }
  .wdk-footer {
    gap: 60px;
    margin-top: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .wdk-header__link {
    right: 50px;
    top: 60px;
  }
  .wdk-header__link svg {
    width: 177px;
  }
  .wdk-eulogy__wrapper {
    background-size: 40% auto;
    padding: 50px;
  }
  .wdk-eulogy__intake {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  .wdk-eulogy__intro {
    align-items: start;
    display: flex;
    flex-flow: column;
    flex-shrink: 0;
    width: calc(50% - 48px);
  }
  .wdk-eulogy__intro h2 img {
    max-width: 407px;
  }
  .wdk-eulogy__intro p {
    text-align: left;
  }
  .wdk-eulogy__questions {
    margin: 0 auto;
    width: 50%;
  }
  .wdk-tombstone__wrapper {
    background: linear-gradient(270deg, #000 0.69%, rgba(0, 0, 0, 0.2) 35.86%, rgba(0, 0, 0, 0) 71.71%), url("../img/tombstone/texture.webp") 50%/cover no-repeat;
    padding: 50px;
  }
  .wdk-tombstone__intake {
    display: flex;
    flex-flow: row-reverse nowrap;
    align-items: center;
    gap: 48px;
  }
  .wdk-tombstone__intro {
    flex-shrink: 0;
    width: 50%;
  }
  .wdk-tombstone__intro h2 img {
    max-width: 656px;
  }
  .wdk-tombstone__questions {
    margin: 0 auto;
  }
  .wdk-lookbook h2 img {
    max-width: 551px;
  }
  .wdk-eternity__wrapper {
    background-position: right center;
    background-size: 57.5% auto;
    padding: 100px 30% 100px 50px;
  }
  .wdk-eternity__content h2 {
    display: inline-flex;
    flex-flow: column;
    width: auto;
    text-align: left;
    align-items: center;
  }
  .wdk-eternity__content h2 img {
    max-width: 581px;
  }
  .wdk-eternity__content p {
    padding-right: 27.5%;
  }
  .wdk-eternity__heaven {
    left: 72.5%;
    width: 360px;
  }
  .wdk-eternity__hell {
    left: 80%;
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .wdk-eulogy__intro,
  .wdk-tombstone__intro {
    width: 50%;
  }
  .wdk-eulogy__questions,
  .wdk-tombstone__questions {
    width: 45%;
  }
  .wdk-tombstone__intake {
    gap: 5%;
  }
  .wdk-eternity__wrapper {
    background-position: right center;
    background-size: 57.5% auto;
    padding: 100px 40% 100px 50px;
  }
  .wdk-eternity__content p {
    padding-right: 17.5%;
  }
  .wdk-eternity__heaven {
    left: 72.5%;
    width: 490px;
  }
  .wdk-eternity__hell {
    left: 80%;
    width: 490px;
  }
}
@media screen and (min-width: 1400px) {
  .wdk-eulogy__intro,
  .wdk-tombstone__intro {
    width: 656px;
  }
  .wdk-tombstone__intake {
    gap: 10%;
  }
  .wdk-eternity__wrapper {
    padding: 100px 50% 100px 50px;
  }
  .wdk-eternity__content {
    height: 480px;
  }
  .wdk-eternity__content p {
    padding-right: 7.5%;
  }
  .wdk-eternity__heaven {
    width: 490px;
    left: 62.5%;
  }
  .wdk-eternity__hell {
    width: 490px;
    left: 85%;
  }
}

/*# sourceMappingURL=main.min.css.map */
