* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111111;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(189, 31, 45, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.card {
  width: 100%;
  max-width: 900px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 28px;
  padding: 54px 36px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.09);
}

.logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto 34px;
}

.eyebrow {
  color: #bd1f2d;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 22px;
  color: #111111;
}

.intro {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
  color: #444444;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 34px 0 26px;
}

.contact-box {
  display: block;
  text-decoration: none;
  background: #111111;
  color: #ffffff;
  border-radius: 18px;
  padding: 22px 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  background: #bd1f2d;
}

.contact-box span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.78;
  margin-bottom: 8px;
}

.contact-box strong {
  display: block;
  font-size: clamp(18px, 3.8vw, 31px);
  line-height: 1.2;
  word-break: break-word;
}

.contact-box.email {
  grid-column: 1 / -1;
  background: #bd1f2d;
}

.contact-box.email:hover {
  background: #111111;
}

.website {
  display: inline-block;
  background: #bd1f2d;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 14px;
  }

  .card {
    padding: 34px 18px;
    border-radius: 22px;
  }

  .logo {
    width: 100%;
    margin-bottom: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-box.email {
    grid-column: auto;
  }

  .website {
    font-size: 14px;
    word-break: break-word;
  }
}
