/* Coming soon page — minimal styles, matches site palette */
html, body {
  height: 100%;
  margin: 0;
}

.coming-soon {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: #0d0d0d url('../img/header-bg.jpg') center center no-repeat;
  background-size: cover;
  color: #fff;
}

.coming-soon::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.72);
  z-index: 0;
}

.coming-soon > * {
  position: relative;
  z-index: 1;
}

.coming-soon h1 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0;
}

.coming-soon h1::after {
  display: none;
}

.coming-soon .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E04343;
  margin: 0 0 28px;
}

.coming-soon .message {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.coming-soon .contact {
  margin-bottom: 32px;
}

.coming-soon .contact a {
  display: inline-block;
  padding: 18px 36px;
  color: #FFE801;
  border: 1px solid #FFE801;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.coming-soon .contact a:hover,
.coming-soon .contact a:focus {
  color: #E04343;
  background: #FFE801;
  border-color: #FFE801;
}

.coming-soon .social {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.coming-soon .social li {
  display: inline-block;
  margin: 0 6px;
}

.coming-soon .social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #E04343;
  color: #fff;
  font-size: 17px;
  line-height: 40px;
  text-align: center;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.coming-soon .social a:hover,
.coming-soon .social a:focus {
  background: #FFE800;
  color: #E04343;
}

.coming-soon footer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.coming-soon footer a {
  color: rgba(255, 255, 255, 0.6);
  border: none;
}

.coming-soon footer a:hover {
  color: #FFE800;
}
