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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.container {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 6px;
  margin: 0;
}

.brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 4px;
  margin: 6px 0 0 0;
}

.tagline {
  margin-top: 30px;
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.description {
  max-width: 560px;
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

.coming-soon {
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.7;
}

footer {
  margin-top: 60px;
  font-size: 12px;
  opacity: 0.6;
}

footer .legal {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.6;
}