@font-face {
  font-family: "Geologica";
  src: url("../webfonts/Geologica-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../webfonts/Geologica-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --mo-green: #81cca0;
  --mo-ink: #000;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  background: var(--mo-green);
  color: var(--mo-ink);
  font-family: "Geologica", Arial, Helvetica, sans-serif;
}

.mo-stage {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--mo-green);
}

.mo-brand {
  position: absolute;
  top: 14.01%;
  left: 9.38%;
  width: 30.6%;
}

.mo-logo {
  display: block;
  width: 100%;
  height: auto;
}

.mo-character {
  position: absolute;
  top: auto;
  bottom: 8.294%;
  right: 10%;
  left: auto;
  width: min(30.85vw, calc(69.89vh - 8.278vw));
  aspect-ratio: 610.22 / 669.65;
}

.mo-character-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.mo-info {
  position: absolute;
  top: auto;
  bottom: 9.074%;
  left: 8.8%;
  width: 47.2%;
  color: var(--mo-ink);
}

.mo-info-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  column-gap: 25px;
  min-height: 34px;
  color: inherit;
  font-size: clamp(30px, 1.582vw, 30.3656px);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.mo-info-row + .mo-info-row {
  margin-top: 21.5px;
}

.mo-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 32px;
  max-height: 34px;
  justify-self: center;
}

.mo-info-row:hover,
.mo-info-row:focus-visible {
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
}

.mo-info-row:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.mo-location:hover {
  opacity: 1;
}

.mo-directions {
  margin-top: 11px;
  margin-left: 57px;
  color: inherit;
  font-size: clamp(19px, 1vw, 19.2px);
  font-weight: 400;
  line-height: 1.5;
}

.mo-directions p {
  margin: 0;
}

.mo-directions strong {
  font-weight: 600;
  letter-spacing: -0.12px;
}

@media (min-width: 768px) {
  .mo-directions p:last-child {
    letter-spacing: -0.18px;
    white-space: wrap;
  }
}

@media (min-width: 768px) and (min-aspect-ratio: 2/1) {
  .mo-info {
    transform: translateY(3vh);
  }
}

@media (max-width: 1023px) and (orientation: portrait) {
  .mo-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;
    padding: max(42px, 7svh) 20px max(35px, 6svh);
    overflow: visible;
  }

  .mo-brand {
    position: static;
    width: min(72vw, 330px);
    flex: 0 0 auto;
  }

  .mo-character {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(78vw, 390px);
    flex: 0 0 auto;
    margin-top: clamp(42px, 7svh, 72px) !important;
  }

  .mo-info {
    position: static;
    bottom: auto;
    width: min(100%, 620px);
    margin-top: clamp(48px, 8svh, 78px);
  }

  .mo-info-row {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 30px;
    font-size: clamp(18px, 5.5vw, 24px);
    line-height: 1.2;
  }

  .mo-info-row + .mo-info-row {
    margin-top: 18px;
  }

  .mo-icon {
    max-width: 28px;
    max-height: 30px;
  }

  .mo-directions {
    margin-top: 20px;
    margin-left: 44px;
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.48;
  }

  .mo-directions p + p {
    margin-top: 3px;
  }
}

@media (max-width: 359px) and (orientation: portrait) {
  .mo-stage {
    padding-inline: 16px;
  }

  .mo-info-row {
    grid-template-columns: 25px minmax(0, 1fr);
    column-gap: 12px;
    font-size: 18px;
  }

  .mo-icon {
    max-width: 25px;
    max-height: 27px;
  }

  .mo-directions {
    margin-left: 37px;
    font-size: 14px;
  }
}

@media (max-height: 650px) and (orientation: landscape) {
  .mo-info-row {
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 18px;
    font-size: clamp(12px, 1.582vw, 18px);
  }

  .mo-info-row + .mo-info-row {
    margin-top: 14px;
  }

  .mo-icon {
    max-width: 18px;
    max-height: 19px;
  }

  .mo-directions {
    margin-top: 7px;
    margin-left: 30px;
    font-size: clamp(8px, 1.019vw, 12px);
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
