/* ══════════════════════════════════════
   COMING SOON
══════════════════════════════════════ */
body.page-coming-soon {
  min-height: 100vh; display: flex; flex-direction: column;
}

.coming-soon-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 120px 32px 80px; position: relative;
}
.coming-soon-wrap .orb {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,136,74,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; animation: orbPulse 6s ease-in-out infinite;
  /* override fixed positioning from atmosphere.css */
  filter: none;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.content { text-align: center; max-width: 520px; position: relative; z-index: 1; }
.cs-icon {
  width: 64px; height: 64px; margin: 0 auto 32px;
  border-radius: 16px; background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  display: flex; align-items: center; justify-content: center;
  animation: iconFloat 4s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.cs-icon svg { width: 28px; height: 28px; }
.cs-overline {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.cs-h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(32px, 6vw, 48px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 20px;
}
.cs-h1 .serif { font-style: italic; font-weight: 400; color: var(--amber); }
.cs-p {
  font-size: 16px; font-weight: 400; color: var(--text2);
  line-height: 1.7; margin-bottom: 40px;
}
.cs-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  padding: 12px 28px; border-radius: 10px;
  background: var(--amber); color: #0A0C10;
  transition: all 0.3s var(--ease); text-decoration: none; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,136,74,0.25); }
.dots { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); opacity: 0.3;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

@media (max-width: 900px) {
  .coming-soon-wrap { padding: 100px 20px 60px; }
}
@media (max-width: 600px) {
  .cs-btns { flex-direction: column; align-items: center; }
}
