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

:root {
  --cream: #f7eadc;
  --cream-deep: #edd9c5;
  --brown: #4a230b;
  --brown-soft: #6b3a1c;
  --orange: #f36d00;
  --white: #fffaf4;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(243,109,0,.10), transparent 28%),
    radial-gradient(circle at 82% 82%, rgba(74,35,11,.08), transparent 30%),
    linear-gradient(135deg, var(--cream) 0%, #fbf1e8 46%, var(--cream-deep) 100%);
  color: var(--brown);
  overflow: hidden;
}

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

.coming-soon::before,
.coming-soon::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(74,35,11,.08);
  transform: rotate(45deg);
  border-radius: 42px;
}

.coming-soon::before {
  left: -160px;
  bottom: -120px;
}

.coming-soon::after {
  right: -150px;
  top: -140px;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .24;
  pointer-events: none;
}

.glow-one {
  background: var(--orange);
  top: -190px;
  left: -140px;
}

.glow-two {
  background: var(--brown);
  right: -190px;
  bottom: -200px;
}

.card {
  width: min(760px, 100%);
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(38px, 6vw, 64px) clamp(26px, 6vw, 72px);
  border: 1px solid rgba(74,35,11,.10);
  border-radius: 34px;
  background: rgba(255,250,244,.58);
  box-shadow:
    0 24px 80px rgba(74,35,11,.10),
    inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  width: min(360px, 72vw);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  mix-blend-mode: multiply;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(280px, 70%);
  margin: 0 auto 28px;
}

.divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--orange));
}

.divider span:last-child {
  background: linear-gradient(to left, transparent, var(--orange));
}

.divider i {
  color: var(--orange);
  font-style: normal;
  font-size: 16px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brown-soft);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 9vw, 92px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--brown);
}

.subtitle {
  max-width: 580px;
  margin: 24px auto 0;
  font-size: clamp(15px, 2.4vw, 19px);
  line-height: 1.7;
  color: rgba(74,35,11,.76);
}

.tagline {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.tagline span:last-child {
  color: var(--orange);
}

.footer-note {
  margin-top: 42px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(74,35,11,.55);
}

@media (max-width: 600px) {
  body {
    overflow-y: auto;
  }

  .coming-soon {
    padding: 20px;
  }

  .card {
    border-radius: 26px;
  }

  .logo {
    width: min(300px, 82vw);
  }

  .footer-note {
    margin-top: 32px;
  }
}
