:root {
  --bg: #F6EFE9;
  --text: #4a4038;
  --muted: #7b6f66;
  --white-soft: rgba(255, 255, 255, 0.48);
  --border: rgba(74, 64, 56, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.75), transparent 32%),
    radial-gradient(circle at bottom right, rgba(214,198,184,0.65), transparent 34%),
    linear-gradient(135deg, var(--bg), #fffaf6);
}

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

.card {
  width: min(760px, 100%);
  text-align: center;
  padding: clamp(42px, 8vw, 88px) 28px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--white-soft);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(74, 64, 56, 0.12);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.divider {
  width: 130px;
  height: 1px;
  background: var(--muted);
  opacity: 0.5;
  margin: 34px auto;
}

.subtitle {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.22rem);
}

.status {
  margin: 34px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
}

.email {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.email:hover {
  color: var(--text);
}

@media (max-width: 520px) {
  .card {
    border-radius: 24px;
  }

  h1 {
    letter-spacing: 0.04em;
  }
}
