* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;

  /* Premium dark gradient */
  background:
    radial-gradient(
      circle at top,
      #24201b 0%,
      #181512 30%,
      #0d0d0d 65%,
      #000000 100%
    );

  color: #e7e0cf;

  min-height: 100vh;
}

/* Center layout */
.coming-soon-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* Main container */
.coming-soon-container {
  max-width: 720px;
  text-align: center;
}

/* Logo */
.logo {
  width: 320px;
  max-width: 90%;
  margin-bottom: 32px;

  /* subtle glow to help separation */
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.45));
}

/* Small label */
.coming-soon-label {
  color: #c7a55b;
  letter-spacing: 5px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

/* Main headline */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 500;
  color: #f3ede2;
}

/* Description */
.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c8c1b2;
  margin-bottom: 42px;
}

/* Email button */
.email-btn {
  display: inline-block;
  padding: 16px 32px;

  border: 1px solid #b89b52;

  color: #f1eadf;
  text-decoration: none;
  letter-spacing: 1px;

  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover effect */
.email-btn:hover {
  background: #b89b52;
  color: #050505;

  transform: translateY(-2px);

  box-shadow:
    0 0 25px rgba(184, 155, 82, 0.25);
}

/* Mobile tweaks */
@media (max-width: 640px) {

  .logo {
    width: 260px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .email-btn {
    width: 100%;
    max-width: 340px;
  }
}