:root {
  --rose: #c96f78;
  --cocoa: #4d2d1f;
  --gold: #b98733;
  --soft-pink: #fff5f6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, #ffffff 0, var(--soft-pink) 48%, #ffffff 100%);
}

.coming-soon {
  min-height: 78vh;
  padding: 48px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-logo {
  width: min(72vw, 520px);
  height: auto;
  display: block;
}

h1 {
  margin: 26px 0 0;
  color: var(--rose);
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.site-footer {
  padding: 18px 20px 28px;
  display: flex;
  justify-content: center;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: min(46vw, 210px);
  height: auto;
  display: block;
}

@media (max-width: 520px) {
  .coming-soon {
    min-height: 74vh;
    padding-top: 32px;
  }

  .main-logo {
    width: min(86vw, 380px);
  }

  .site-footer {
    padding-bottom: 22px;
  }
}
