/* ========== HEADER ========== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(245, 241, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-image {
  width: 50px;
  height: 50px;
}

/* ========== НАВИГАЦИЯ ========== */
nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.6;
}

/* ========== БУРГЕР (скрыт на десктопе) ========== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}