.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #f7f4ee; /* общий фон */
  border-bottom: 1px solid rgba(38, 33, 26, 0.10);
  box-shadow: 0 8px 28px rgba(38, 33, 26, 0.06);

  
}
.navigation-menu {
  pointer-events: auto;
}
.navigation-menu {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0 18px;

  display: flex;
  align-items: center;
  gap: 34px;

  list-style: none;
  box-sizing: border-box;

  background: transparent;
  box-shadow: none;

  position: relative;
  top: auto;
  left: auto;
  transform: none;

  pointer-events: auto;
}


.navigation-menu li {
  flex: 0 0 auto;
}

.navigation-menu a,
.navigation-menu button {
  appearance: none;
  border: 0;
  background: transparent;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 0;

  font-size: 19px;
  line-height: 1.2;
  font-weight: 400;
  color: #2c2822;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;
  transition: color .2s ease, opacity .2s ease;
}

.navigation-menu a:hover,
.navigation-menu button:hover {
  background: transparent;
  transform: none;
  color: #7a6a4d;
}

.navigation-menu a.is-active,
.navigation-menu button.is-active {
  color: #7a6a4d;
}

.navigation-menu a.is-active::after,
.navigation-menu button.is-active::after {
  content: "";
  position: absolute;
}

.nav-logo {
  margin-right: auto;
}

.nav-logo a {
  padding: 0;
  line-height: 0;
}

.nav-logo a:hover {
  opacity: .7;
}
.nav-signature {
  display: block;
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}
.nav-right {
  margin-left: 0;
}

.filter-toggle {
  font-family: inherit;
}

.gallery-filters-panel {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);

  width: min(820px, calc(100% - 40px));
  padding: 14px 18px;

  background: rgba(247, 244, 238, .96);
  border: 1px solid rgba(38, 33, 26, .12);
  box-shadow: 0 18px 50px rgba(38, 33, 26, .14);
  backdrop-filter: blur(12px);

  z-index: 1201;
  pointer-events: auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-filters button {
  width: 38px;
  height: 38px;
  padding: 7px;

  border: 1px solid rgba(38, 33, 26, .12);
  background: rgba(255,255,255,.45);
  cursor: pointer;

  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.gallery-filters button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.gallery-filters button.is-active {
  border-color: rgba(122, 106, 77, .65);
  background: #fff;
}

.filter-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body {
  padding-top: 96px;
}

@media (max-width: 768px) {
  .navigation-menu {
    width: calc(100% - 28px);
    padding: 18px 0 12px;
    gap: 18px;
    overflow-x: auto;
  }

  .nav-signature {
  height: 34px;
  max-width: 170px;
}

  .navigation-menu a,
  .navigation-menu button {
    font-size: 13px;
  }

  .gallery-filters-panel {
    top: 62px;
    width: calc(100% - 24px);
  }

  body {
    padding-top: 78px;
  }
}
.gallery-filters-panel,
.gallery-filters,
.gallery-filters button {
  pointer-events: auto;
}

.gallery-filters-panel {
  z-index: 1201;
}
.nav-filter-toggle--accent .filter-toggle {
  padding: 7px 15px;
  border: 1px solid rgba(122, 106, 77, 0.38);
  border-radius: 999px;
  color: #7a6a4d;
  background: rgba(255, 255, 255, 0.55);
}

.nav-filter-toggle--accent .filter-toggle:hover {
  background: #fff;
  color: #2c2822;
  border-color: rgba(122, 106, 77, 0.7);
}