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

body.coming-soon {
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

body.coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 47, 85, 0.88) 0%, rgba(10, 27, 44, 0.92) 60%),
    url('webimages/coho-concrete-gallery-21.webp') center/cover no-repeat;
  opacity: 0.35;
  filter: saturate(0.9) contrast(1.05);
  z-index: 0;
}

.coming-shell {
  width: 100%;
  max-width: 720px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.coming-card {
  width: 100%;
  text-align: center;
  padding: 56px 44px;
  border-radius: 20px;
  background: rgba(7, 20, 33, 0.6);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.coming-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 18px;
}

.coming-kicker {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.coming-card h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.coming-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
}

.coming-footer {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 600px) {
  body.coming-soon {
    padding: 18px;
  }

  .coming-card {
    padding: 40px 22px;
    border-radius: 16px;
  }

  .coming-logo {
    width: 140px;
  }

  .coming-card h1 {
    font-size: 1.9rem;
  }

  .coming-sub {
    font-size: 0.95rem;
  }

  .coming-footer {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}
