@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  color-scheme: light;
  --ink: #17324d;
  --muted: #5b7185;
  --paper: #f7f4ed;
  --sky: #c9e7ed;
  --sun: #f4c95d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

body::before {
  position: fixed;
  inset: 0 0 auto;
  height: 58vh;
  z-index: -1;
  background: var(--sky);
  content: '';
  clip-path: ellipse(82% 68% at 50% 12%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
}

.coming-soon {
  width: min(100%, 39rem);
  padding: clamp(2.75rem, 8vw, 6rem) clamp(1.75rem, 7vw, 5rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 50, 77, 0.09);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(23, 50, 77, 0.12);
  text-align: center;
  animation: arrive 700ms ease-out both;
}

.mark {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 2rem;
  place-items: center;
  background: var(--sun);
  border-radius: 50%;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.7rem, 8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.message {
  max-width: 28rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.business-info {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(23, 50, 77, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.business-info address {
  font-style: normal;
}

.business-info a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.business-info a:hover,
.business-info a:focus-visible {
  text-decoration: underline;
}

.ownership {
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

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

@media (max-width: 480px) {
  .page-shell {
    padding: 1rem;
  }

  .coming-soon {
    padding: 3rem 1.5rem;
  }
}
