/* ═══════════════════════════════════════════════════════════
   STORE PAGE — placeholder styles
═══════════════════════════════════════════════════════════ */

.store-soon {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-x);
}

.store-soon__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 500px;
}

.store-soon__mark {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.store-soon h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.store-soon p {
  font-size: 0.95rem;
  color: rgba(248,246,240,0.55);
  line-height: 1.7;
  max-width: 400px;
}

.store-soon__back {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(248,246,240,0.3);
  margin-top: 0.5rem;
  transition: color var(--transition);
}
.store-soon__back:hover { color: var(--gold); }

.nav__active { color: var(--gold) !important; }
