/* ============================================================
   Renew HR — Coming Soon page template
   Loaded only when the "Coming Soon" page template is active
   (see renewhr_enqueue_coming_soon_styles() in functions.php).
   Reuses site-wide tokens already defined in home.css.
   ============================================================ */

.coming-soon-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 14vh, 10rem) 0;
  text-align: center;
}
.coming-soon-wrap {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.coming-soon-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--electric);
  margin-bottom: 0.6rem;
}
.coming-soon-icon svg { width: 26px; height: 26px; }
.coming-soon-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.coming-soon-sub {
  font-size: 1.05rem;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0;
}
.coming-soon-ctas { margin-top: 0.8rem; }
