:root {
  --bg: #0d0d0d;
  --fg: #e8e8e8;
  --muted: #8a8a8a;
  --accent: #cfcfcf;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  flex: 1 0 auto;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .name {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.hero .tagline {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--muted);
  margin: 0.75rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.footer {
  flex-shrink: 0;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer .sep {
  margin: 0 0.5rem;
  color: var(--muted);
}

a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer a:hover,
a:hover {
  color: var(--fg);
  text-decoration: underline;
}

/* Content pages (Impressum / Datenschutz) */
.content {
  max-width: 720px;
}

.content h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--accent);
}

.content p {
  margin: 0.5rem 0;
}

.content a {
  color: var(--fg);
  text-decoration: underline;
}

.back {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}
