:root {
  --cream: #f8f2e8;
  --text: #f8f5f0;
  --muted: rgba(248, 245, 240, 0.88);
  --gold: #d4af37;
  --deep: rgba(20, 20, 20, 0.45);
  --border: rgba(255, 255, 255, 0.22);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.34), rgba(20,20,20,0.56));
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: min(92vw, 760px);
  background: var(--deep);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.26em;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
}

h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 1.05;
  font-weight: 600;
}

.subtext {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--muted);
}

.coming-soon {
  display: inline-block;
  margin: 28px 0 0;
  padding: 12px 18px;
  border: 1px solid rgba(212,175,55,0.46);
  border-radius: 999px;
  color: var(--cream);
  font-weight: 500;
  background: rgba(212,175,55,0.12);
}

@media (max-width: 560px) {
  .card {
    padding: 32px 22px;
    border-radius: 18px;
  }

  .subtext {
    line-height: 1.55;
  }
}
