:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
}

body {
  min-height: 100vh;
  background: url("coming-soon-bg.jpg") center center / cover no-repeat;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  letter-spacing: 0.04em;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 3rem;
}

.brand {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

h1 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text);
}

.brand img {
  display: block;
  width: min(70vw, 30rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.contact {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  width: min(95vw, 1000px);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  color: var(--muted);
}

.contact p,
.contact span {
  margin: 0;
  font-weight: 400;
}

.contact span {
  opacity: 0.8;
}

@media (max-width: 560px) {
  .page {
    padding-bottom: 2.5rem;
  }

  .brand {
    margin-top: 1rem;
    margin-bottom: 1.2rem;
  }

  h1 {
    letter-spacing: 0.08em;
  }

  .contact {
    gap: 0.5rem 0.7rem;
    bottom: 1.2rem;
  }
}
