/* Globaler Circura-Header – auf allen Seiten identisch eingebunden.
   Eigene .chdr-* Klassen, damit kein Konflikt mit altem Seiten-CSS entsteht. */
.chdr{position:sticky;top:0;z-index:1000;background:rgba(250,248,243,.85);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(37,58,95,.08);
  font-family:'DM Sans',system-ui,-apple-system,sans-serif}
.chdr-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;
  justify-content:space-between;padding:12px 24px;gap:16px}
.chdr-home{display:inline-flex;align-items:center;flex:0 0 auto}
.chdr-logo{height:48px;width:auto;display:block}
.chdr-nav{display:flex;align-items:center;gap:20px}
.chdr-nav a{color:#253a5f;text-decoration:none;font-size:14.5px;font-weight:500;
  white-space:nowrap;transition:color .2s}
.chdr-nav a:hover{color:#caa34a}
.chdr-cta{background:#253a5f;color:#fff!important;padding:9px 18px;border-radius:999px;font-weight:600}
.chdr-cta:hover{background:#17253e;color:#fff!important}
.chdr-burger{display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;background:none;border:none;cursor:pointer;padding:0}
.chdr-burger span{display:block;width:24px;height:2px;background:#253a5f;border-radius:2px;transition:all .3s}
.chdr-burger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.chdr-burger.active span:nth-child(2){opacity:0}
.chdr-burger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(max-width:1024px){
  .chdr-burger{display:flex}
  .chdr-nav{position:absolute;top:100%;left:0;right:0;display:none;
    flex-direction:column;align-items:stretch;gap:0;padding:8px 24px 20px;
    background:rgba(250,248,243,.98);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
    border-bottom:1px solid #e7e4dc;box-shadow:0 12px 32px rgba(37,58,95,.1)}
  .chdr-nav.open{display:flex}
  .chdr-nav a{padding:13px 0;border-bottom:1px solid #e7e4dc;font-size:16px}
  .chdr-nav a:last-child{border-bottom:none}
  .chdr-cta{margin-top:10px;text-align:center;padding:13px 18px}
}
