/* ---------- ULVIAA — Coming Soon (Grey version) ---------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  background-color: #ECECEC;  /* Soft neutral grey */
  color: #1A1A1A;             /* Deep neutral black */
  height: 100vh;
}

.page-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px;
}

.content {
  text-align: center;
  max-width: 720px;
}

/* Logo */
.logo {
  width: 60%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 26px auto;
  display: block;
}

/* Text */
.tagline {
  font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #333333; /* darker grey */
}

.coming-soon {
  font-weight: 300;
  letter-spacing: 0.28em;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #111111;
}

.subtext {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0 auto 46px auto;
}

.contact .stay {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #333333;
}

.mail {
  display: inline-block;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s ease-in-out;
}

.mail:hover {
  border-color: #111111;
}

.social {
  font-size: 0.8rem;
  opacity: 0.7;
  color: #333333;
}

@media (max-width: 600px) {
  .logo {
    width: 80%;
  }

  .subtext {
    font-size: 0.9rem;
  }
}