/* ─── IMPRINT PAGE ─── */
body {
  font-family: var(--font-sans);
  background: #000;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

nav {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

nav a.nav-link {
  color: rgba(255, 255, 255, 0.6);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

/* ─── CONTENT ─── */
.imprint {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  padding-left: clamp(80px, 15vw, 240px);
  padding-top: clamp(120px, 16vh, 160px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.imprint-inner {
  max-width: 620px;
}

.imprint h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 48px;
}

.imprint h2 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-top: 40px;
  margin-bottom: 16px;
}

.imprint h2:first-of-type { margin-top: 0; }

.imprint p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.imprint a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.imprint a:hover { color: var(--color-accent); }

.imprint .names {
  color: #fff;
  font-size: 0.95rem;
}

/* ─── IMPRINT RESPONSIVE ─── */
@media (max-width: 768px) {
  .imprint { padding-left: clamp(24px, 5vw, 64px); }
}
