:root{
  --bg:#070707;
  --panel:#0e0e0e;
  --text:#f4f4f4;
  --muted:#c9c9c9;
  --yellow:#ffd400;
  --yellow2:#ffea6a;
  --line:rgba(255,212,0,.22);
  --shadow: 0 14px 34px rgba(0,0,0,.45);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(255,212,0,.10), transparent 60%),
              radial-gradient(900px 500px at 10% 10%, rgba(255,212,0,.08), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:var(--yellow); text-decoration:none}
a:hover{color:var(--yellow2)}
small{color:var(--muted)}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:56px 0}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.06);
  border-left:1px solid var(--line);
  border-top:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#111; border:1px solid var(--line); border-radius:12px; z-index:9999}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,7,7,.70);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}
.brand img{width:44px; height:44px; border-radius:12px; border:1px solid rgba(255,255,255,.10)}
.brand strong{letter-spacing:.5px}
.brand span{display:block; font-size:12px; color:var(--muted); margin-top:1px}

.navlinks{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.navlinks a{
  color:var(--text);
  padding:10px 10px;
  border-radius:12px;
}
.navlinks a:hover{background:rgba(255,212,0,.08); color:var(--yellow)}
.navcta{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--text);
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{background:rgba(255,212,0,.10); border-color: var(--line)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(180deg, rgba(255,212,0,.95), rgba(255,212,0,.75));
  color:#111;
  border-color: rgba(255,212,0,.45);
}
.btn.primary:hover{background: linear-gradient(180deg, rgba(255,212,0,1), rgba(255,212,0,.82))}
.badge{
  font-size:12px; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,212,0,.32);
  background: rgba(255,212,0,.10);
  color: var(--yellow2);
}

.hero{
  position:relative;
  padding:54px 0 40px;
}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:18px;
}
.hero-banner{
  position:relative;
  overflow:hidden;
  border-radius: 22px;
  min-height: 420px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.35) 55%, rgba(0,0,0,.60)),
    url("assets/Titelbild.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  gap:10px;
}
.hero-content h1{
  margin:0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: .6px;
}
.hero-content p{
  margin:0;
  max-width: 60ch;
  color: rgba(255,255,255,.92);
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}

.hero-side{
  padding:18px;
  border-radius:22px;
}
.hero-side .row{display:flex; gap:12px; align-items:center}
.hero-side img{
  width:64px; height:64px; border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
}
.kv{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.kv .item{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.kv .item strong{display:block}
.kv .item span{color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.col-7{grid-column: span 7}
.col-5{grid-column: span 5}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}

.h2{
  margin:0 0 14px;
  font-size: clamp(20px, 2.6vw, 30px);
}
.lead{color:rgba(255,255,255,.90); margin:0 0 16px}
.p{color:var(--muted); margin:0 0 10px}

.list{
  margin:0; padding-left:18px; color:var(--muted);
}
.pillset{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.pill{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:8px 10px;
  border-radius:999px;
  color:rgba(255,255,255,.92);
  font-size:13px;
}
.pill strong{color:var(--yellow2)}

.details{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.details summary{
  cursor:pointer;
  padding:14px 16px;
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
}
.details summary::-webkit-details-marker{display:none}
.details summary strong{color:var(--text)}
.details .inner{padding: 0 16px 16px}
.hr{
  height:1px; background:rgba(255,255,255,.08);
  margin: 12px 0;
}

.form{
  display:grid; gap:12px;
}
label{display:grid; gap:6px; color:rgba(255,255,255,.92); font-size:14px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{
  border-color: rgba(255,212,0,.45);
  box-shadow: 0 0 0 4px rgba(255,212,0,.10);
}

.map{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  height: 340px;
}
.map iframe{width:100%; height:100%; border:0}

footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
  color:var(--muted);
}
.footer-row{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:18px; flex-wrap:wrap;
}
.footer-row a{color:var(--muted)}
.footer-row a:hover{color:var(--yellow)}
.legal{display:flex; gap:14px; flex-wrap:wrap}

@media (max-width: 920px){
  .hero-wrap{grid-template-columns: 1fr}
  .hero-banner{min-height: 380px}
  .col-7,.col-5,.col-6,.col-12{grid-column: span 12}
  .nav{flex-wrap:wrap}
  .brand{min-width:unset}
  .navcta{width:100%; justify-content:flex-start}
}