@font-face { font-family:'Barlow'; src:url('../../assets/fonts/Barlow-Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Barlow'; src:url('../../assets/fonts/Barlow-SemiBold.ttf') format('truetype'); font-weight:600; font-display:swap; }
@font-face { font-family:'Barlow Condensed'; src:url('../../assets/fonts/Barlow-Medium.ttf') format('truetype'); font-weight:500; font-display:swap; }
@font-face { font-family:'Barlow Condensed'; src:url('../../assets/fonts/Barlow-SemiBold.ttf') format('truetype'); font-weight:600; font-display:swap; }
@font-face { font-family:'Barlow Condensed'; src:url('../../assets/fonts/Barlow-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }
@font-face { font-family:'Barlow Condensed'; src:url('../../assets/fonts/Barlow-ExtraBold.ttf') format('truetype'); font-weight:800; font-display:swap; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #060e15;
  --surface:    #0c1820;
  --surface-2:  #132030;
  --green:      #6ecb2a;
  --green-dim:  #4f9a1a;
  --amber:      #fabd2d;
  --text:       #ddeaf5;
  --muted:      #8aafc8;
  --dim:        #5a7d96;
  --border:     rgba(110,203,42,0.10);
}

html, body { height: 100%; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── HEADER ───────────────────────────────────── */
header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 52px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
}
.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
}
.nav-back:hover { color: var(--green); }
.nav-back svg { width: 18px; height: 18px; }

/* ── MAIN ─────────────────────────────────────── */
main {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 52px 80px;
}
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 48px;
}
.page-title span { color: var(--green); }

.section { margin-bottom: 48px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}

.info-block {
  background: rgba(12,24,32,0.72);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  backdrop-filter: blur(20px);
}
.info-row {
  display: flex;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: baseline;
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  min-width: 160px;
  flex-shrink: 0;
}
.info-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.info-val a {
  color: var(--green-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.info-val a:hover { color: var(--green); }

/* Status badge (Barrierefreiheit) */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}
.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.prose {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.prose p + p { margin-top: 14px; }
.prose ul {
  margin: 12px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prose a {
  color: var(--green-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.prose a:hover { color: var(--green); }

.divider {
  height: 1px;
  background: rgba(255,255,255,0.04);
  margin: 48px 0;
}

address { font-style: normal; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 52px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.footer-copy {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dim);
}
.footer-copy a {
  color: var(--green-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--green); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--muted); }
.footer-social-link { display: inline-flex; align-items: center; gap: 5px; }
.footer-social-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── MOBILE ───────────────────────────────────── */
@media (max-width: 640px) {
  header { padding: 20px 20px; }
  main   { padding: 40px 20px 60px; }
  footer { padding: 20px 20px; }
  .info-row { flex-direction: column; gap: 4px; }
  .info-key { min-width: unset; }
}

/* ── REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
