/* ══════════════════════════════════
   PAGE PROCHAINEMENT
══════════════════════════════════ */

/* ── Page ── */
.coming-soon-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px;
}

/* Halo */
.coming-soon-page .halo {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, rgba(184,134,11,0.03) 45%, transparent 70%);
  border-radius: 50%;
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}

/* Anneau rotatif */
.coming-soon-page .cs-ring {
  position: absolute;
  width: 580px; height: 580px;
  border: 1px solid rgba(212,168,67,0.07);
  border-radius: 50%;
  animation: rotSlow 45s linear infinite;
}
.coming-soon-page .cs-ring::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(212,168,67,0.03);
  border-radius: 50%;
}
.coming-soon-page .cs-ring::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 5px; height: 5px;
  background: var(--g2);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--g2), 0 0 20px rgba(212,168,67,0.35);
}

/* Coins décoratifs */
.corner {
  position: absolute;
  width: 48px; height: 48px;
}
.corner::before, .corner::after {
  content: '';
  position: absolute;
  background: var(--g4);
}
.corner::before { width: 1px; height: 100%; }
.corner::after  { width: 100%; height: 1px; }
.corner.tl { top: 32px; left: 32px; }
.corner.tr { top: 32px; right: 32px; transform: scaleX(-1); }
.corner.bl { bottom: 32px; left: 32px; transform: scaleY(-1); }
.corner.br { bottom: 32px; right: 32px; transform: scale(-1); }

/* Contenu centré */
.cs-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Stagger — chaque enfant reçoit son delay via --i inline */
.cs-content > * {
  animation-fill-mode: both;
}

/* Ligne horizontale dorée */
.cs-rule {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--g2), transparent);
  margin: 10px auto;
  animation: lineGrowH 0.9s ease forwards;
}

/* Badge "Prochainement" */
.cs-badge {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.7s ease both;
}
.cs-badge::before, .cs-badge::after {
  content: '';
  width: 36px; height: 1px;
  background: linear-gradient(to right, transparent, var(--g4));
}
.cs-badge::after {
  background: linear-gradient(to left, transparent, var(--g4));
}
.cs-badge-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(9px, 1vw, 11px);
  letter-spacing: 0.45em;
  color: var(--g3);
  text-transform: uppercase;
}

/* Slogan */
.cs-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(14px, 1.8vw, 19px);
  color: var(--text-dim);
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 480px;
  animation: fadeIn 0.7s ease both;
}
.cs-slogan em { color: var(--g3); font-style: italic; }

/* ── Compte à rebours ── */
.countdown {
  display: flex;
  gap: clamp(14px, 3vw, 36px);
  margin-top: 1.8em;
  animation: fadeIn 0.7s ease both;
  align-items: flex-start;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cd-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, #8B6408, #D4A843, #FFE566, #D4A843);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldFlow 4s ease-in-out infinite;
  min-width: 2ch;
  text-align: center;
}
.cd-sep {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 34px);
  color: var(--g5);
  line-height: 1;
  padding-top: 2px;
}
.cd-label {
  font-family: 'Cinzel', serif;
  font-size: clamp(8px, 0.9vw, 10px);
  letter-spacing: 0.38em;
  color: rgba(212,168,67,0.4);
  text-transform: uppercase;
}

/* Ligne de séparation basse */
.cs-rule-bottom {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,168,67,0.2), transparent);
  margin: 1em auto 0;
  animation: lineGrowH 0.9s ease forwards;
}

/* Email contact */
.cs-contact {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--text-dim);
  letter-spacing: 0.08em;
  animation: fadeIn 0.7s ease both;
}
.cs-contact a {
  color: var(--g3);
  text-decoration: none;
  position: relative;
  transition: color 0.4s ease;
  letter-spacing: 0.08em;
}
.cs-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--g4), var(--g2), var(--g1));
  transition: width 0.4s ease;
}
.cs-contact a:hover { color: var(--g2); }
.cs-contact a:hover::after { width: 100%; }

/* ── Keyframes ── */
@keyframes lineGrowH {
  from { width: 0; }
  to   { width: min(360px, 80vw); }
}

/* ── Accessibilité ── */
@media (prefers-reduced-motion: reduce) {
  .coming-soon-page * {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .coming-soon-page .cs-ring { width: 320px; height: 320px; }
  .corner { width: 32px; height: 32px; }
  .corner.tl, .corner.tr { top: 20px; }
  .corner.bl, .corner.br { bottom: 20px; }
  .corner.tl, .corner.bl { left: 20px; }
  .corner.tr, .corner.br { right: 20px; }
  .countdown { gap: 12px; }
}