/* ===== Page d'attente — ouverture prochaine ===== */

html, body { height: 100%; }
body {
  min-height: 100%;
  background: #14110e;
  color: #f1ece0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
::selection { background: #f1ece0; color: #14110e; }

.soon {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  isolation: isolate;
}

/* — Colonne texte — */
.soon-panel {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 72px);
  position: relative;
  z-index: 2;
}
.soon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.soon-head .soon-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1ece0;
  text-decoration: none;
}
.soon-head .soon-wordmark .slash { color: #d8825f; }

.soon-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.66);
}
.soon-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d8825f;
  box-shadow: 0 0 0 0 rgba(216,130,95,0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(216,130,95,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(216,130,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,130,95,0); }
}

.soon-body {
  margin-top: auto;
  margin-bottom: auto;
  padding-block: clamp(40px, 6vh, 80px);
  max-width: 560px;
}
.soon-eyebrow {
  display: inline-block;
  color: rgba(241,236,224,0.7);
  margin-bottom: 24px;
}
.soon-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.soon-title em {
  font-style: italic;
  color: #e8a583;
}
.soon-lede {
  color: rgba(241,236,224,0.72);
  font-size: var(--fs-lede);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 46ch;
}

/* — Formulaire d'alerte — */
.soon-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  flex-wrap: wrap;
}
.soon-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #f1ece0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(241,236,224,0.22);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  border-radius: 0;
}
.soon-form input[type="email"]::placeholder { color: rgba(241,236,224,0.4); }
.soon-form input[type="email"]:focus {
  outline: none;
  border-color: #d8825f;
  background: rgba(255,255,255,0.07);
}
.soon-form button {
  padding: 15px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #14110e;
  background: #f1ece0;
  border: 1px solid #f1ece0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.soon-form button .arrow { transition: transform var(--dur) var(--ease); display: inline-block; }
.soon-form button:hover { background: #d8825f; border-color: #d8825f; color: #14110e; }
.soon-form button:hover .arrow { transform: translateX(4px); }
.soon-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(241,236,224,0.45);
  letter-spacing: 0.02em;
  min-height: 1em;
}
.soon-note.ok { color: #e8a583; }

/* — Pied de colonne — */
.soon-foot {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(241,236,224,0.14);
}
.soon-foot .col .k {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,236,224,0.45);
  margin-bottom: 7px;
}
.soon-foot .col .v {
  font-size: 13px;
  color: rgba(241,236,224,0.85);
  line-height: 1.5;
}
.soon-foot .col .v a {
  color: inherit;
  border-bottom: 1px solid rgba(241,236,224,0.3);
  padding-bottom: 1px;
  transition: border-color var(--dur) var(--ease);
}
.soon-foot .col .v a:hover { border-color: #d8825f; }
.soon-social { display: flex; align-items: center; gap: 14px; }
.soon-social a {
  color: rgba(241,236,224,0.85);
  border-bottom: none !important;
  display: inline-flex;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.soon-social a:hover { color: #d8825f; transform: translateY(-2px); }

/* — Scène photo — */
.soon-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 60% 30%, #3a2018 0%, transparent 60%),
    linear-gradient(150deg, #241712 0%, #14110e 70%);
}
.soon-glow {
  position: absolute;
  left: 50%; top: 34%;
  width: 70%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,205,140,0.42) 0%, rgba(255,180,110,0.14) 38%, transparent 66%);
  filter: blur(6px);
  z-index: 1;
  animation: breathe 5.5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.78; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}
.soon-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.soon-stage-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.45));
  z-index: 3;
}

@media (max-width: 900px) {
  .soon { grid-template-columns: 1fr; }
  .soon-stage {
    min-height: 36vh;
    order: -1;
  }
  .soon-panel { min-height: auto; }
}
@media (max-width: 520px) {
  .soon-form button { flex: 1; justify-content: center; }
}
