body, html {
  margin: 0;
  padding: 0;
}

/* === TOP MENU === */
.top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  max-width: 1600px;
  margin: 30px auto 0 auto;
  padding: 0 32px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

.top-menu .logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: #222;
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  padding: 0;
  line-height: 1.1;
  flex-shrink: 0;
}

.top-menu .menu {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  margin: 0;
  background: none;
  padding: 0;
}

.top-menu .menu-item {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  box-shadow: none;
}

.top-menu .menu-item:hover {
  color: #888;
  text-decoration: none;
}

/* === RESPONSIVE MENU === */
@media (max-width: 900px) {
  .top-menu {
    gap: 40px;
    padding: 0 16px;
  }
  
  .top-menu .menu {
    gap: 32px;
  }
  
  .top-menu .menu-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .top-menu {
    gap: 16px;
    padding: 0 12px;
    margin: 20px auto 0 auto;
  }
  
  .top-menu .logo {
    font-size: 1rem;
  }
  
  .top-menu .menu {
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .top-menu .menu-item {
    font-size: 0.85rem;
  }
}
