/* Gemeinsamer Stil für Impressum, Datenschutz, AGB und Widerruf */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #0A0806; --raise: #15110E; --line: #2A221D;
  --ink: #F8F4F0; --muted: #CBC0B7; --dim: #9E9086;
  --accent: #FF7A45; --accent-soft: #FFA57C;
}

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.68;
}
h1, h2, h3, .name { font-family: 'Inter Tight', 'Inter', system-ui, sans-serif; }

.glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 620px; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,122,69,.16), transparent 70%);
}

.top { position: relative; z-index: 2; }
.top .inner {
  max-width: 760px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center; height: 112px; gap: 13px;
}
.pic {
  width: 78px; height: 78px; border-radius: 50%; overflow: hidden; flex: 0 0 78px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10);
}
.pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.name { font-size: 18px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; }
.handle { font-size: 13.5px; color: var(--muted); }

main { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 30px 28px 100px; }

h1 { font-size: clamp(32px, 4.4vw, 44px); font-weight: 700; letter-spacing: -.042em; line-height: 1.08; margin: 0 0 10px; }
.stand { color: var(--dim); font-size: 14px; margin: 0 0 44px; }

h2 {
  font-size: 21px; font-weight: 600; letter-spacing: -.028em;
  margin: 46px 0 14px; padding-top: 26px; border-top: 1px solid var(--line);
}
h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 34px; }
h3 { font-size: 17px; font-weight: 600; letter-spacing: -.02em; margin: 26px 0 10px; }

p { margin: 0 0 16px; color: var(--muted); font-size: 16px; }
p strong, li strong { color: var(--ink); font-weight: 600; }
a { color: var(--accent-soft); }

ul, ol { margin: 0 0 18px; padding-left: 22px; color: var(--muted); font-size: 16px; }
li { margin: 8px 0; }
li::marker { color: var(--accent); }

.box {
  background: var(--raise); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 26px; margin: 26px 0;
}
.box p:last-child { margin-bottom: 0; }

.hint {
  border-left: 3px solid var(--accent); background: rgba(255,122,69,.07);
  border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 26px 0;
}
.hint p { color: var(--ink); margin: 0 0 10px; font-size: 15px; }
.hint p:last-child { margin: 0; }
.hint b { color: var(--accent-soft); }

.nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 40px; }
.nav a {
  padding: 9px 16px; border-radius: 999px; text-decoration: none;
  border: 1px solid var(--line); color: var(--muted); font-size: 13.5px; font-weight: 500;
}
.nav a:hover { border-color: var(--accent); color: var(--ink); }
.nav a[aria-current="page"] { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }

footer {
  border-top: 1px solid var(--line); margin-top: 60px; padding-top: 26px;
  color: var(--dim); font-size: 13.5px; display: flex; gap: 20px; flex-wrap: wrap;
}
footer a { color: var(--dim); text-decoration: none; }
footer a:hover { color: var(--muted); }
