:root {
  color-scheme: dark;
  --gold: #ffd565;
  --ember: #ff6b25;
  --forest: #092218;
  --brand-orange: #f28a25;
  --brand-green: #65bd37;
  --brand-blue: #168fd1;
  --brand-yellow: #ffd13b;
  --ink: #08251d;
  --cream: #fff9e8;
  --ease-out-back: cubic-bezier(.16, 1.3, .36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--forest);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  min-height: 82svh;
  overflow: hidden;
  display: grid;
  place-items: end center;
  background: #203d30;
}

.hero__background,
.hero__sunwash,
.hero__volcano-glow,
.hero__mist,
.hero__vignette,
.embers,
.hero__ground {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__background {
  z-index: -7;
  inset: -4%;
  background: url("../images/background-desktop.webp") center 42% / cover no-repeat;
  transform: translate3d(
      calc(var(--pointer-x) * -0.5px),
      calc(var(--pointer-y) * -0.35px),
      0
    ) scale(1.08);
  animation: landscapeReveal 2.2s cubic-bezier(.16, 1, .3, 1) both;
  will-change: transform;
}

.hero__sunwash {
  z-index: -6;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 231, 171, .32), transparent 25%),
    linear-gradient(180deg, rgba(6, 24, 24, .03) 25%, rgba(3, 19, 13, .48) 86%, rgba(2, 13, 9, .88));
  mix-blend-mode: screen;
  opacity: .72;
}

.hero__volcano-glow {
  z-index: -5;
  width: 22rem;
  height: 22rem;
  inset: 1% 8% auto auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 103, 35, .48), rgba(255, 160, 62, .13) 34%, transparent 70%);
  filter: blur(24px);
  animation: volcanoPulse 3.6s ease-in-out infinite alternate;
}

.hero__vignette {
  z-index: 5;
  box-shadow: inset 0 0 15vw rgba(0, 10, 5, .65);
  background: linear-gradient(90deg, rgba(0, 12, 8, .38), transparent 24%, transparent 76%, rgba(0, 12, 8, .38));
}

.hero__mist {
  z-index: -3;
  inset: auto -25% -4%;
  height: 35%;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(210, 229, 215, .28), transparent 48%),
    radial-gradient(ellipse at 70% 60%, rgba(225, 231, 217, .22), transparent 45%);
  filter: blur(18px);
  opacity: .72;
}

.hero__mist--one {
  animation: mistDrift 16s ease-in-out infinite alternate;
}

.hero__mist--two {
  bottom: 7%;
  opacity: .38;
  transform: scaleX(-1);
  animation: mistDrift 22s ease-in-out -8s infinite alternate-reverse;
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: min(100%, 118rem);
  height: 82vh;
  height: 82svh;
  min-height: 34rem;
  display: grid;
  grid-template-columns: minmax(17rem, 1fr) minmax(24rem, 42rem) minmax(17rem, 1fr);
  align-items: center;
  justify-items: center;
}

.hero__content {
  z-index: 3;
  grid-column: 2;
  width: min(96%, 43rem);
  margin-top: -5vh;
  text-align: center;
  color: #fff;
  transform: translate3d(
    calc(var(--pointer-x) * .65px),
    calc(var(--pointer-y) * .45px),
    0
  );
  will-change: transform;
}

.hero__eyebrow {
  margin: 0 0 clamp(.5rem, 1.5vh, 1rem);
  color: var(--gold);
  font-size: clamp(.76rem, .9vw, 1rem);
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 2px 8px #07170d, 0 0 20px rgba(0, 0, 0, .8);
  opacity: 0;
  animation: riseIn .8s .65s ease-out forwards;
}

.hero__logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 .9rem .8rem rgba(0, 0, 0, .62));
  opacity: 0;
  transform-origin: 50% 50%;
  animation: logoArrival 1.15s .25s var(--ease-out-back) forwards,
             logoHover 5s 1.7s ease-in-out infinite;
}

.hero__tagline {
  margin: clamp(.4rem, 1vh, .8rem) auto 1.4rem;
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #06130d, 0 2px 3px rgba(0, 0, 0, .9);
  opacity: 0;
  animation: riseIn .8s .95s ease-out forwards;
}

