:root{
  --blue:#0A4FD6;
  --blue-bright:#1E6BFF;
  --ink:#050506;
  --panel:#0D0E11;
  --line:#23262D;
  --paper:#F2F3F5;
  --muted:#8A8F99;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:'Archivo',system-ui,sans-serif;
  font-size:15px;
  line-height:1.35;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
:focus-visible{outline:2px solid var(--blue-bright);outline-offset:3px}

/* layout */
.wrap{display:flex;min-height:100vh}
.left{
  position:fixed;top:0;left:0;
  width:55%;height:100vh;
  background:var(--blue);
  color:#fff;
  display:flex;flex-direction:column;
  overflow:hidden;
}
.right{
  margin-left:55%;
  width:45%;
  background:var(--panel);
  padding:24px 28px 28px 20px;
  border-left:1px solid var(--line);
}

/* left */
.left-top{
  height:10%;min-height:76px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 28px;
}
.logo{
  display:block;
  transition:opacity .2s;
}
.logo:hover{opacity:.8}
.logo img{
  height:44px;width:auto;
  display:block;
}
.wordmark{
  height:16px;width:auto;
  display:block;
  opacity:.9;
}
.date{display:flex;align-items:baseline;gap:6px}
.date b{font-size:38px;font-weight:900;line-height:1}
.date span{font-size:13px;opacity:.75}

.left-mid{
  height:70%;
  display:flex;align-items:center;
  overflow:hidden;
  position:relative;
}
.marquee{display:flex;gap:0;white-space:nowrap;animation:slide 22s linear infinite}
.marquee h2{
  font-family:'Archivo',sans-serif;
  font-size:clamp(140px,20vw,420px);
  font-weight:900;
  line-height:.9;
  letter-spacing:-.03em;
  text-transform:uppercase;
  padding-right:.15em;
}
.marquee h2:nth-child(even){color:transparent;-webkit-text-stroke:2px rgba(255,255,255,.55)}
@keyframes slide{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee{animation:none}}

/* signature: equalizer bars from the logo mark */
.eq{
  position:absolute;bottom:0;left:0;right:0;
  height:120px;
  display:flex;align-items:flex-end;gap:5px;
  padding:0 28px;
  opacity:.85;
}
.eq i{
  flex:1;
  background:var(--ink);
  border-radius:2px;
  height:12%;
  animation:pulse 1.4s ease-in-out infinite;
}
@keyframes pulse{0%,100%{height:10%}50%{height:85%}}
@media (prefers-reduced-motion:reduce){.eq i{animation:none;height:35%}}

.left-bottom{
  height:20%;
  padding:0 28px;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;z-index:2;
}
.left-bottom .kicker{font-size:12px;letter-spacing:.2em;text-transform:uppercase;margin-bottom:10px;opacity:.8}
.left-bottom p{font-size:clamp(20px,2vw,30px);line-height:1.1;max-width:640px;font-weight:500}

/* right */
.topbar{display:flex;justify-content:flex-end;align-items:center;margin-bottom:90px}

/* burger */
.burger{
  width:52px;height:52px;
  border:1px solid var(--line);background:transparent;
  cursor:pointer;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
  transition:border-color .2s;
  z-index:120;position:relative;
}
.burger:hover{border-color:var(--blue-bright)}
.burger i{
  display:block;width:24px;height:2px;background:var(--paper);
  transition:transform .28s cubic-bezier(.4,0,.2,1),opacity .18s;
}
.burger[aria-expanded="true"] i:nth-child(1){transform:translateY(8px) rotate(45deg)}
.burger[aria-expanded="true"] i:nth-child(2){opacity:0}
.burger[aria-expanded="true"] i:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* overlay menu */
.menu{
  position:fixed;inset:0;z-index:110;
  background:var(--blue);
  display:flex;flex-direction:column;justify-content:center;
  padding:0 clamp(28px,7vw,120px);
  clip-path:inset(0 0 100% 0);
  transition:clip-path .5s cubic-bezier(.76,0,.24,1);
  pointer-events:none;
}
.menu[data-open="true"]{clip-path:inset(0 0 0 0);pointer-events:auto}
.menu a{
  display:block;
  font-size:clamp(38px,6vw,84px);
  font-weight:900;text-transform:uppercase;letter-spacing:-.02em;
  line-height:1.05;
  padding:10px 0;
  color:#fff;
  opacity:0;transform:translateY(24px);
  transition:opacity .4s .18s,transform .4s .18s,color .2s;
}
.menu[data-open="true"] a{opacity:1;transform:none}
.menu[data-open="true"] a:nth-child(2){transition-delay:.24s}
.menu[data-open="true"] a:nth-child(3){transition-delay:.3s}
.menu[data-open="true"] a:nth-child(4){transition-delay:.36s}
.menu[data-open="true"] a:nth-child(5){transition-delay:.42s}
.menu[data-open="true"] a:nth-child(6){transition-delay:.48s}
.menu a:hover{color:var(--ink)}
.menu .mail{
  font-size:clamp(14px,1.3vw,17px);font-weight:600;letter-spacing:.04em;
  text-transform:none;margin-top:44px;
  align-self:flex-start;
  background:#fff;color:var(--blue);
  padding:14px 24px;
  transition:background .2s,color .2s;
}
.menu .mail:hover{background:var(--ink);color:#fff}
body.locked{overflow:hidden}
@media (prefers-reduced-motion:reduce){
  .menu,.menu a,.burger i{transition:none}
}

section{padding-left:12px;margin-bottom:120px}
section:last-of-type{margin-bottom:80px}
h3{
  font-size:clamp(30px,3vw,48px);font-weight:400;letter-spacing:-.01em;
  color:var(--paper);
  margin-bottom:18px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.lead{
  font-size:clamp(16px,1.4vw,19px);line-height:1.55;color:var(--muted);
  max-width:60ch;margin-bottom:30px;
}

.btn{
  display:inline-flex;align-items:center;gap:14px;
  background:var(--paper);
  color:var(--ink);
  font-size:18px;font-weight:700;
  letter-spacing:.01em;
  padding:16px 26px;
  border:1px solid var(--paper);
  transition:background .2s,color .2s,border-color .2s,gap .2s;
}
.btn:hover{
  background:transparent;
  color:var(--paper);
  border-color:var(--blue-bright);
  gap:20px;
}
.btn .arrow{transition:transform .2s}

/* bilder */
figure{margin-bottom:34px;overflow:hidden;position:relative;background:#000}
figure img{
  width:100%;display:block;
  filter:brightness(.82) saturate(1.05);
  transform:scale(1.01);
  transition:filter .5s,transform .7s cubic-bezier(.2,.6,.2,1);
}
figure:hover img{filter:none;transform:scale(1.04)}
/* volle breite */
.band img{aspect-ratio:16/9;object-fit:cover}
#faq .band img{object-position:center 42%}

/* trennbild: bricht aus dem spalten-padding aus */
figure.break{
  margin:0 -28px 120px -20px;
}
section:has(+ figure.break){margin-bottom:120px}
figure.break img{
  aspect-ratio:16/9;
  object-fit:cover;
  object-position:center;
  filter:none;
}
figure.break:hover img{filter:brightness(1.08)}

@media (prefers-reduced-motion:reduce){
  figure img{transition:none;transform:none}
  figure:hover img{transform:none}
}
.btn:hover .arrow{transform:translateX(3px)}

/* services grid */
.grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.card{border:1px solid var(--line);padding:20px;transition:border-color .2s,background .2s}
.card:hover{border-color:var(--blue-bright);background:#0F1218}
.card .num{font-size:11px;letter-spacing:.2em;color:var(--blue-bright);margin-bottom:14px}
.card h5{text-transform:uppercase;font-size:20px;font-weight:700;margin-bottom:8px}
.card p{
  color:var(--muted);font-size:14px;line-height:1.5;
  text-align:justify;
  hyphens:auto;
  -webkit-hyphens:auto;
}

/* events */
.events{list-style:none}
.events li{
  border-bottom:1px solid var(--line);
  padding:20px 0;
  transition:padding-left .2s,border-color .2s;
}
.events li:first-child{border-top:1px solid var(--line)}
.events li:hover{padding-left:8px;border-color:var(--blue-bright)}
.events h5{
  text-transform:uppercase;font-size:clamp(17px,1.6vw,22px);
  font-weight:700;letter-spacing:.01em;margin-bottom:8px;
}
.events p{color:var(--muted);font-size:15px;line-height:1.55;max-width:60ch}

/* faq */
.faq details{border-bottom:1px solid var(--line);}
.faq details:first-child{border-top:1px solid var(--line)}
.faq summary{
  cursor:pointer;list-style:none;
  padding:18px 40px 18px 0;
  font-size:clamp(16px,1.5vw,20px);font-weight:500;
  position:relative;transition:color .2s;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"";position:absolute;right:6px;top:50%;
  width:11px;height:11px;
  border-right:2px solid var(--blue-bright);
  border-bottom:2px solid var(--blue-bright);
  transform:translateY(-70%) rotate(45deg);
  transition:transform .25s;
}
.faq details[open] summary::after{transform:translateY(-30%) rotate(-135deg)}
.faq summary:hover{color:var(--blue-bright)}
.faq details p{
  color:var(--muted);font-size:15px;line-height:1.6;
  max-width:62ch;padding:0 0 22px;
}

/* kontakt */
.contact{margin-bottom:34px}
.contact-row{
  display:flex;align-items:baseline;gap:20px;
  border-bottom:1px solid var(--line);
  padding:16px 0;
  transition:padding-left .2s,border-color .2s;
}
.contact-row:first-child{border-top:1px solid var(--line)}
a.contact-row:hover{padding-left:8px;border-color:var(--blue-bright)}
a.contact-row:hover .value{color:var(--blue-bright)}
.contact-row .label{
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--blue-bright);width:96px;flex:none;
}
.contact-row .value{font-size:clamp(16px,1.6vw,22px);font-weight:500;transition:color .2s}

footer{
  padding-left:12px;
  border-top:1px solid var(--line);
  padding-top:24px;
  color:var(--muted);font-size:13px;
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:12px 24px;flex-wrap:wrap;
}
footer > div:first-child{
  display:flex;flex-direction:column;gap:6px;
  text-align:left;
}
footer > div:first-child a{display:inline-block;align-self:flex-start}
footer > div:last-child{
  margin-left:auto;
  text-align:right;
}
footer a:hover{color:var(--blue-bright)}

@media (max-width:991px){
  .wrap{flex-direction:column}
  .left{position:static;width:100%;height:auto;padding-bottom:32px}
  .left-mid{height:auto;padding:40px 0}
  .eq{position:static;height:60px;margin-top:24px}
  .left-top,.left-bottom{height:auto;padding-top:24px;padding-bottom:24px}
  .right{margin-left:0;width:100%;border-left:none;padding:32px 20px 28px}
  .topbar{margin-bottom:48px}
  section{margin-bottom:80px}
  figure.break{margin:0 -20px 80px -20px}
  figure.break img{aspect-ratio:4/3}
  .contact-row{flex-direction:column;gap:4px}
  .contact-row .label{width:auto}
}
@media (max-width:600px){
  .wordmark{display:none}
  footer > div:last-child{margin-left:0;text-align:left}
  .grid{grid-template-columns:1fr}
  .left-top{align-items:flex-start;gap:16px}
  .logo img{height:34px}
  .wordmark{height:12px;max-width:45%;object-fit:contain;object-position:right}
}

/* ============================
   Unterseiten (Impressum, Datenschutz)
   ============================ */
.page{
  max-width:820px;
  margin:0 auto;
  padding:28px 24px 60px;
}
.page-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;
  margin-bottom:56px;
}
.page-head .logo img{height:40px}

.page h1{
  font-size:clamp(34px,4vw,52px);
  font-weight:400;letter-spacing:-.01em;
  margin-bottom:14px;
}
.page .updated{
  font-size:12px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--blue-bright);margin-bottom:48px;
}
.page h2{
  font-size:clamp(19px,1.9vw,24px);
  font-weight:700;
  margin:52px 0 16px;
  padding-bottom:10px;
  border-bottom:1px solid var(--line);
}
.page h3{
  font-size:16px;font-weight:700;color:var(--paper);
  border:none;padding:0;
  margin:30px 0 10px;
}
.page p{
  color:var(--muted);line-height:1.65;
  margin-bottom:16px;max-width:70ch;
}
.page a{color:var(--paper);border-bottom:1px solid var(--line);transition:border-color .2s,color .2s}
.page a:hover{color:var(--blue-bright);border-color:var(--blue-bright)}
.page ul{margin:0 0 18px 0;padding-left:20px;color:var(--muted);line-height:1.65}
.page li{margin-bottom:8px}
.page li::marker{color:var(--blue-bright)}
.page strong{color:var(--paper);font-weight:600}

.addr{
  border:1px solid var(--line);
  padding:24px;
  margin-bottom:12px;
  line-height:1.7;color:var(--muted);
}
.addr strong{display:block;margin-bottom:8px}
.addr a{border:none}

.note{
  border-left:2px solid var(--blue-bright);
  padding:14px 0 14px 18px;
  margin:24px 0;
  color:var(--muted);font-size:14px;line-height:1.6;
}

.page footer{margin-top:70px}

@media (max-width:600px){
  .page{padding:24px 18px 48px}
  .page-head{margin-bottom:40px;flex-wrap:wrap;gap:16px}
}
