.aqaq-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  height: 88px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(251, 251, 250, 0.92);
  color: #101010;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.aqaq-nav-inner {
  width: min(calc(100% - 96px), 1440px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(34px, 4vw, 72px);
}

.aqaq-nav-left,
.aqaq-nav-right {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 42px);
  min-width: 0;
}

.aqaq-nav-left {
  justify-content: flex-end;
}

.aqaq-nav-right {
  justify-content: flex-start;
}

.aqaq-nav-left a,
.aqaq-nav-right a {
  position: relative;
  padding: 10px 0;
  color: #292929;
  font-family: "Hanken Grotesk", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.aqaq-nav-left a::after,
.aqaq-nav-right a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms ease;
}

.aqaq-nav-left a:hover::after,
.aqaq-nav-right a:hover::after,
.aqaq-nav-left a[aria-current="page"]::after,
.aqaq-nav-right a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.aqaq-wordmark {
  display: block;
  color: #0d0d0d;
  font-family: "FZ YunDong ZhongHei", sans-serif;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.aqaq-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #101010;
  cursor: pointer;
}

.aqaq-menu-toggle span,
.aqaq-menu-toggle::before,
.aqaq-menu-toggle::after {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 240ms ease, opacity 240ms ease;
}

.aqaq-menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.aqaq-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.aqaq-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.aqaq-mobile-menu {
  display: none;
}

@media (max-width: 1050px) {
  .aqaq-header {
    height: 76px;
  }

  .aqaq-nav-inner {
    width: calc(100% - 40px);
    grid-template-columns: 42px 1fr 42px;
    column-gap: 12px;
  }

  .aqaq-nav-left,
  .aqaq-nav-right {
    display: none;
  }

  .aqaq-wordmark {
    grid-column: 2;
    justify-self: center;
    font-size: 22px;
  }

  .aqaq-menu-toggle {
    display: block;
    grid-column: 3;
  }

  .aqaq-mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    z-index: 999;
    padding: 30px 28px 36px;
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
    background: rgba(251, 251, 250, 0.98);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(18px);
  }

  .aqaq-mobile-menu.is-open {
    display: grid;
    gap: 20px;
  }

  .aqaq-mobile-menu a {
    color: #101010;
    font-family: "Hanken Grotesk", "Noto Sans SC", sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
  }
}
@font-face {
  font-family: "FZ YunDong ZhongHei";
  src: url("/assets/fonts/FZYunDongZhongHei.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

.aqaq-wordmark,
.wordmark,
.aqaq-brand-text {
  font-family: "FZ YunDong ZhongHei", sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
}
