* {
  box-sizing: border-box;
}

:root {
  --cream: #F7F2E8;
  --terracotta: #C86A43;
  --charcoal: #1E1E1E;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
}

.coming-soon {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.68), transparent 38%),
    var(--cream);
}

.content {
  position: relative;
  z-index: 2;
  width: min(900px, 88vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cravo-logo {
  display: block;
  width: min(780px, 82vw);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  /* Keeps the generated transparent logo visually clean on the cream page. */
  mix-blend-mode: multiply;
}

.orange-line {
  width: clamp(95px, 12vw, 150px);
  height: 7px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--terracotta);
  transform: rotate(-2deg);
  position: relative;
}

.orange-line::before,
.orange-line::after {
  content: "";
  position: absolute;
  height: 7px;
  border-radius: 999px;
  background: var(--terracotta);
}

.orange-line::before {
  width: 29px;
  left: -48px;
  top: -11px;
  transform: rotate(-18deg);
}

.orange-line::after {
  width: 21px;
  right: -38px;
  top: 10px;
  transform: rotate(18deg);
}

.coming {
  margin-top: 34px;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 800;
  letter-spacing: .22em;
}

.decor {
  position: absolute;
  border-radius: 999px;
  background: var(--terracotta);
  opacity: .95;
}

.decor-1 {
  width: 115px;
  height: 12px;
  top: 18%;
  left: 9%;
  transform: rotate(-24deg);
}

.decor-2 {
  width: 75px;
  height: 10px;
  top: 27%;
  right: 11%;
  transform: rotate(32deg);
}

.decor-3 {
  width: 100px;
  height: 11px;
  bottom: 17%;
  right: 8%;
  transform: rotate(-22deg);
}

.decor-4 {
  width: 60px;
  height: 9px;
  bottom: 25%;
  left: 10%;
  transform: rotate(25deg);
}

@media (max-width: 600px) {
  .content {
    width: 92vw;
  }

  .cravo-logo {
    width: 88vw;
    max-height: 240px;
  }

  .orange-line {
    margin-top: 20px;
  }

  .coming {
    margin-top: 28px;
    font-size: 15px;
    letter-spacing: .17em;
  }

  .decor-1 {
    width: 70px;
    left: 5%;
  }

  .decor-2 {
    width: 50px;
    right: 5%;
  }

  .decor-3 {
    width: 65px;
    right: 5%;
  }

  .decor-4 {
    width: 45px;
    left: 4%;
  }
}
