/* ══════════════════════════════════════════════════════════
   IMPRESSUM
══════════════════════════════════════════════════════════ */

.imp-header {
  padding-top: var(--nav-h);
}
.imp-header-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}
.imp-header-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  color: var(--white);
  margin: .5rem 0 0;
}

/* ── Main ── */
.imp-main {
  background: var(--black);
  padding: 4rem 0 6rem;
}
.imp-wrap {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Sections ── */
.imp-section {
  padding: 2.5rem 0;
}
.imp-section:last-child { border-bottom: none; }

.imp-section-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.imp-section-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.2rem;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Content blocks ── */
.imp-block {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.imp-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.imp-address {
  font-size: 1.2rem;
  color: var(--gray-100);
  line-height: 1.75;
  font-style: normal;
}

/* ── Contact list ── */
.imp-contact-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.imp-contact-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.2rem;
  color: var(--gray-100);
  text-decoration: none;
  transition: color .15s;
}
.imp-contact-item svg { stroke: currentColor; flex-shrink: 0; opacity: .7; }
a.imp-contact-item:hover { color: var(--white); }
.imp-contact-fax { color: var(--muted); cursor: default; }

/* ── Key-value grid ── */
.imp-row-grid {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.imp-kv {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
.imp-kv-label {
  color: var(--muted);
  min-width: 14rem;
  flex-shrink: 0;
}
.imp-kv-val {
  color: var(--white);
  font-weight: 500;
}

/* ── Prose (datenschutz paragraphs) ── */
.imp-prose {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.imp-prose p {
  font-size: 1.2rem;
  color: var(--gray-100);
  line-height: 1.75;
  margin: 0;
}
.imp-prose strong { color: var(--white); font-weight: 600; }
.imp-prose a { color: var(--red); text-decoration: none; transition: color .15s; }
.imp-prose a:hover { color: var(--white); }

.imp-subsection {
  margin-top: 1.5rem;
}
.imp-subsection:first-child { margin-top: 0; }
.imp-subsection-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin: 0 0 .75rem;
}

/* ── Long-form text & lists (used in Barrierefreiheit etc.) ── */
.imp-text {
  font-size: 1.4rem;
  color: var(--gray-100);
  line-height: 1.4;
  margin: 0;
}
.imp-text strong { color: var(--white); font-weight: 600; }
.imp-text code {
  font-family: monospace;
  font-size: 1em;
  color: var(--gray-100);
  background: rgba(255,255,255,.07);
  padding: .1em .35em;
  border-radius: 2px;
}
.imp-list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  list-style: none;
}
.imp-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 1.4rem;
  color: var(--gray-100);
  line-height: 1.4;
}
.imp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: .35rem;
  height: .35rem;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.imp-list li strong { color: var(--white); font-weight: 600; }
.imp-list li code {
  font-family: monospace;
  font-size: .95em;
  color: var(--gray-100);
  background: rgba(255,255,255,.07);
  padding: .1em .35em;
  border-radius: 2px;
}

/* ── Copyright ── */
.imp-copyright {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 40rem) {
  .imp-kv { flex-direction: column; gap: .2rem; }
  .imp-kv-label { min-width: unset; font-size: .9rem; }
}
