/* ─────────────────────────────────────────
   IMPRESSUM — page-specific styles
   ───────────────────────────────────────── */

.impressum-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.page-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}

.imp-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}
.imp-section:last-child { border-bottom: none; }

.imp-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.imp-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.imp-section p,
.imp-section address {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dim);
  font-style: normal;
}

.imp-section a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.imp-section a:hover { opacity: 0.75; }

/* stagger each section */
.imp-section:nth-child(1) { animation-delay: 0.65s; }
.imp-section:nth-child(2) { animation-delay: 0.75s; }
.imp-section:nth-child(3) { animation-delay: 0.85s; }
.imp-section:nth-child(4) { animation-delay: 0.95s; }
.imp-section:nth-child(5) { animation-delay: 1.05s; }
.imp-section:nth-child(6) { animation-delay: 1.15s; }
.imp-section:nth-child(7) { animation-delay: 1.25s; }
