:root {
  --background: #dfe6d8;
  --text: #173d2a;
  --muted: #315440;
  --moss: #8f9d79;
  --eucalyptus: #bdc9ae;
  --forest: #385b40;
  --cream: #f3f1e7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 8rem) clamp(2rem, 11vw, 10rem);
  isolation: isolate;
}

.organic-art {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.shape,
.contour {
  position: absolute;
  display: block;
}

.shape {
  animation: drift 12s ease-in-out infinite alternate;
}

.shape--top {
  top: -24%;
  left: -13%;
  width: min(47vw, 46rem);
  height: min(43vw, 34rem);
  border-radius: 39% 61% 69% 31% / 47% 38% 62% 53%;
  background: var(--moss);
}

.shape--right {
  top: -12%;
  right: -14%;
  width: min(38vw, 36rem);
  height: min(46vw, 39rem);
  border-radius: 61% 39% 34% 66% / 45% 57% 43% 55%;
  background: var(--cream);
  animation-delay: -5s;
}

.shape--bottom {
  right: -12%;
  bottom: -34%;
  width: min(60vw, 60rem);
  height: min(59vw, 49rem);
  border-radius: 62% 38% 0 0 / 49% 51% 0 0;
  background: var(--forest);
  animation-delay: -8s;
}

.shape--bottom::before {
  position: absolute;
  inset: -15% 24% 29% -25%;
  border-radius: 42% 58% 55% 45% / 64% 36% 64% 36%;
  background: var(--eucalyptus);
  content: "";
}

.contour {
  border: 2px solid rgba(243, 241, 231, 0.82);
  border-radius: 50%;
}

.contour--top {
  top: -19%;
  left: -8%;
  width: min(49vw, 47rem);
  height: min(54vw, 41rem);
  border-right-color: transparent;
  transform: rotate(-16deg);
}

.contour--side {
  top: 23%;
  right: -12%;
  width: min(28vw, 25rem);
  height: min(48vw, 39rem);
  border-color: rgba(76, 96, 61, 0.72);
  border-left-color: transparent;
  transform: rotate(22deg);
}

.contour--bottom {
  right: 10%;
  bottom: -21%;
  width: min(54vw, 53rem);
  height: min(36vw, 28rem);
  border-color: rgba(243, 241, 231, 0.86);
  border-top-color: transparent;
  transform: rotate(-8deg);
}

.content {
  width: min(67vw, 55rem);
  margin-top: 4vh;
  animation: reveal 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 9vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

p {
  margin: clamp(1.9rem, 4vw, 2.8rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

p span {
  display: block;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0.001deg);
  }

  to {
    transform: translate3d(0.8rem, -0.55rem, 0) rotate(1.5deg);
  }
}

@media (max-width: 640px) {
  .coming-soon {
    align-items: center;
    padding: 3rem 1.75rem;
  }

  .content {
    width: 100%;
    margin: 0;
  }

  .shape--top {
    top: -10%;
    left: -38%;
    width: 86vw;
    height: 55vw;
  }

  .shape--right {
    top: 2%;
    right: -38%;
    width: 76vw;
    height: 72vw;
  }

  .shape--bottom {
    right: -43%;
    bottom: -8%;
    width: 100vw;
    height: 70vw;
  }

  .contour--top {
    top: -5%;
    left: -37%;
    width: 88vw;
    height: 61vw;
  }

  .contour--side {
    top: 24%;
    right: -45%;
    width: 70vw;
    height: 105vw;
  }

  .contour--bottom {
    right: -5%;
    bottom: -8%;
    width: 96vw;
    height: 58vw;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(4rem, 20vw, 5.25rem);
    line-height: 0.94;
  }

  p {
    max-width: 20rem;
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content,
  .shape {
    animation: none;
  }
}
