:root {
  --ink: #35282b;
  --muted: #705b60;
  --rose: #d95f7a;
  --coral: #ef9271;
  --mint: #83bea9;
  --cream: #fff7f0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(239, 146, 113, 0.24), transparent 22rem),
    radial-gradient(circle at 82% 16%, rgba(131, 190, 169, 0.26), transparent 20rem),
    linear-gradient(135deg, var(--cream) 0%, #ffffff 52%, #eef8f4 100%);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 28px;
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(217, 95, 122, 0.16);
  border-radius: 42% 58% 46% 54%;
  content: "";
  transform: rotate(18deg);
}

.coming-soon::before {
  top: -140px;
  left: -120px;
}

.coming-soon::after {
  right: -130px;
  bottom: -120px;
  border-color: rgba(131, 190, 169, 0.24);
  border-radius: 56% 44% 52% 48%;
}

.announcement {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 780px);
  text-align: center;
}

.logo {
  display: block;
  width: min(72vw, 300px);
  max-height: 200px;
  margin: 0 auto 36px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(53, 40, 43, 0.13);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.8rem;
  line-height: 0.96;
}

.lead {
  max-width: 590px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.6;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 12px 18px;
  color: #4f3b40;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(53, 40, 43, 0.08);
}

.note::before {
  content: none;
}

@media (max-width: 720px) {
  h1 {
    font-size: 4.4rem;
  }

  .lead {
    font-size: 1.16rem;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding: 22px;
  }

  .logo {
    width: min(82vw, 250px);
    max-height: 160px;
    margin-bottom: 28px;
  }

  .eyebrow {
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .note {
    width: min(100%, 340px);
    justify-content: center;
    border-radius: 18px;
  }
}
