/* ============================================================
   Coming-soon landing page — reuses the homepage's hero-video
   background (.hero-video-section / .hero-bg-video from hero-video.css)
   behind a centered logo, headline, and enquiry form.
   ============================================================ */

html, body.coming-soon-body {
  height: 100%;
  margin: 0;
}

.coming-soon-hero {
  min-height: 100vh;
}

/* Fills the fixed-header-height gap that styles.css's `body { padding-top:
   var(--header-h) }` reserves globally — this page has no site nav, just a
   centered logo in that space instead of leaving it blank. */
.coming-soon-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--brand-line);
}

.coming-soon-header-logo {
  height: 40px;
  width: auto;
}

.coming-soon-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-8) 0;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}

.coming-soon-copy {
  color: white;
}

.coming-soon-copy h1 {
  color: white;
  font-size: clamp(32px, 4.5vw, 52px);
  margin: var(--space-3) 0 var(--space-4);
}

.coming-soon-copy .lead {
  color: rgba(255, 255, 255, 0.85);
}

.coming-soon-form {
  background: white;
  border-radius: var(--radius, 14px);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg, 0 20px 60px rgba(9, 25, 47, 0.35));
}

@media (max-width: 900px) {
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }
}