.hero__announcement {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 3.2rem;
  padding: .85rem 1.25rem;
  border: 1px solid rgba(255, 227, 137, .68);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(5, 33, 20, .86), rgba(2, 19, 12, .9));
  box-shadow: 0 .7rem 2.3rem rgba(0, 0, 0, .36), inset 0 1px rgba(255, 255, 255, .12);
  color: #fff7d8;
  font-size: clamp(.78rem, .95vw, .95rem);
  font-weight: 850;
  letter-spacing: .105em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: riseIn .8s 1.15s ease-out forwards;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.hero__announcement:hover,
.hero__announcement:focus-visible {
  border-color: var(--brand-yellow);
  background: #062a1d;
  transform: translateY(-.12rem);
}

.hero__announcement-dot {
  width: .58rem;
  height: .58rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffb735;
  box-shadow: 0 0 0 .28rem rgba(255, 126, 35, .18), 0 0 1.1rem #ff6b25;
  animation: dotPulse 1.8s ease-in-out infinite;
}

.creature {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: min(41vw, 64vh, 45rem);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 2rem 1.6rem rgba(0, 8, 3, .72));
  will-change: transform;
}

.creature--dinosaur {
  right: -7%;
  transform-origin: 48% 100%;
  animation: dinosaurEntrance 1.25s .12s var(--ease-out-back) both,
             dinosaurBreathe 5.3s 1.55s ease-in-out infinite;
}

.creature--dragon {
  left: -6%;
  transform-origin: 55% 100%;
  animation: dragonEntrance 1.25s .05s var(--ease-out-back) both,
             dragonBreathe 4.7s 1.5s ease-in-out infinite;
}

