:root {
  --turquoise: #8ccdc7;
  --orange: #f78b1f;
  --black: #111111;
  --cream: #f7f3e8;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--turquoise);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--turquoise);
  color: var(--black);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.holding-page {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--turquoise);
}

.hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25rem, 6vh, 4.5rem) 1.25rem clamp(1.5rem, 4vh, 3rem);
}

.hero__content {
  width: min(100%, 46rem);
  text-align: center;
}

.eyebrow {
  margin: 0 0 clamp(0.6rem, 1.5vh, 1rem);
  font-size: clamp(0.68rem, 1.25vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-lockup {
  position: relative;
  width: min(100%, 35rem);
  margin: 0 auto clamp(4.7rem, 8vw, 5.7rem);
}

.brand-lockup__title {
  margin: 0;
}

.brand-lockup__title img {
  width: 100%;
}

.brand-lockup__label {
  position: absolute;
  right: 0.25rem;
  bottom: clamp(-4.4rem, -7vw, -3.75rem);
  width: clamp(14.5rem, 47vw, 18rem);
  transform: rotate(-2deg);
}

.brand-lockup__label > img {
  width: 100%;
}

.brand-lockup__label p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.5rem 1rem;
  color: var(--orange);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(0.72rem, 2.3vw, 1.05rem);
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
  transform: rotate(5.5deg);
}

.intro {
  max-width: 42rem;
  margin: 0 auto;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.62;
}

.coming-soon {
  position: relative;
  display: inline-block;
  z-index: 0;
  margin: clamp(1.15rem, 2.5vh, 1.75rem) 0 0;
  padding: 0.12em 0.45em 0.18em;
  color: var(--cream);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.08;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.coming-soon::before {
  position: absolute;
  z-index: -1;
  inset: -0.08em -0.18em -0.02em;
  background: var(--orange);
  clip-path: polygon(1% 10%, 99% 0, 97% 90%, 2% 100%);
  content: "";
}

.runner-art {
  width: min(100%, 38rem);
  margin: clamp(-0.2rem, -0.5vh, 0rem) auto 0;
}

.runner-art img {
  width: 100%;
}

@media (max-width: 540px) {
  .hero {
    align-items: flex-start;
    padding-top: 2.4rem;
  }

  .brand-lockup {
    margin-bottom: 4.35rem;
  }

  .brand-lockup__label {
    right: -0.2rem;
    bottom: -3.7rem;
  }

  .intro {
    max-width: 22rem;
  }

  .runner-art {
    width: min(100%, 31rem);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (max-height: 760px) and (min-width: 700px) {
  .hero {
    align-items: flex-start;
    padding-top: 2.25rem;
  }

  .brand-lockup {
    width: min(100%, 30rem);
    margin-bottom: 4.5rem;
  }

  .runner-art {
    width: min(100%, 31rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    animation: arrive 700ms ease-out both;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
