.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,.06); }

.navin { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { width: 210px; max-height: 58px; object-fit: contain; }

.menu { display: flex; align-items: center; gap: 24px; }

.menu a { color: var(--black); text-decoration: none; font-weight: 700; font-size: .95rem; }

.menu a:hover { color: var(--teal); }

.nav { background: rgba(247,247,245,.92); }

.active-nav { color: var(--teal)!important; }

/* Keep the nav's text-hover styling off the embedded Kontakt button
   (it shares .menu a, which would otherwise force teal text on the
   orange button on hover) */
.menu a:not(.btn) { position: relative; padding-bottom: 3px; }

.menu a:not(.btn):after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--orange); transition: right .3s cubic-bezier(.2,.7,.3,1); }

.menu a:not(.btn):hover { color: var(--teal); }

.menu a:not(.btn):hover:after { right: 0; }

/* The rule above can't un-color a .btn (:not(.btn) excludes it by definition) —
   the original .menu a:hover{color:var(--teal)} still matches it, so pin the
   button's hover color back explicitly with higher specificity. */
.menu a.btn:hover { color: var(--black); }

/* Hamburger (mobile nav toggle) — hidden on desktop, .menu stays inline there */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; min-width: 44px; min-height: 44px; background: transparent; border: none; cursor: pointer; padding: 8px; }

.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .3s ease,opacity .3s ease,background .2s; }

.hamburger:hover span { background: var(--teal); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }

.hamburger.open span:nth-child(2) { opacity: 0; }

.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