.hero__ground {
  z-index: 3;
  inset: auto -4% -9%;
  height: 23%;
  background: linear-gradient(180deg, transparent, rgba(0, 16, 8, .65) 38%, #03160d 85%);
  filter: blur(4px);
}

.hero__scroll-cue {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 1.3rem;
  width: 1.55rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 1rem;
  transform: translateX(-50%);
  opacity: 0;
  animation: riseIn .8s 1.7s ease-out forwards;
}

.hero__scroll-cue span {
  position: absolute;
  left: 50%;
  top: .5rem;
  width: .22rem;
  height: .42rem;
  border-radius: 1rem;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

.ember {
  --size: 3px;
  --drift: 0px;
  position: absolute;
  z-index: 1;
  left: var(--left);
  bottom: -1rem;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #ffd971;
  box-shadow: 0 0 .6rem #ff5b1a;
  opacity: 0;
  animation: emberRise var(--duration) var(--delay) linear infinite;
}

@keyframes landscapeReveal {
  from { opacity: 0; transform: translate3d(0, 0, 0) scale(1.18); }
  to { opacity: 1; }
}

@keyframes logoArrival {
  0% { opacity: 0; transform: translateY(-3rem) scale(.76) rotate(-2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

@keyframes logoHover {
  0%, 100% { transform: translateY(0) rotate(-.35deg); }
  50% { transform: translateY(-.45rem) rotate(.35deg); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(1.2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dinosaurEntrance {
  from { opacity: 0; transform: translate3d(15%, 11%, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(calc(var(--pointer-x) * 1.05px), 0, 0) scale(1); }
}

@keyframes dragonEntrance {
  from { opacity: 0; transform: translate3d(-17%, 12%, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(calc(var(--pointer-x) * 1.2px), 0, 0) scale(1); }
}

@keyframes dinosaurBreathe {
  0%, 100% { transform: translate3d(calc(var(--pointer-x) * 1.05px), 0, 0) scale(1); }
  50% { transform: translate3d(calc(var(--pointer-x) * 1.05px), 0, 0) scale(1.006); }
}

@keyframes dragonBreathe {
  0%, 100% { transform: translate3d(calc(var(--pointer-x) * 1.2px), 0, 0) scale(1); }
  50% { transform: translate3d(calc(var(--pointer-x) * 1.2px), 0, 0) scale(1.006); }
}

@keyframes mistDrift {
  from { transform: translateX(-4%) scale(1); }
  to { transform: translateX(7%) scale(1.08); }
}

@keyframes volcanoPulse {
  from { opacity: .42; transform: scale(.86); }
  to { opacity: .85; transform: scale(1.15); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(.9); opacity: .75; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes scrollDrop {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  75%, 100% { opacity: 0; transform: translate(-50%, .8rem); }
}

@keyframes emberRise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.6); }
  12% { opacity: .9; }
  75% { opacity: .62; }
  100% { opacity: 0; transform: translate3d(var(--drift), -78vh, 0) scale(1.4); }
}

@media (max-width: 960px) {
  .hero__stage {
    grid-template-columns: 1fr;
  }

  .hero__content {
    grid-column: 1;
    align-self: start;
    width: min(74vw, 38rem);
    margin-top: clamp(5rem, 10vh, 7rem);
  }

  .creature {
    width: min(56vw, 35rem);
    bottom: 0;
  }

  .creature--dinosaur { right: -15%; }
  .creature--dragon { left: -15%; }
}

@media (max-width: 700px) {
  .hero__background {
    background-image: url("../images/background-mobile.webp");
    background-position: center 48%;
  }

  .hero__sunwash {
    background: linear-gradient(180deg, rgba(0, 16, 11, .05), rgba(0, 15, 9, .2) 48%, rgba(0, 10, 5, .78));
  }

  .hero__volcano-glow {
    top: 9%;
    right: -12%;
    width: 15rem;
    height: 15rem;
  }

  .hero__stage {
    min-height: 34rem;
  }

  .hero__content {
    width: min(94vw, 32rem);
    margin-top: max(3.7rem, 8vh);
    padding-inline: .7rem;
  }

  .hero__eyebrow {
    font-size: .7rem;
    letter-spacing: .17em;
  }

  .hero__logo {
    width: min(100%, 29rem);
    margin-inline: auto;
  }

  .hero__tagline {
    max-width: 25rem;
    margin-bottom: 1rem;
    font-size: clamp(.78rem, 3.2vw, 1rem);
  }

  .hero__announcement {
    min-height: 2.8rem;
    padding: .75rem .95rem;
    font-size: clamp(.66rem, 2.7vw, .82rem);
    letter-spacing: .07em;
  }

  .creature {
    bottom: 0;
    width: min(76vw, 31rem);
  }

  .creature--dinosaur {
    right: -28%;
  }

  .creature--dragon {
    left: -31%;
  }

  .hero__vignette {
    box-shadow: inset 0 0 24vw rgba(0, 10, 5, .55);
  }

  .hero__scroll-cue {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero__content {
    margin-top: max(3rem, 6vh);
  }

  .creature {
    width: 82vw;
    bottom: 0;
  }

  .creature--dinosaur { right: -35%; }
  .creature--dragon { left: -36%; }
}

@media (max-height: 700px) and (min-width: 701px) {
  .hero__content {
    margin-top: -2vh;
    width: min(44vw, 33rem);
  }

  .creature {
    width: min(36vw, 58vh, 32rem);
    bottom: 0;
  }

  .hero__scroll-cue { display: none; }
}

/* Full show site */

.section-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 4.5vw, 4.25rem) 0 clamp(4.8rem, 8vw, 8rem);
}

.section-inner {
  width: min(74rem, calc(100% - 2.4rem));
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 .7rem;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker--orange { color: #d95f08; }
.section-kicker--yellow { color: var(--brand-yellow); }
.section-kicker--green { color: #b3ff78; }

.section-heading {
  width: min(48rem, 100%);
  margin: 0 auto clamp(2.4rem, 5vw, 4.25rem);
  text-align: center;
}

.section-heading h2,
.story__copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.45rem, 5.7vw, 5rem);
  font-weight: 900;
  letter-spacing: .015em;
  line-height: .96;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 41rem;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.story {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 14%, rgba(242, 138, 37, .22), transparent 24rem),
    linear-gradient(135deg, #fff9e8 0%, #fffdf5 58%, #f2ead1 100%);
}

.story::before {
  content: "";
  position: absolute;
  top: -6.5rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  border: 2.2rem solid rgba(22, 143, 209, .14);
  border-radius: 50%;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, .92fr);
  gap: clamp(2.8rem, 6vw, 6rem);
  align-items: center;
}

.video-frame {
  position: relative;
  padding: clamp(.7rem, 1.2vw, 1rem);
  border: .32rem solid #18382c;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow) 36%, var(--brand-green) 67%, var(--brand-blue));
  box-shadow: 0 1.6rem 3.6rem rgba(10, 39, 29, .24), .7rem .7rem 0 rgba(10, 45, 34, .1);
  transform: rotate(-1deg);
}

.video-frame__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: .35rem solid #0b2119;
  border-radius: .55rem;
  background:
    linear-gradient(rgba(2, 21, 13, .25), rgba(2, 21, 13, .68)),
    url("../images/background-desktop.webp") center 50% / cover no-repeat;
}

.video-frame__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .13) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: screenGlint 7s ease-in-out infinite;
}

.video-frame__screen--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.customize-partial-edit-shortcut-button {
  color: #111;
}

.video-frame__glow {
  position: absolute;
  inset: 18% 25%;
  border-radius: 50%;
  background: rgba(255, 164, 46, .42);
  filter: blur(3rem);
}

.video-frame__badge {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: .25rem;
  padding: 1.15rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: .8rem;
  background: rgba(4, 25, 17, .78);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.video-frame__badge span:not(.play-mark) {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.video-frame__badge strong {
  color: var(--brand-yellow);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: .05em;
}

.play-mark {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: .35rem;
  border: .16rem solid rgba(255, 255, 255, .85);
  border-radius: 50%;
}

.play-mark::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: .72rem 0 0 1.05rem;
  border-top: .55rem solid transparent;
  border-bottom: .55rem solid transparent;
  border-left: .82rem solid #fff;
}

.video-frame__bolt {
  position: absolute;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #17291f;
  box-shadow: inset .08rem .08rem rgba(255, 255, 255, .36);
}

.video-frame__bolt--one { top: .38rem; left: .38rem; }
.video-frame__bolt--two { top: .38rem; right: .38rem; }
.video-frame__bolt--three { bottom: .38rem; left: .38rem; }
.video-frame__bolt--four { right: .38rem; bottom: .38rem; }

.story__copy h2 {
  color: #12382b;
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
}

.story__copy > p:not(.section-kicker) {
  margin: 1.2rem 0 0;
  color: #365248;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.72;
}

.story__promise {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.7rem;
}

.story__promise span {
  padding: .55rem .8rem;
  border: 1px solid rgba(8, 37, 29, .18);
  border-radius: .45rem;
  background: #fff;
  color: #173b30;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 .3rem .8rem rgba(8, 37, 29, .08);
}

.adventurers {
  color: #fff;
  background:
    radial-gradient(circle at 4% 15%, rgba(22, 143, 209, .36), transparent 25rem),
    radial-gradient(circle at 93% 83%, rgba(101, 189, 55, .22), transparent 23rem),
    #071f37;
}

.adventurers::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 3rem 3rem;
  pointer-events: none;
}

.adventurers .section-inner {
  position: relative;
  z-index: 1;
}

.adventurer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.adventurer-card {
  --card-colour: var(--brand-orange);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 1.2rem;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1.3rem 2.8rem rgba(0, 0, 0, .25);
}

.adventurer-card--green { --card-colour: var(--brand-green); }
.adventurer-card--blue { --card-colour: var(--brand-blue); }

.adventurer-card__portrait {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: .5rem solid var(--card-colour);
  background:
    linear-gradient(145deg, rgba(5, 31, 22, .28), rgba(5, 31, 22, .78)),
    url("../images/background-desktop.webp") center 56% / cover no-repeat;
}

.adventurer-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 .9rem .85rem rgba(7, 31, 55, .2));
}

.adventurer-card__body {
  padding: clamp(1.3rem, 2.4vw, 2rem);
}

.adventurer-card__role,
.creature-card__type {
  margin: 0 0 .45rem;
  color: color-mix(in srgb, var(--card-colour) 78%, #263b32);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.adventurer-card h3,
.creature-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
}

.adventurer-card__body > p:last-child,
.creature-card__body > p:last-child {
  margin: 1rem 0 0;
  color: #466058;
  font-size: .98rem;
  line-height: 1.65;
}

.creatures {
  color: #fff;
  background:
    radial-gradient(circle at 30% 0%, rgba(242, 138, 37, .46), transparent 32rem),
    radial-gradient(circle at 85% 70%, rgba(22, 143, 209, .32), transparent 30rem),
    linear-gradient(160deg, #174e35, #09291f 68%);
}

.creature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3.5vw, 3rem);
}

.creature-card {
  --card-colour: var(--brand-orange);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 27rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 1.5rem 3.2rem rgba(0, 0, 0, .32);
}

.creature-card--dinosaur { --card-colour: var(--brand-blue); }
.creature-card--explore { --card-colour: var(--brand-green); }

.creature-card__art {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  border-radius: calc(1.4rem - 1px) calc(1.4rem - 1px) 0 0;
  background:
    radial-gradient(circle at 50% 48%, color-mix(in srgb, var(--card-colour) 42%, #fff), transparent 58%),
    linear-gradient(165deg, color-mix(in srgb, var(--card-colour) 30%, #fff), #112d23);
}

.creature-card__art img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 155%;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 1.2rem 1rem rgba(0, 0, 0, .35));
}

.creature-card--dinosaur .creature-card__art img {
  width: 165%;
}

.creature-card--explore .creature-card__art img {
  top: 50%;
  bottom: auto;
  width: 78%;
  transform: translate(-50%, -50%);
}

.creatures .creature-card .creature-card__art img {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center center;
  border-radius: calc(1.4rem - 1px) calc(1.4rem - 1px) 0 0;
  transform: none;
}

.creature-card__body {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.tour {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 8%, rgba(22, 143, 209, .15), transparent 30rem),
    radial-gradient(circle at 0% 68%, rgba(101, 189, 55, .14), transparent 27rem),
    linear-gradient(135deg, #fff9e8, #fffdf8 55%, #eff7e8);
}

.tour__heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.tour__heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: .015em;
  line-height: .92;
  text-transform: uppercase;
}

.tour__heading > div:first-child > p:last-child {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: #496057;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.tour-list {
  display: grid;
  gap: 2.4rem;
}

.tour-month {
  --month-colour: var(--brand-orange);
}

.tour-month:nth-child(3n + 2) { --month-colour: var(--brand-green); }
.tour-month:nth-child(3n) { --month-colour: var(--brand-blue); }

.tour-month header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: .55rem;
}

.tour-month header::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: .25rem;
  border-radius: 1rem;
  background: var(--month-colour);
}

.tour-month h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.tour-month header span {
  grid-column: 3;
  grid-row: 1;
  color: #7c8581;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.tour-row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto auto;
  gap: 1.2rem;
  align-items: center;
  min-height: 4.85rem;
  padding: .65rem 1rem;
  border-bottom: 1px solid rgba(8, 37, 29, .12);
}

.tour-row:nth-child(odd) { background: rgba(8, 37, 29, .035); }

.tour-row time {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.tour-row time strong {
  min-width: 2.35rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.tour-row time span,
.tour-row > div span {
  color: #6a7570;
}

.tour-row time span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tour-row > div {
  display: grid;
  grid-template-columns: minmax(15rem, 1.2fr) minmax(10rem, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.tour-row > div strong { font-size: 1rem; }
.tour-row > div span { font-size: .93rem; }

.tour-row__shows {
  min-width: 5.3rem;
  color: #7a8580;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.tour-row__shows--multi {
  padding: .42rem .55rem;
  border-radius: .25rem;
  background: #102e24;
  color: #fff;
  text-align: center;
}

.tour-row__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.1rem;
  min-height: 2.75rem;
  padding: .68rem 1rem;
  border: 2px solid #102e24;
  border-radius: .45rem;
  background: var(--brand-orange);
  box-shadow: .22rem .22rem 0 #102e24;
  color: #102e24;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.tour-month:nth-child(3n + 2) .tour-row__book { background: var(--brand-green); }
.tour-month:nth-child(3n) .tour-row__book { background: var(--brand-blue); color: #fff; }

.tour-row__book:hover,
.tour-row__book:focus-visible {
  background: var(--brand-yellow);
  color: #102e24;
  box-shadow: .1rem .1rem 0 #102e24;
  transform: translate(.12rem, .12rem);
}

.tour__notice {
  margin: 2.5rem 0 0;
  padding: 1.1rem 1.3rem;
  border-left: .35rem solid var(--brand-yellow);
  background: #112e24;
  color: #fff;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.55;
}

.creature-card__type {
  color: color-mix(in srgb, var(--card-colour) 78%, #253d32);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 1.4rem;
  border-top: .45rem solid;
  border-image: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow), var(--brand-green), var(--brand-blue)) 1;
  background: #041a14;
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(22, 143, 209, .1);
}

.site-footer__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 1.2fr) .65fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.site-footer__brand {
  width: min(22rem, 100%);
  transition: transform .2s ease;
}

.site-footer__brand:hover { transform: translateY(-.2rem); }

.site-footer__brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 618;
  object-fit: contain;
  filter: drop-shadow(0 .65rem .6rem rgba(0, 0, 0, .42));
}

.site-footer__nav,
.site-footer__socials {
  display: grid;
  align-content: start;
  gap: .75rem;
}

.site-footer__nav > p,
.site-footer__socials > p {
  margin: 0 0 .3rem;
  color: var(--brand-yellow);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--brand-green);
  text-underline-offset: .28rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.social-links a {
  padding: .6rem .75rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .45rem;
  background: rgba(255, 255, 255, .06);
  font-size: .8rem;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--brand-blue);
  background: rgba(22, 143, 209, .18);
  transform: translateY(-.12rem);
}

.site-footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-footer__bottom p { margin: 0; }

.link-status {
  position: fixed;
  z-index: 30;
  right: 1rem;
  bottom: 1rem;
  max-width: min(25rem, calc(100% - 2rem));
  margin: 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(255, 209, 59, .55);
  border-radius: .65rem;
  background: #06261c;
  color: #fff;
  font-size: .88rem;
  font-weight: 750;
  box-shadow: 0 .7rem 2rem rgba(0, 0, 0, .35);
  opacity: 0;
  transform: translateY(.75rem);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.link-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .75, .25, 1);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes screenGlint {
  0%, 68% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

@media (max-width: 1100px) {
  .creature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creature-card {
    grid-template-columns: 1fr;
  }

  .creature-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - .6rem);
    justify-self: center;
  }

  .creature-card__art {
    min-height: 21rem;
  }

  .creature-card__art img {
    width: min(82%, 28rem);
  }

  .creature-card--dinosaur .creature-card__art img {
    width: min(88%, 29rem);
  }

  .creature-card--explore .creature-card__art img {
    width: min(72%, 24rem);
  }
}

@media (max-width: 820px) {
  .story__grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .story__copy { max-width: 41rem; }

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

  .adventurer-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - .5rem);
    justify-self: center;
  }

  .creature-grid {
    gap: 1.2rem;
  }

  .site-footer__brand { width: min(19rem, 74vw); }

  .tour-row > div {
    grid-template-columns: 1fr;
    gap: .15rem;
  }
}

@media (max-width: 620px) {
  .section-shell { padding: 2.75rem 0 4.5rem; }

  .section-inner { width: min(100% - 1.4rem, 34rem); }

  .story__grid,
  .adventurer-grid,
  .creature-grid {
    grid-template-columns: 1fr;
  }

  .adventurer-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .creature-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .video-frame { transform: none; }

  .creature-card__art { min-height: 19rem; }

  .site-footer__bottom {
    display: grid;
  }

  .tour-month header {
    grid-template-columns: auto 1fr;
  }

  .tour-month header span { display: none; }

  .tour-row {
    grid-template-columns: 4.8rem minmax(0, 1fr);
    gap: .65rem;
    padding-inline: .55rem;
  }

  .tour-row time { gap: .45rem; }
  .tour-row time strong { min-width: 2rem; font-size: 1.75rem; }
  .tour-row time span { font-size: .6rem; }
  .tour-row__shows { grid-column: 2; justify-self: start; text-align: left; }

  .tour-row__book {
    grid-column: 2;
    justify-self: start;
    min-width: 7.5rem;
    margin-top: .3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ember { display: none; }

  .reveal-ready .reveal,
  .reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
