/* =================================================================
   Impressum-Page — Walz-Schenk
   Reuses schenk.css tokens + agb.css (.nav--page, .agb-hero, .agb-back).
   This file only adds the Impressum-specific facts grid + prose.
   ================================================================= */

.imp-main {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.imp-toolbar {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ---------- Pflichtangaben: label / value rows ---------- */
.imp-facts {
  max-width: 820px;
  border-top: 1px solid var(--border-light);
}
.imp-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0.5rem 2.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-light);
}
.imp-row dt {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.15rem;
}
.imp-row dd {
  font-size: var(--fs-base);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.imp-row dd a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--neutral-300);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.imp-row dd a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.imp-row dd .imp-name { font-weight: 500; }

/* ---------- Legal prose ---------- */
.imp-prose {
  max-width: 70ch;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
}
.imp-block h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}
.imp-block p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--text-primary);
}
.imp-block p + p { margin-top: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .imp-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
