/* Minimal shared styles for the five domain placeholder pages.
   Each domain can later replace this with its own visual identity —
   this file intentionally stays generic and lightweight. */

.domain-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--gutter);
  background: var(--ink);
}

.domain-page__back {
  position: fixed;
  top: var(--gutter);
  inset-inline-start: var(--gutter);
  z-index: 50;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.domain-page__back:hover { color: var(--amber); border-color: var(--amber-soft); }

.domain-page__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5rem);
  color: var(--parchment);
}
html[lang="en"] .domain-page__title { font-weight: 500; }

.domain-page__subtitle {
  margin-top: 1.1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--amber);
}

.domain-page__description {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
}

.domain-page__note {
  margin-top: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}
