/* Shared styles for legal pages (Impressum / Datenschutz) – matches the landing page */
:root {
  --gold: #D4A84B;
  --gold-light: #E6BE63;
  --gold-dark: #B08D3A;
  --ink: #1A1A1A;
  --gray: #8E8E93;
  --bg: #F2F2F2;
  --white: #FFFFFF;
  --text: #2E2E2E;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* Nav */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(242, 242, 242, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.brand img { width: 30px; height: 30px; object-fit: contain; }
.nav-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14px; color: var(--ink); text-decoration: none;
  padding: 8px 15px; border-radius: 100px;
  background: rgba(0, 0, 0, 0.05); transition: background .15s ease;
}
.nav-back:hover { background: rgba(0, 0, 0, 0.09); }

/* Hero header */
.legal-hero {
  background: radial-gradient(120% 130% at 0% 0%, #2c2c2c, var(--ink));
  color: var(--white); text-align: center; padding: 64px 0 56px;
}
.legal-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; letter-spacing: -0.03em; }
.legal-hero p { color: #C7C7CC; margin-top: 10px; font-size: 16px; }

/* Content */
main.legal { padding: 48px 0 72px; }
.legal-card {
  background: var(--white); border-radius: 22px; box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px); margin-top: -36px; position: relative;
}
.legal h2 {
  font-size: 21px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink);
  margin: 34px 0 12px; padding-top: 6px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 22px 0 8px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 0; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--ink); }
.legal .lead { font-size: 17px; color: #444; margin-bottom: 26px; }
.muted { color: var(--gray); font-size: 14px; }

/* Fill-in placeholder highlight */
.fill {
  background: #FFF3D6; color: #8A6A14; font-weight: 600;
  padding: 1px 7px; border-radius: 6px; border: 1px dashed #E0C063;
  white-space: nowrap;
}

/* Notice banner */
.notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: #FFF8E8; border: 1px solid #EBD9A6; border-radius: 14px;
  padding: 16px 18px; margin-bottom: 30px; font-size: 14px; color: #6B5410;
}
.notice svg { flex: none; width: 20px; height: 20px; stroke: var(--gold-dark); margin-top: 1px; }

/* Footer */
footer { padding: 36px 0 56px; text-align: center; color: var(--gray); font-size: 14px; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 14px; }
.footer-brand img { width: 26px; height: 26px; object-fit: contain; }
.footer-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--gray); text-decoration: none; transition: color .15s ease; }
.footer-links a:hover { color: var(--ink); }
