/* ─── SB Capital – Legal Pages (Impressum, Datenschutz) ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --anthrazit: #1a1a1a;
  --anthrazit-mid: #2c2c2c;
  --anthrazit-light: #3d3d3d;
  --gold: #b8965a;
  --gold-light: #d4af76;
  --gold-pale: #f0e4cc;
  --white: #f5f2ec;
  --white-pure: #ffffff;
  --text-muted: #b8b8b0;
  --text-mid: #c8c8c0;
  --border: rgba(184,150,90,0.2);
  --border-light: rgba(184,150,90,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── NAV (identisch zur Hauptseite) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), padding var(--transition);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.85; }
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 24px;
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}

/* ─── LEGAL PAGE LAYOUT ─── */
.legal-page {
  padding: 160px 60px 100px;
  min-height: 80vh;
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
}
.legal-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 64px;
}

.legal-section {
  margin-bottom: 56px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.legal-section p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: 12px 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.legal-section ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 6px;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.legal-section a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}
.legal-section a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.legal-section strong {
  color: var(--white);
  font-weight: 500;
}
.legal-section em {
  color: var(--text-muted);
  font-style: italic;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-logo:hover img { opacity: 0.9; }
.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.5;
  text-align: center;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .legal-page { padding: 120px 24px 80px; }
  .legal-section h2 { font-size: 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
