/* Coming Soon Layout */
.coming-soon-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem var(--gutter);
  overflow: hidden;
  background-color: var(--charcoal);
  color: var(--white);
}

.coming-soon__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.coming-soon__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.coming-soon__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(45,52,54,0.4) 0%, rgba(45,52,54,0.9) 100%);
  z-index: 2;
}

.coming-soon__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon__logo {
  margin-bottom: 2rem;
  animation: fadeUp 1s ease forwards;
}

.coming-soon__tag {
  color: var(--mist);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.coming-soon__title {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 300;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

.coming-soon__title em {
  font-family: 'Playfair Display', serif; /* Assuming standard serif fallback if not loaded */
  font-style: italic;
  font-weight: 400;
  color: var(--mist);
}

.coming-soon__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
}

.coming-soon__form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 450px;
  animation: fadeUp 1s ease 0.8s forwards;
  opacity: 0;
}

.coming-soon__input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.5rem;
  color: var(--white);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.coming-soon__input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
}

.coming-soon__input::placeholder {
  color: rgba(255,255,255,0.5);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .coming-soon__form {
    flex-direction: column;
  }
  .coming-soon__logo {
    margin-bottom: 3rem;
  }
}
