:root {
  --wanzeller-bg: #050505;
  --wanzeller-bg-soft: #111111;
  --wanzeller-text: #111111;
  --wanzeller-text-muted: #6b6b6b;
  --wanzeller-line: rgba(255, 255, 255, 0.14);
  --wanzeller-line-dark: rgba(0, 0, 0, 0.08);
  --wanzeller-accent: #c96b00;
  --wanzeller-accent-dark: #a85600;
  --wanzeller-surface: #ffffff;
  --wanzeller-font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  padding-top: 84px;
}

body.wanzeller-nav-is-locked {
  overflow: hidden;
}

.wanzeller-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11000;
  width: 100%;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--wanzeller-line);
  font-family: var(--wanzeller-font);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.wanzeller-nav.is-scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.wanzeller-nav__desktop,
.wanzeller-nav__mobile {
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
}

.wanzeller-nav__desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.wanzeller-nav__brand,
.wanzeller-nav__mobile-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.wanzeller-nav__brand img {
  display: block;
  width: auto;
  max-width: 176px;
  height: 33px;
}

.wanzeller-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.wanzeller-nav__item {
  position: relative;
}

.wanzeller-nav__link,
.wanzeller-nav__button,
.wanzeller-nav__language summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wanzeller-nav__link:hover,
.wanzeller-nav__link:focus-visible,
.wanzeller-nav__button:hover,
.wanzeller-nav__button:focus-visible,
.wanzeller-nav__language summary:hover,
.wanzeller-nav__language summary:focus-visible,
.wanzeller-nav__link.is-active,
.wanzeller-nav__button.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.wanzeller-nav__chevron {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.wanzeller-nav__dropdown,
.wanzeller-nav__language-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--wanzeller-line-dark);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.wanzeller-nav__item.is-open .wanzeller-nav__dropdown,
.wanzeller-nav__language[open] .wanzeller-nav__language-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wanzeller-nav__dropdown a,
.wanzeller-nav__language-list a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--wanzeller-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.wanzeller-nav__dropdown a:hover,
.wanzeller-nav__dropdown a:focus-visible,
.wanzeller-nav__language-list a:hover,
.wanzeller-nav__language-list a:focus-visible {
  color: var(--wanzeller-accent-dark);
  background: #f7f4ef;
  outline: 0;
}

.wanzeller-nav__language {
  position: relative;
  flex: 0 0 auto;
}

.wanzeller-nav__language summary {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.wanzeller-nav__language summary::-webkit-details-marker {
  display: none;
}

.wanzeller-nav__language-list {
  min-width: 92px;
}

.wanzeller-nav__mobile,
.wanzeller-nav__overlay,
.wanzeller-nav__drawer {
  display: none;
}

.wanzeller-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 11001;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.wanzeller-nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wanzeller-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11002;
  width: min(380px, 88vw);
  height: 100vh;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  transition: transform 0.24s ease;
}

.wanzeller-nav__drawer.is-open {
  transform: translateX(0);
}

.wanzeller-nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--wanzeller-line-dark);
}

.wanzeller-nav__drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.wanzeller-nav__drawer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.wanzeller-nav__close,
.wanzeller-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wanzeller-nav__close {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f4f4;
}

.wanzeller-nav__close::before,
.wanzeller-nav__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #111111;
}

.wanzeller-nav__close::before {
  transform: rotate(45deg);
}

.wanzeller-nav__close::after {
  transform: rotate(-45deg);
}

.wanzeller-nav__mobile-list {
  margin: 0;
  padding: 8px 0 28px;
  list-style: none;
}

.wanzeller-nav__mobile-list li {
  border-bottom: 1px solid #eeeeee;
}

.wanzeller-nav__mobile-list a,
.wanzeller-nav__mobile-list summary {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  color: #151515;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.wanzeller-nav__mobile-list summary {
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.wanzeller-nav__mobile-list summary::-webkit-details-marker {
  display: none;
}

.wanzeller-nav__mobile-list summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--wanzeller-accent);
  border-bottom: 2px solid var(--wanzeller-accent);
  transform: rotate(45deg);
}

.wanzeller-nav__mobile-list details[open] summary::after {
  transform: rotate(225deg);
}

.wanzeller-nav__mobile-list details a {
  min-height: 48px;
  padding-left: 38px;
  color: #4d4d4d;
  background: #fafafa;
  font-weight: 600;
}

.wanzeller-nav__mobile-list a:hover,
.wanzeller-nav__mobile-list a:focus-visible,
.wanzeller-nav__mobile-list summary:hover,
.wanzeller-nav__mobile-list summary:focus-visible {
  color: var(--wanzeller-accent-dark);
  outline: 0;
}

.wanzeller-nav__mobile-language {
  display: flex;
  gap: 10px;
  padding: 18px 24px;
}

.wanzeller-nav__mobile-language a {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}

.wanzeller-nav__mobile-language a.is-active {
  color: #111111;
  border-color: var(--wanzeller-accent);
  background: #f8efe5;
}

.footer-wanzeller {
  padding: 80px 0 40px;
  background-color: #000000;
  color: #a3a3a3;
  font-family: var(--wanzeller-font);
}

.footer-wanzeller-logo {
  width: auto;
  max-width: 180px;
  height: auto;
}

.footer-wanzeller p,
.footer-wanzeller li,
.footer-wanzeller a,
.footer-wanzeller span {
  color: #a3a3a3;
  font-size: 0.85rem;
  line-height: 1.8;
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s ease;
}

.footer-wanzeller .footer-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 10px;
  color: #ffffff;
  font-family: var(--wanzeller-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.footer-wanzeller .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--wanzeller-accent);
}

.footer-wanzeller ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-wanzeller ul li {
  margin-bottom: 12px;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.footer-wanzeller ul li a:hover,
.footer-wanzeller ul li a:focus-visible,
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #ffffff;
  outline: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 5px;
}

.footer-socials li {
  margin-bottom: 0;
}

.footer-socials span {
  color: #a3a3a3;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.footer-socials a:hover span,
.footer-socials a:focus-visible span {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(163, 163, 163, 0.2);
}

.footer-company-data {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 1199.98px) {
  .wanzeller-nav__desktop,
  .wanzeller-nav__mobile {
    width: min(100% - 32px, 1140px);
  }

  .wanzeller-nav__desktop {
    gap: 18px;
  }

  .wanzeller-nav__brand img {
    width: auto;
    max-width: 158px;
    height: 31px;
  }

  .wanzeller-nav__link,
  .wanzeller-nav__button,
  .wanzeller-nav__language summary {
    padding: 0 9px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 72px;
  }

  .wanzeller-nav__desktop {
    display: none;
  }

  .wanzeller-nav__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
  }

  .wanzeller-nav__mobile-brand img {
    width: auto;
    max-width: min(170px, 50vw);
    height: 34px;
  }

  .wanzeller-nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 6px;
  }

  .wanzeller-nav__overlay,
  .wanzeller-nav__drawer {
    display: block;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wanzeller-nav,
  .wanzeller-nav__dropdown,
  .wanzeller-nav__language-list,
  .wanzeller-nav__overlay,
  .wanzeller-nav__drawer {
    transition: none;
  }
}
