/* Minimal “coming soon” pages — white text on dark background. */

.sw-simple {
  --bg: #1c1c1c;
  --text: #ffffff;
  --border: rgba(255, 255, 255, 0.22);

  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.sw-simple a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: opacity 0.2s ease;
}

.sw-simple a:hover {
  opacity: 0.8;
}

.sw-simple-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.sw-simple h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #ffffff;
}

.sw-simple p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: #ffffff;
}

.sw-simple-back {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
