@font-face {
  font-family: "DM Serif Display";
  src: url("/assets/fonts/dm-serif-display-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("/assets/fonts/metropolis-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mrs Saint Delafield";
  src: url("/assets/fonts/mrs-saint-delafield-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Metropolis", "Avenir Next", Avenir, Arial, sans-serif;
  color: #050505;
  background: #fff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  background: #fff;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: clamp(9rem, 17vw, 15rem) minmax(18rem, 31rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  width: min(86vw, 80rem);
  padding-top: clamp(3.75rem, 9vh, 8rem);
  margin-left: clamp(2.5rem, 8vw, 9rem);
}

.monogram {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  padding-top: 0.6rem;
}

h1 {
  margin: 0;
  font-family: "DM Serif Display", Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2.15rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.destinations {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.75rem, 6vh, 4.75rem);
}

.destinations a {
  width: fit-content;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.4;
}

.destinations a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.destinations a span:first-child {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 180ms ease;
}

.destinations a:hover span:first-child,
.destinations a:focus-visible span:first-child {
  background-size: 100% 1px;
}

.destinations a:focus-visible {
  outline: 2px solid #050505;
  outline-offset: 5px;
}

.arrow {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.click-here {
  margin-left: -0.15rem;
  font-family: "Mrs Saint Delafield", cursive;
  font-size: 1.75em;
  line-height: 0.7;
  white-space: nowrap;
}

.destinations a:hover .arrow,
.destinations a:focus-visible .arrow {
  transform: translateX(0.25rem);
}

.wordmark {
  position: absolute;
  right: clamp(3rem, 9vw, 10rem);
  bottom: clamp(4rem, 11vh, 8rem);
  z-index: 1;
  display: block;
  width: clamp(20rem, 32vw, 31rem);
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 820px) {
  .coming-soon {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    overflow: hidden;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: min(100% - 3rem, 30rem);
    padding-top: clamp(2.5rem, 8vh, 4.5rem);
    margin: 0 auto;
    text-align: center;
  }

  .monogram {
    width: clamp(7.5rem, 34vw, 10.5rem);
  }

  .intro {
    padding: 0;
  }

  h1 {
    max-width: 18rem;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.02;
  }

  .destinations {
    justify-items: center;
    gap: 0.75rem;
    margin-top: 2.25rem;
  }

  .destinations a {
    font-size: 0.92rem;
  }

  .wordmark {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: min(20rem, 80vw);
    margin-top: auto;
    margin-bottom: clamp(3rem, 10vh, 5rem);
  }
}

@media (max-height: 620px) and (min-width: 821px) {
  .content {
    padding-top: 2.75rem;
  }

  .destinations {
    margin-top: 2.75rem;
  }

  .wordmark {
    width: 24rem;
  }
}

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